summaryrefslogtreecommitdiffstats
path: root/editor/project_manager.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotSpartan3222024-10-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084) 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>
* Fix folder scan replacing project listkobewi2024-04-181-0/+2
|
* [macOS] Use "expand_to_title" for the project manager.bruvzg2024-03-241-1/+7
|
* Replace empty list dialog with an integrated panelYuri Sizov2024-01-301-8/+14
|
* Implement a quick settings dialog for the project managerYuri Sizov2024-01-301-6/+10
| | | | | | | 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-3/+6
| | | | | | | | | 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-10/+34
|
* Reorganize project manager codeYuri Sizov2024-01-161-347/+75
| | | | | | | - 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.
* Fix incorrect check on importing projectA Thousand Ships2024-01-071-0/+1
|
* Merge pull request #86271 from YuriSizov/pm-optimize-multiple-ways-of-scanningYuri Sizov2023-12-201-8/+7
|\ | | | | | | Optimize scanning routines in the project manager
| * Optimize scanning routines in the project managerYuri Sizov2023-12-201-8/+7
| |
* | Correctly enforce minimum window size in editorYuri Sizov2023-12-201-0/+2
|/ | | | | Also set the maximum size for the language picked in the project manager.
* Handle "Enter" when the search box is focusedAlfred Reinold Baudisch2023-10-131-0/+1
|
* Streamline the project import workflowIgor2023-08-291-0/+1
|
* Project manager button rearrangementIgor2023-07-251-1/+1
|
* Improve user-friendliness of project version mismatch messageAaron Franke2023-07-061-1/+1
|
* Add project tagskobewi2023-05-301-1/+57
|
* Improve selection handling in the project managerYuri Sizov2023-04-041-8/+11
| | | | Also clean up some unused methods and method names
* Improve drawing and layout logic of the project list in the Project ManagerYuri Sizov2023-03-161-5/+26
|
* Improve theming support in the Project ManagerYuri Sizov2023-03-161-1/+3
|
* Reorganize ProjectManager code to be more idiomaticYuri Sizov2023-03-161-8/+241
|
* Disallow creating a project in the Home or Documents folderclayjohn2023-03-151-1/+3
| | | | | | Also don't prompt users to delete the project folder for now. This is a temporary fix to ensure that users do not delete their entire home folders by mistake
* Add a custom icon for the `project.godot` file in the EditorFileDialogYuri Sizov2023-02-171-0/+1
|
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Use forward-declarations in big editor classestrollodel2022-11-291-0/+1
|
* Project Manager: Clarify text in project conversion dialogsRémi Verschelde2022-09-151-0/+1
| | | | | | | | | Let the cancel button grab focus to prevent any accident. Make the full project conversion respect OS specific ok/cancel positions. Improve popup sizing and wrapping a bit.
* Add option to convert project from Project Managerkobewi2022-09-121-0/+3
|
* Migrate project list to separate config file.Ryan Roden-Corrent2022-08-071-1/+1
| | | | | | | | | | | | | | | Storing the project/favorites list in the EditorSettings makes it difficult to version-control your editor configuration, as the file will continually change as you open new projects. It also means a configuration can't be shared across machines, as they might not have the same projects or file layout. Now the project list is stored in $godot_data_dir/projects.cfg. Each path is a section, which has a boolean favorite value. If the new config does not exist, the editor attempts to migrate legacy EditorSettings-based configuration to the new file. Fixes godotengine/godot-proposals#1637.
* Add icons to the Project Manager side buttonsFireForge2022-06-161-1/+4
|
* Tweaks to improve the Project Manager display at small sizesAaron Franke2022-05-191-0/+1
|
* Replace most uses of Map by HashMapreduz2022-05-161-1/+1
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Merge pull request #54740 from ↵Rémi Verschelde2022-04-121-1/+1
|\ | | | | | | LightningAA/project-manager-sort-by-most-recent-as-default
| * Make "Last Modified" the default sorting order for the Project ManagerAaron Record2021-11-071-1/+1
| |
* | Improvements to files_dropped signalkobewi2022-04-111-1/+1
| |
* | [Input] Add extra `shortcut_input` input processing step to process Unicode ↵bruvzg2022-04-051-1/+1
| | | | | | | | character input with Alt / Ctrl modifiers, after processing of shortcuts.
* | Fix lack of ProjectManager nullptr initializationsMarios Staikopoulos2022-03-291-30/+30
| | | | | | | | | | Initialize all pointers to nullptr, fixes a crash with asset_library caused by uninitialized memory.
* | Fix Project Manager crash on exit.bruvzg2022-02-121-2/+6
| | | | | | | | Fix editor settings loading / saving by Project Manager.
* | Use EditorFileDialog instead of FileDialog in the project managerHendrik Brucker2022-02-121-1/+6
| |
* | Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
|/ | | | Happy new year to the wonderful Godot community!
* Entirely removes BIND_VMETHOD in favor of GDVIRTUALreduz2021-08-231-1/+1
| | | | | | | | * `_gui_input`, `_input`, `_unhandled_input` and `_unhandled_key_input` are now regular C++ virutal functions. * Everything else converted to GDVIRTUAL * BIND_VMETHOD is gone, always use the new syntax from now on. Creating `_gui_input` method and using the binder to register events will no longer work, simply override the virtual function now.
* Make it possible to copy the Godot version identifier by clicking itHugo Locurcio2021-04-281-0/+2
| | | | This closes #24317.
* Add the About dialog to the project managerHugo Locurcio2021-04-161-0/+4
| | | | | | | | The About button is located in the bottom-right corner of the project manager. This allows removing the copyright notice from the window title (which looked a bit ugly in comparison to other applications).
* Merge pull request #47200 from LightningAA/delete-from-project-manager-4.0Rémi Verschelde2021-04-061-0/+4
|\ | | | | Add the ability to remove project contents from the remove project dialog
| * Add the ability to remove project contents from the remove project dialogLightning_A2021-03-201-0/+4
| |
* | Automatically focus the Search field when displaying asset libraryHugo Locurcio2021-04-051-0/+1
|/ | | | | | | | | - Focus the project search box when switching from the Templates tab back to the Projects tab in the project manager. - Add a context-specific placeholder for the asset library search box. - Rename "Search" project filter box placeholder to the more descriptive "Filter projects". When performing a search on an existing selection, "Filter" is more accurate than "Search".
* Display loading text while the project manager is loadingHugo Locurcio2021-02-071-1/+1
| | | | | | | | This hints the user that the project manager is currently busy loading the project. This is important for the HTML5 editor as the current feedback isn't very obvious. This also removes the unused `_exit_dialog` function.
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Merge pull request #42109 from EricEzaM/PR/input-and-shortcuts-reworkRémi Verschelde2020-11-281-1/+1
|\ | | | | Shortcuts rework - fixed issues with input propagation and triggering of unwanted shortcuts.
| * Implement new shortcuts system.Eric M2020-11-231-1/+1
| | | | | | | | unhandled_key_input changed to unhandled_button_input. Controls can set a 'shortcut_context' which they can then use to determine if their shortcuts should be triggered or not, based on if the viewport's focused GUI control is a child of their 'shortcut context'.