From 40a9ba746e840e544b252840504283ebbd7a3226 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 27 Sep 2023 17:28:20 +0200 Subject: [PATCH] Freeze plugin cache version This allows to copy existing VST2/3 cache files to a new major version --- libs/ardour/plugin_manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/plugin_manager.cc b/libs/ardour/plugin_manager.cc index a572ed55dd..3c9e567277 100644 --- a/libs/ardour/plugin_manager.cc +++ b/libs/ardour/plugin_manager.cc @@ -360,7 +360,7 @@ PluginManager::cache_valid () const uint32_t PluginManager::cache_version () { - return 1000 * atoi (X_(PROGRAM_VERSION)) + 2; + return 7002; // 1000 * atoi (X_(PROGRAM_VERSION)) + 2; } struct PluginInfoPtrNameSorter {