diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2024-07-31 17:31:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-31 17:31:21 +0200 |
commit | 540c05e1412a8cc095351b250920fabb9106c9f3 (patch) | |
tree | bc9e297c8d5b17d99f06ee26eb6fd034d687cac8 | |
parent | db414b647a8c8b4dbc34c6ed1997c0a6ee82f557 (diff) | |
parent | 789f3135adefe57c71176986ee9016d25125f9b0 (diff) | |
download | redot-engine-540c05e1412a8cc095351b250920fabb9106c9f3.tar.gz |
Merge pull request #94980 from Calinou/editor-doc-cache-make-version-specific
Split editor documentation cache by minor version
-rw-r--r-- | editor/editor_help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index 5725129f65..637c39c8ec 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -2856,7 +2856,7 @@ void EditorHelp::_compute_doc_version_hash() { } String EditorHelp::get_cache_full_path() { - return EditorPaths::get_singleton()->get_cache_dir().path_join("editor_doc_cache.res"); + return EditorPaths::get_singleton()->get_cache_dir().path_join(vformat("editor_doc_cache-%d.%d.res", VERSION_MAJOR, VERSION_MINOR)); } void EditorHelp::load_xml_buffer(const uint8_t *p_buffer, int p_size) { |