summaryrefslogtreecommitdiffstats
path: root/editor/project_manager.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@6c05ec3d6732cac44cf85c91db7d3fd1075bcb23Spartan3222024-11-151-15/+4
|\
| * Remove unnecessary array construction when initializing the project managerHaoyu Qiu2024-11-141-15/+4
| |
* | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-301-18/+18
|\|
| * Rename internal Button icon to button_icon to match exposed methodsAaron Franke2024-10-291-18/+18
| |
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* | Rebrand Godot to RedotRandolph W. Aarseth II2024-10-111-9/+9
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Linux Editor tests workflow matrix Add Windows Editor w/ Mono workflow matrix Add Generate Glue Code job to Windows workflow Add Build GodotSharp job to Windows workflow Add godot compatibility version references Add Godot author info Add Godot version compatibility info Add Godot donor info Add Godot authors and donors to editor_about.cpp Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Unify editor version buttonsHaoyu Qiu2024-09-281-22/+2
|
* Make editor use translation domainsHaoyu Qiu2024-09-171-0/+2
| | | | | | | | | | | | How editor plugins use this feature: 1. Pick a unique translation domain name. 2. `_enter_tree()`: load translations into that translation domain. 3. Call `set_translation_domain()` for its root UI node. 4. `_exit_tree()`: remove that translation domain. Plugins can also set the translation domain to `godot.editor` for nested nodes that should use editor translations. `EditorFileDialog` automatically does this.
* Add simple minor version migrationkobewi2024-09-111-2/+41
|
* Merge pull request #95048 from KoBeWi/keep_the_party_goingRémi Verschelde2024-08-271-0/+1
|\ | | | | | | Add `keep_screen_on` editor setting
| * Add keep_screen_on editor settingkobewi2024-08-021-0/+1
| |
* | Merge pull request #93602 from aaronp64/inspector_latencyRémi Verschelde2024-08-221-1/+1
|\ \ | |/ |/| | | Improve Editor Inspector/Theme item lookup performance
| * Improve Editor Inspector/Theme item lookup performanceaaronp642024-08-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | Changes to reduce the latency between changing node selection in the editor and seeing the new node reflected in the Inspector tab - Use Vector instead of List for ThemeOwner::get_theme_type_dependencies and related functions - Use Vector instead of List for ThemeContext::themes, set_themes(), and get_themes() - Add ClassDB:get_inheritance_chain_nocheck to get all parent/ancestor classes at once, to avoid repeated ClassDB locking overhead - Update BIND_THEME_ITEM macros and ThemeDB::update_class_instance_items to use provided StringNames for call to ThemeItemSetter, instead of creating a new StringName in each call These changes reduce the time taken by EditorInspector::update_tree by around 30-35%
* | Cleanup Android input on render thread settingsFredia Huya-Kouadio2024-07-091-0/+8
|/ | | | | | | Follow up to https://github.com/godotengine/godot/pull/93933 Clean up the set of settings use to control whether Android input should be dispatched on the render thread. Addresses comments in https://github.com/godotengine/godot/pull/93933#issuecomment-2210437977
* Make project naming setting available in project managerkobewi2024-06-211-1/+1
|
* [Scene] Add `SceneStringNames::text/value_changed`A Thousand Ships2024-06-191-2/+2
|
* [Scene] Add `SceneStringNames::confirmed`A Thousand Ships2024-06-191-1/+1
|
* [Scene] Add `SceneStringNames::item_selected`A Thousand Ships2024-06-191-1/+1
|
* [Scene] Add `SceneStringNames::font(_size/_color)`A Thousand Ships2024-06-181-5/+5
|
* Merge pull request #91953 from AThousandShips/use_normal_snameRémi Verschelde2024-05-311-1/+1
|\ | | | | | | Use `CoreStringNames::normal` in more places
| * Use `CoreStringNames::normal` in more placesA Thousand Ships2024-05-301-1/+1
| |
* | [Scene] Add `SceneStringNames::panel`A Thousand Ships2024-05-301-4/+4
|/
* [Scene] Add SceneStringNames::pressedA Thousand Ships2024-05-141-25/+25
|
* Use Core/Scene stringnames consistentlykobewi2024-05-131-1/+1
|
* Allow loading custom ProjectSettings instancekobewi2024-04-261-6/+8
|
* Fix folder scan replacing project listkobewi2024-04-181-7/+4
|
* Add automatic checking for engine updateskobewi2024-04-151-1/+9
|
* [macOS] Use "expand_to_title" for the project manager.bruvzg2024-03-241-1/+65
|
* Automatically create folder in project manager create/import/installNathan Franke2024-03-081-3/+4
|
* Display the build date in the editor and when starting the engineHugo Locurcio2024-02-271-1/+8
| | | | | | | | | | | | | | | This can be used to quickly see how recent a development build is, without having to look up the commit date manually. When juggling around with various builds (e.g. for benchmarking), this can also be used to ensure that you're actually running the binary you intended to run. The date stored is the date of the Git commit that is built, not the current date at the time of building the binary. This ensures binaries can remain reproducible. The version timestamp can be accessed using the `timestamp` key of the `Engine.get_version_info()` return value.
* Replace error checks against `size` with `is_empty`A Thousand Ships2024-02-091-1/+1
|
* Correctly handle failures to open a projectYuri Sizov2024-01-301-4/+8
|
* Replace empty list dialog with an integrated panelYuri Sizov2024-01-301-145/+186
|
* Implement a quick settings dialog for the project managerYuri Sizov2024-01-301-136/+137
| | | | | | | Currently it allows to adjust language, theme preset, UI scaling, and network mode. Project manager has been updated to support dynamic theme updates.
* Add a network mode setting to bring the editor offlineYuri Sizov2024-01-301-23/+53
| | | | | | | | | This PR also adds default font styles for RichTextLabels in the editor, and improves the introduction dialog when you don't have any local projects available. The offline mode is implemented in the asset library plugin, alongside some code improvements.
* Improve the project manager UIYuri Sizov2024-01-301-116/+184
|
* Remove unnecessary `this->` expressionsA Thousand Ships2024-01-291-1/+1
|
* Reorganize project manager codeYuri Sizov2024-01-161-2454/+492
| | | | | | | - Extract individual components to their own files. - Improve order of declarations and definitions within those files. - ProjectDialog is only extracted as there are upcoming PRs touching on it.
* Reorganize code related to editor themingYuri Sizov2024-01-161-7/+6
| | | | | | | | | | | | | This change introduces a new EditorThemeManager class to abstract theme generatio and its subroutines. Logic related to EditorTheme, EditorColorMap, and editor icons has been extracted into their respective files with includes cleaned up. All related files have been moved to a separate folder to better scope them in the project. This includes relevant generated files as well.
* Update deferred calls to use Callableskobewi2024-01-091-7/+7
|
* Fix incorrect check on importing projectA Thousand Ships2024-01-071-26/+45
|
* Merge pull request #84445 from Rubonnek/add-const-references-clang-tidyRémi Verschelde2024-01-041-1/+1
|\ | | | | | | Add const references detected by clang-tidy
| * Add const references detected by clang-tidyWilson E. Alvarez2023-12-161-2/+2
| |
* | Merge pull request #86271 from YuriSizov/pm-optimize-multiple-ways-of-scanningYuri Sizov2023-12-201-104/+89
|\ \ | | | | | | | | | Optimize scanning routines in the project manager
| * | Optimize scanning routines in the project managerYuri Sizov2023-12-201-104/+89
| | |
* | | Correctly enforce minimum window size in editorYuri Sizov2023-12-201-23/+32
|/ / | | | | | | | | Also set the maximum size for the language picked in the project manager.
* | Merge pull request #85000 from bruvzg/ed_ui_directionYuri Sizov2023-12-191-0/+4
|\ \ | |/ |/| | | [Editor] Add option to override editor UI layout direction.
| * [Editor] Add option to override editor UI layout direction.bruvzg2023-11-171-0/+4
| |
* | Make sure `Window`'s title is respected before we compute the sizeYuri Sizov2023-11-241-6/+1
| | | | | | | | | | Also removes some suspicious and outdated code that forced this particular dialog to change size when the warning message changed.