Signed-off-by: falkTX <falktx@falktx.com>tags/23.09
@@ -14,7 +14,8 @@ include $(ROOT)/Makefile.base.mk | |||||
# jucewrapper/CMakeLists.txt `project` | # jucewrapper/CMakeLists.txt `project` | ||||
# src/CardinalCommon.cpp `CARDINAL_VERSION` | # src/CardinalCommon.cpp `CARDINAL_VERSION` | ||||
# src/CardinalPlugin.cpp `getVersion` | # src/CardinalPlugin.cpp `getVersion` | ||||
VERSION = 23.08 | |||||
# utils/macOS/Info_{JACK,Native}.plist | |||||
VERSION = 23.09 | |||||
# -------------------------------------------------------------- | # -------------------------------------------------------------- | ||||
# Build targets | # Build targets | ||||
@@ -1,5 +1,5 @@ | |||||
cmake_minimum_required(VERSION 3.15) | cmake_minimum_required(VERSION 3.15) | ||||
project(Cardinal VERSION 23.08) | |||||
project(Cardinal VERSION 23.09) | |||||
include(FetchContent) | include(FetchContent) | ||||
FetchContent_Declare(JUCE | FetchContent_Declare(JUCE | ||||
@@ -106,7 +106,7 @@ void destroyStaticPlugins(); | |||||
} | } | ||||
} | } | ||||
const std::string CARDINAL_VERSION = "23.08"; | |||||
const std::string CARDINAL_VERSION = "23.09"; | |||||
START_NAMESPACE_DISTRHO | START_NAMESPACE_DISTRHO | ||||
@@ -426,7 +426,7 @@ protected: | |||||
uint32_t getVersion() const override | uint32_t getVersion() const override | ||||
{ | { | ||||
return d_version(0, 23, 8); | |||||
return d_version(0, 23, 9); | |||||
} | } | ||||
int64_t getUniqueId() const override | int64_t getUniqueId() const override | ||||
@@ -9,7 +9,15 @@ | |||||
<key>CFBundleIconFile</key> | <key>CFBundleIconFile</key> | ||||
<string>distrho.icns</string> | <string>distrho.icns</string> | ||||
<key>CFBundleIdentifier</key> | <key>CFBundleIdentifier</key> | ||||
<string>Cardinal</string> | |||||
<string>studio.kx.distrho.cardinal.jack</string> | |||||
<key>CFBundleVersion</key> | |||||
<string>23.09</string> | |||||
<key>LSMinimumSystemVersion</key> | |||||
<string>10.15</string> | |||||
<key>NSHumanReadableCopyright</key> | |||||
<string>(C) 2011-2023 Filipe Coelho. | |||||
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or any later version.</string> | |||||
</dict> | |||||
<key>NSHighResolutionCapable</key> | <key>NSHighResolutionCapable</key> | ||||
<true/> | <true/> | ||||
<key>NSRequiresAquaSystemAppearance</key> | <key>NSRequiresAquaSystemAppearance</key> | ||||
@@ -9,7 +9,15 @@ | |||||
<key>CFBundleIconFile</key> | <key>CFBundleIconFile</key> | ||||
<string>distrho.icns</string> | <string>distrho.icns</string> | ||||
<key>CFBundleIdentifier</key> | <key>CFBundleIdentifier</key> | ||||
<string>CardinalNative</string> | |||||
<string>studio.kx.distrho.cardinal.native</string> | |||||
<key>CFBundleShortVersionString</key> | |||||
<string>23.09</string> | |||||
<key>LSMinimumSystemVersion</key> | |||||
<string>10.15</string> | |||||
<key>NSHumanReadableCopyright</key> | |||||
<string>(C) 2011-2023 Filipe Coelho. | |||||
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or any later version.</string> | |||||
</dict> | |||||
<key>NSHighResolutionCapable</key> | <key>NSHighResolutionCapable</key> | ||||
<true/> | <true/> | ||||
<key>NSRequiresAquaSystemAppearance</key> | <key>NSRequiresAquaSystemAppearance</key> | ||||