aboutsummaryrefslogtreecommitdiff
path: root/editor/project_manager.cpp
Commit message (Collapse)AuthorAgeFilesLines
* ProjectManager: prevent installing project template in non-empty dirPoommetee Ketson2018-01-281-11/+8
|
* Fix typos in code and docs with codespellRémi Verschelde2018-01-181-27/+27
| | | | Using v1.11.0 from https://github.com/lucasdemarchi/codespell
* Merge pull request #15803 from Noshyaar/pmRémi Verschelde2018-01-181-35/+21
|\ | | | | ProjectManager: show error/warning by default
| * ProjectManager: show error/warning by defaultPoommetee Ketson2018-01-181-35/+21
| | | | | | | | Deprecate "That's a BINGO" message
* | Disallow creating new projects in a non-empty folder.bruvzg2018-01-181-3/+3
|/
* Add missing copyright headers and fix formattingRémi Verschelde2018-01-051-0/+1
| | | | | | 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.
* Project Manager: fix random breaking of scrollingBernhard Liebl2018-01-041-0/+1
|
* Merge pull request #15102 from YeldhamDev/project_manager_changesRémi Verschelde2018-01-031-49/+87
|\ | | | | Changes to the Project Manager's New Project/Export dialogs
| * Changes to the Project Manager's New Project/Export dialogs.Michael Alexsander Silva Dias2017-12-271-49/+87
| |
* | Merge pull request #15230 from RyanStein/bugfix-14989Rémi Verschelde2018-01-021-1/+1
|\ \ | | | | | | Move Project Manager favorite icon back to center.
| * | Move Project Manager favorite icon back to center.Ryan Stein2017-12-311-1/+1
| |/
* / Update copyright statements to 2018Rémi Verschelde2018-01-011-3/+3
|/ | | | Happy new year to the wonderful Godot community!
* ProjectManager: enhance dialog ok button textPoommetee Ketson2017-12-231-3/+3
|
* Style: Apply clang-format again on all filesRémi Verschelde2017-12-071-1/+1
| | | | | Fixes issues introduced by newer clang-format versions or commits pushed directly without using the clang-format pre-commit hook.
* Fixed project name line edit lost input focus.qichunren2017-12-061-1/+2
|
* Unnecessary use of TTRvolzhs2017-12-021-1/+1
|
* Ask users to explore official projects when none is loaded.Juan Linietsky2017-11-261-0/+19
|
* Made Vector::ptrw explicit for writing, compiler was sometimes using the ↵Juan Linietsky2017-11-251-1/+1
| | | | | | wrong function, leading to unnecesary copy on writes and reduced performance.
* Pass engine name and version parts as proper stringsRémi Verschelde2017-11-201-6/+3
| | | | | | Removes the need for _MKSTR all over the place which has the drawback of converting _MKSTR(UNKNOWN_DEFINE) to "UKNOWN_DEFINE" instead of throwing a compilation error.
* Move singleton management from ProjectSettings to EngineLeon Krause2017-11-141-2/+0
|
* Fixed project manager and dialog fonts.Daniel J. Ramirez2017-11-091-2/+1
|
* Fix typo in project managerRémi Verschelde2017-10-291-1/+1
| | | | [ci skip]
* Add language option button to project managersheepandshepherd2017-10-261-2/+72
| | | | Closes #4901
* Merge pull request #11998 from ↵Rémi Verschelde2017-10-111-0/+3
|\ | | | | | | | | | | | | DmitryKrutskikh/filter-input-events-in-project-manager-3-0 Skip unhandled input events on asset library tab. (3.0) [ci skip]
| * Skip unhandled input events on asset library tab.DmitryKrutskikh2017-10-101-0/+3
| |
* | Merge pull request #11718 from poke1024/retinaRémi Verschelde2017-10-091-1/+2
|\ \ | |/ |/| Fixes some retina problems on multi monitor setups
| * fixes several scaling problems on multi monitor retina/non-retina setups on OS XBernhard Liebl2017-10-051-1/+2
| |
* | Added the set/get_setting function in Editor/Project settings. Renamed has() ↵Juan Linietsky2017-10-051-1/+1
|/ | | | to has_setting. Fixes #11844
* EditorSettings: Move interface/ properties to interface/editorAndreas Haas2017-09-291-1/+1
| | | | | | Fixes inconsistent behaviour where clicking on the "Interface" in the Editor Settings wouldn't collapse the category as is the case for all the other categories.
* Merge pull request #11424 from groud/control_node_presetsRémi Verschelde2017-09-261-4/+4
|\ | | | | Implements set_margins_preset(...)
| * Remove set_area_as_parent_rect and replace it by ↵Gilles Roudiere2017-09-221-4/+4
| | | | | | | | set_anchors_and_margins_preset(PRESET_WIDE)
* | Improved New Project and Import project experienceDaniel J. Ramirez2017-09-231-119/+224
|/
* Rename pos to position in user facing methods and variablesletheed2017-09-201-4/+4
| | | | | | | | | | | 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.
* Merge pull request #11031 from nabor/rename-dialogHein-Pieter van Braam2017-09-141-126/+237
|\ | | | | Added support to rename projects on manager
| * Deleted unnecessary printNabor Erices2017-09-131-1/+0
| |
| * Added support to rename projects on managerNabor Erices2017-09-061-126/+238
| |
* | Added a crash handler to dump the backtrace on Windows, Linux and OS XMarcelo Fernandez2017-09-131-0/+8
| |
* | Merge pull request #11058 from hpvb/fix-11043Rémi Verschelde2017-09-121-1/+1
|\ \ | | | | | | Don't set editor_hint true for project manager
| * | Don't set editor_hint true for project managerHein-Pieter van Braam2017-09-101-1/+1
| |/ | | | | | | | | | | | | | | | | | | | | Due to this setting several callbacks get initialized but never used. For instance void discoverer_callback(). This callback only initializes the GDNativeSingletonDiscover *discoverer when called. This doesn't happen in project manager and this in turn causes a call to memdelete(NULL) which is invalid. This also seems to speed up startup a little. This fixes #11043 and fixes #10992
* / Not found projects are grayed instead of removed at the Project ManagerMarcelo Fernandez2017-09-111-14/+30
|/
* Contributors missing in project manager titleJuan Linietsky2017-08-311-1/+1
|
* Fixed problem with non triplanar UV2 mode as described in issue. Closes #9979Juan Linietsky2017-08-311-1/+1
|
* Use HTTPS URL for Godot's website in the headersRémi Verschelde2017-08-271-1/+1
|
* Always size project icons to default icon sizeHein-Pieter van Braam2017-08-271-1/+2
| | | | I wasn't able to reproduce the issue, but this should fix #10620
* Editor: Add some more translatable strings.Andreas Haas2017-08-251-4/+1
|
* Convert Object::cast_to() to the static versionHein-Pieter van Braam2017-08-241-12/+12
| | | | | | | | | | | | Currently we rely on some undefined behavior when Object->cast_to() gets called with a Null pointer. This used to work fine with GCC < 6 but newer versions of GCC remove all codepaths in which the this pointer is Null. However, the non-static cast_to() was supposed to be null safe. This patch makes cast_to() Null safe and removes the now redundant Null checks where they existed. It is explained in this article: https://www.viva64.com/en/b/0226/
* Merge pull request #10433 from djrm/pr_svg_supportRémi Verschelde2017-08-211-1/+1
|\ | | | | SVG support
| * Added missing icon and svgs upscalingDaniel J. Ramirez2017-08-201-1/+1
| |
* | Tweak command-line arguments to make them more UNIX-likeHugo Locurcio2017-08-211-3/+3
|/ | | | Also improves the command-line help text readability.
* Merge pull request #10319 from neikeq/pr-engine-editor-hintJuan Linietsky2017-08-201-1/+1
|\ | | | | Adds Engine::is_editor_hint() method