summaryrefslogtreecommitdiff
path: root/editor/project_export.cpp
AgeCommit message (Collapse)Author
2018-11-01Export for OS X on OS X now lets you select .dmg or .zipMarcelo Fernandez
2018-10-29Merge pull request #23322 from marcelofg55/export_pathRémi Verschelde
Save last export path when exporting
2018-10-28Add a duplicate button to duplicate presetsMarcelo Fernandez
2018-10-27Save last export path when exportingMarcelo Fernandez
2018-10-06Remove redundant "== false" codeAaron Franke
Some of this code has been re-organized. f
2018-09-14Refactor editor icon retrievalwillnationsdev
2018-09-12Make core/ includes absolute, remove subfolders from include pathRémi Verschelde
This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes.
2018-08-31ExportDialog: Validate path before allowing exportRémi Verschelde
Otherwise one could quite easily end up with the exported game being hidden files named ".x86_64" and ".pck" for example. Also improved the default filename logic a bit to also include extension, and never fallback to an empty string. Also fixed being able to click "Export project" without selecting a preset.
2018-08-20Port ImportDock and ProjectExport to new property editor (2nd try)Rémi Verschelde
Thanks to @ibrahn for helping debug the crashes caused in ProjectExportDialog by the stray `update_tree()` call, no longer needed in the new inspector.
2018-08-18Revert "Port ImportDock and ProjectExport to new property editor"Rémi Verschelde
2018-08-18Port ImportDock and ProjectExport to new property editorRémi Verschelde
2018-08-17Export dialog: Fix error color and link alignmentRémi Verschelde
Also fix extraneous "- " line when there are more than 2 messages.
2018-07-18Export: Properly reload preset when opening dialogRémi Verschelde
Fixes #20119 where newly installed templates were not detected. Also fix a bug with preset deletion where it would attempt to edit an already removed preset. For this I made it so that ItemList::deselect_all() also resets `current` to -1, as a manual ItemList::deselect(idx) already does.
2018-05-05Adjust default editor popup sizeshomer666
2018-04-26Make 'Export PCK/ZIP' work well with EditorExportPluginIgnacio Etcheverry
Add debug flag to the 'Export PCK/ZIP' option Make 'Export PCK/ZIP' notify when the export process begins. This is necessary to receive the 'EditorExportPlugin::_export_begin' callback
2018-04-22Change ".." punctuation for "..." in editor strings (#16507)Hugo Locurcio
2018-04-18Set default file name for exported projectsPeter Folkins
2018-02-25Update icons when theme changedPoommetee Ketson
2018-01-05Add missing copyright headers and fix formattingRémi Verschelde
Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
2018-01-01Update copyright statements to 2018Rémi Verschelde
Happy new year to the wonderful Godot community!
2017-12-12Updated Linux template extensions to match architecture.Nathan Warden
2017-11-27Some improvements to file/dir open/save dialogs:Dmitry Koteroff
1. Removed "..", instead you now will see "Select Current Folder" and "Select this Folder" buttons. 2. Added "go to parent folder" (^) button to Save a File dialog. 3. Tree.cpp: "nothing_selected" signal has been re-made (previous implementation, merged in #13308, wasn't optimal in context of performance) 4. Fixed issue in Project Export dialog: MODE_SAVE_FILE wasn't set when you click "Export". 5. Now you can deselect items by clicking on empty space in Open a Directory dialog.
2017-11-20Fix file extensions persisting in file dialog after exportRobbie Cooper
This caused issues if one decided to export many formats in a row. The new file extension would be appended to the previous one. Now, the filename is retained without its extension for successive exports. Fixes #7291
2017-11-13Better TTR formatvolzhs
2017-10-21Merge pull request #12031 from NathanWarden/export_cancel_to_doneRémi Verschelde
Changed the export and fix dependencies dialog cancel button names to "Close" [ci skip]
2017-10-13Added error dialog when failing to export projectJakob Sinclair
Fixes #11836 Signed-off-by: Jakob Sinclair <sinclair.jakob@mailbox.org>
2017-10-11Changed the export/dependencies dialog button names from "Cancel" to "Close"Nathan Warden
2017-10-05Added the set/get_setting function in Editor/Project settings. Renamed has() ↵Juan Linietsky
to has_setting. Fixes #11844
2017-09-25Removed most of the custom colors from the interface.Daniel J. Ramirez
2017-09-22Remove set_area_as_parent_rect and replace it by ↵Gilles Roudiere
set_anchors_and_margins_preset(PRESET_WIDE)
2017-09-20Rename pos to position in user facing methods and variablesletheed
Rename user facing methods and variables as well as the corresponding C++ methods according to the folloming changes: * pos -> position * rot -> rotation * loc -> location C++ variables are left as is.
2017-09-12Improved theme generation, and other fixesDaniel J. Ramirez
2017-09-12Merge pull request #11000 from Kibouo/iss10842Rémi Verschelde
Fixes the deletion of an export preset's name when deleting the preset above it.
2017-09-12Fixed clearing of an export preset's name when deleting the one above it.Mihaly Csonka
Deleting an export preset cleared the name of the item below it. This was caused by ProjectExportDialog::_edit_preset(-1) which sets the deleted preset's data to empty values. This on its turn called ProjectExportDialog::_name_changed() which operates on the new current preset (the one under the deleted item). Fixes issue #10842
2017-09-08Fix unused variable warningsHein-Pieter van Braam
The forth in my quest to make Godot 3.x compile with -Werror on GCC7
2017-08-27Dead code tells no talesRémi Verschelde
2017-08-27Use HTTPS URL for Godot's website in the headersRémi Verschelde
2017-08-25Editor: Add some more translatable strings.Andreas Haas
2017-07-30Style: Apply clang-format on all filesRémi Verschelde
Thus fixing some invalid changes that had still made it to the master branch.
2017-07-19-Renamed GlobalConfig to ProjectSettings, makes more sense.Juan Linietsky
-Added system for feature overrides, it's pretty cool :)
2017-07-17-Reorganized all properties of project settings (Sorry, Again).Juan Linietsky
(Lot's of bloat accumulated, so it was time for clean up.) -Made EditorSettings and ProjectSettings search more useful (search in sections too)
2017-06-23Reimplement export module for OSXBastiaanOlij
2017-05-20Merge pull request #8631 from volzhs/editor-theme-customRémi Verschelde
New customizable editor theme
2017-05-09New customizable editor themevolzhs
2017-05-05Fix template loadingJ08nY
2017-04-08Add "Godot Engine contributors" copyright lineRémi Verschelde
2017-03-29WebGL 2 export per WebAssembly or asm.jseska
2017-03-21Export working (for linux at least)Juan Linietsky
2017-03-21Export template management dialog.Juan Linietsky
Missing download (need to discuss this!)
2017-03-05A Whole New World (clang-format edition)Rémi Verschelde
I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code