Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion addonmanager_freecad_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,9 @@ def __init__(self):
if self.mod_dir is None:
self.mod_dir = os.path.join(getUserAppDataDir(), "Mod")
if self.cache_dir is None:
self.cache_dir = getUserCachePath()
# Anytime the cache format changes, increment this version number so we don't
# interfere with old versions.
self.cache_dir = os.path.join(getUserCachePath(), "AddonManager2026-1")
if self.macro_dir is None:
self.macro_dir = getUserMacroDir(True)
if self.home_dir is None:
Expand Down