Browse Source

Set version as 1.2.4

old-stable
falkTX 12 years ago
parent
commit
2eede9dbf9
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      source/backend/plugin/VstPlugin.cpp
  2. +1
    -1
      source/bridges/CarlaBridgeUI-VST.cpp
  3. +1
    -1
      source/carla_shared.py
  4. +1
    -1
      source/discovery/carla-discovery.cpp

+ 1
- 1
source/backend/plugin/VstPlugin.cpp View File

@@ -2466,7 +2466,7 @@ private:
}

case audioMasterGetVendorVersion:
return 0x123; // 1.2.3
return 0x124; // 1.2.4

case audioMasterCanDo:
CARLA_ASSERT(ptr != nullptr);


+ 1
- 1
source/bridges/CarlaBridgeUI-VST.cpp View File

@@ -480,7 +480,7 @@ public:
break;

case audioMasterGetVendorVersion:
ret = 0x123; // 1.2.3
ret = 0x124; // 1.2.4
break;

case audioMasterCanDo:


+ 1
- 1
source/carla_shared.py View File

@@ -70,7 +70,7 @@ elif WINDOWS:
# ------------------------------------------------------------------------------------------------------------
# Set Version

VERSION = "1.2.3"
VERSION = "1.2.4"

# ------------------------------------------------------------------------------------------------------------
# Set TMP


+ 1
- 1
source/discovery/carla-discovery.cpp View File

@@ -239,7 +239,7 @@ intptr_t VSTCALLBACK vstHostCallback(AEffect* const effect, const int32_t opcode
break;

case audioMasterGetVendorVersion:
ret = 0x123; // 1.2.3
ret = 0x124; // 1.2.4
break;

case audioMasterCanDo:


Loading…
Cancel
Save