summaryrefslogtreecommitdiffstats
path: root/editor/project_manager
Commit message (Collapse)AuthorAgeFilesLines
* [Scene] Add SceneStringName::toggledYuri Rubinsky2024-08-281-1/+1
|
* Fix missing project date showing the unix epochpassivestar2024-08-271-1/+1
|
* Merge pull request #91172 from clayjohn/detect-rdRémi Verschelde2024-08-222-3/+31
|\ | | | | | | Disable creating RD projects in project manager if RD is not supported
| * Check if RD is supported in the ProjectManager and disable creating RD ↵clayjohn2024-08-022-3/+31
| | | | | | | | projects if not supported.
* | Split TranslationServer into its own fileHaoyu Qiu2024-08-151-1/+1
| |
* | Initialize project name when importing projectkobewi2024-08-072-2/+7
| |
* | Merge pull request #95086 from m4gr3d/fix_import_button_not_showing_directoriesRémi Verschelde2024-08-061-3/+7
|\ \ | | | | | | [Android editor] Fix issue with importing projects
| * | Fix issue with import projects for the Android editorFredia Huya-Kouadio2024-08-021-3/+7
| |/
* | Merge pull request #95082 from m4gr3d/fix_display_scale_project_settingsRémi Verschelde2024-08-062-7/+20
|\ \ | | | | | | | | | [Android editor] Enable the display scale option in the Project manager's quick settings
| * | Enable the display scale option in the Project manager's quick settings dialogFredia Huya-Kouadio2024-08-022-7/+20
| |/
* / Fix project name cleared when browsing pathkobewi2024-08-052-5/+10
|/
* Make `fdialog_project` up to become sibling of `ProjectDialog` instead of childjsjtxietian2024-07-191-9/+10
|
* Ignore trailing slashes in new project’s path when disabling Create FolderGrublady2024-07-081-0/+2
| | | | | | In the “Create New Project” dialog, disabling the “Create Folder” slider with a trailing slash in the project path would cause it to incorrectly identify the last path component as the substring following the slash, in other words, an empty string. By first discarding any trailing slashes when disabling the slider, the project dialog will now identify and pop the last path component as usual even when a trailing slash is present.
* Make project naming setting available in project managerkobewi2024-06-212-0/+37
|
* [Scene] Add `SceneStringNames::text/value_changed`A Thousand Ships2024-06-191-3/+3
|
* [Scene] Add `SceneStringNames::item_selected`A Thousand Ships2024-06-191-4/+4
|
* [Scene] Add `SceneStringNames::font(_size/_color)`A Thousand Ships2024-06-183-9/+9
|
* Editor: Swap last edited date and version/warning in Project ManagerDanil Alexeev2024-06-041-7/+7
|
* [Scene] Add `SceneStringNames::panel`A Thousand Ships2024-05-301-1/+1
|
* Merge pull request #90770 from kitbdev/show-versionRémi Verschelde2024-05-222-2/+64
|\ | | | | | | Display Godot version and last edited timestamp in project manager
| * Display godot version in project managerkit2024-04-162-2/+64
| |
* | [Scene] Add SceneStringNames::pressedA Thousand Ships2024-05-144-10/+10
| |
* | Use Core/Scene stringnames consistentlykobewi2024-05-131-1/+1
| |
* | [Core] Add case-insensitive `String::containsn`A Thousand Ships2024-05-081-1/+1
| |
* | Fix folder scan replacing project listkobewi2024-04-182-16/+27
|/
* Add browse folder and browse file iconsAdam Scott2024-03-122-0/+11
|
* Automatically create folder in project manager create/import/installNathan Franke2024-03-082-548/+557
|
* Add `FolderCreate` icon to the project dialogAdam Scott2024-03-061-0/+4
|
* Move `global_menu_*` methods to a separate `NativeMenu` class.bruvzg2024-03-041-6/+7
|
* Make auto translation inheritableMichael Alexsander2024-02-152-2/+2
|
* Implement a quick settings dialog for the project managerYuri Sizov2024-01-302-0/+393
| | | | | | | Currently it allows to adjust language, theme preset, UI scaling, and network mode. Project manager has been updated to support dynamic theme updates.
* Reorganize project manager codeYuri Sizov2024-01-167-0/+2586
- 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.