Browse Source

Bump plugin query api version, needed by the last commits

tags/1.9.4
falkTX 10 years ago
parent
commit
1941ae8cb7
2 changed files with 3 additions and 1 deletions
  1. +2
    -0
      source/backend/plugin/CarlaPlugin.cpp
  2. +1
    -1
      source/carla_database.py

+ 2
- 0
source/backend/plugin/CarlaPlugin.cpp View File

@@ -492,6 +492,8 @@ void CarlaPlugin::randomizeParameters() noexcept


if (std::strstr(strBuf, "olume") != nullptr) if (std::strstr(strBuf, "olume") != nullptr)
continue; continue;
if (std::strstr(strBuf, "Master") != nullptr)
continue;


const ParameterRanges& paramRanges(pData->param.ranges[i]); const ParameterRanges& paramRanges(pData->param.ranges[i]);




+ 1
- 1
source/carla_database.py View File

@@ -131,7 +131,7 @@ def findFilenames(filePath, stype):
# ------------------------------------------------------------------------------------------------------------ # ------------------------------------------------------------------------------------------------------------
# Plugin Query # Plugin Query


PLUGIN_QUERY_API_VERSION = 3
PLUGIN_QUERY_API_VERSION = 4


PyPluginInfo = { PyPluginInfo = {
'API': PLUGIN_QUERY_API_VERSION, 'API': PLUGIN_QUERY_API_VERSION,


Loading…
Cancel
Save