From 789f3135adefe57c71176986ee9016d25125f9b0 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Wed, 31 Jul 2024 17:17:45 +0200 Subject: [PATCH] Split editor documentation cache by minor version This avoids conflicts with other editor versions and ensures the cache remains valid if you regularly switch between editor versions. --- editor/editor_help.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index 5725129f65aa..637c39c8ec35 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) {