diff options
author | Ryan Roden-Corrent <ryan@rcorre.net> | 2022-02-23 20:19:27 -0500 |
---|---|---|
committer | Ryan Roden-Corrent <ryan@rcorre.net> | 2022-08-07 07:46:52 -0400 |
commit | 366871a3ff3ef83968c91b865ed996631178b898 (patch) | |
tree | cb8f1f87ba585891345640298e90dfc684bb4fcc /editor/project_manager.h | |
parent | 8243c7ab5df9d341209d339ab001fd8e49ee95b3 (diff) | |
download | redot-engine-366871a3ff3ef83968c91b865ed996631178b898.tar.gz |
Migrate project list to separate config file.
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.
Diffstat (limited to 'editor/project_manager.h')
-rw-r--r-- | editor/project_manager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/project_manager.h b/editor/project_manager.h index 28383e4142..10bf25c048 100644 --- a/editor/project_manager.h +++ b/editor/project_manager.h @@ -125,7 +125,7 @@ class ProjectManager : public Control { void _on_projects_updated(); void _scan_multiple_folders(PackedStringArray p_files); void _scan_begin(const String &p_base); - void _scan_dir(const String &path, List<String> *r_projects); + void _scan_dir(const String &path); void _install_project(const String &p_zip_path, const String &p_title); |