From 59302eec5b320b9b838ed3504ff3a7c33c5f4277 Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 21 Oct 2019 00:09:16 +0100 Subject: [PATCH] Do not show old plugin entries before full rescan --- source/frontend/carla_database.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source/frontend/carla_database.py b/source/frontend/carla_database.py index 67e726f12..5493c4212 100755 --- a/source/frontend/carla_database.py +++ b/source/frontend/carla_database.py @@ -133,7 +133,7 @@ def findFilenames(filePath, stype): # --------------------------------------------------------------------------------------------------------------------- # Plugin Query -PLUGIN_QUERY_API_VERSION = 10 +PLUGIN_QUERY_API_VERSION = 11 PyPluginInfo = { 'API': PLUGIN_QUERY_API_VERSION, @@ -1698,9 +1698,8 @@ class PluginDatabaseW(QDialog): # -------------------------------------------------------------------------------------------------------- def _addPluginToTable(self, plugin, ptype): - if plugin['API'] != PLUGIN_QUERY_API_VERSION and ptype == self.tr("Internal"): + if plugin['API'] != PLUGIN_QUERY_API_VERSION: return - if ptype in (self.tr("Internal"), "LV2", "SF2", "SFZ"): plugin['build'] = BINARY_NATIVE