Skip to content

Commit

Permalink
Update DPF, bump version, rebuild CI libs
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Mar 22, 2024
1 parent d99b2e7 commit 3184fdb
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: build
on: [push, pull_request]

env:
CACHE_VERSION: 9
CACHE_VERSION: 10
CARDINAL_UNDER_WINE: 1
CIBUILD: true
DEBIAN_FRONTEND: noninteractive
Expand Down
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@ include $(ROOT)/Makefile.base.mk
# Set version

# also set in:
# jucewrapper/CMakeLists.txt `project`
# src/CardinalCommon.cpp `CARDINAL_VERSION`
# src/CardinalPlugin.cpp `getVersion`
# utils/macOS/Info_{JACK,Native}.plist
# jucewrapper/CMakeLists.txt src/CardinalCommon.cpp src/CardinalPlugin.cpp utils/macOS/Info_{JACK,Native}.plist
VERSION = 24.01
# src/CardinalCommon.cpp src/CardinalPlugin.cpp utils/macOS/Info_{JACK,Native}.plist
VERSION = 24.03

# --------------------------------------------------------------
# Build targets
Expand Down
2 changes: 1 addition & 1 deletion src/CardinalCommon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ void destroyStaticPlugins();
}
}

const std::string CARDINAL_VERSION = "24.01";
const std::string CARDINAL_VERSION = "24.03";

START_NAMESPACE_DISTRHO

Expand Down
2 changes: 1 addition & 1 deletion src/CardinalPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ class CardinalPlugin : public CardinalBasePlugin

uint32_t getVersion() const override
{
return d_version(0, 24, 1);
return d_version(0, 24, 3);
}

int64_t getUniqueId() const override
Expand Down
4 changes: 2 additions & 2 deletions utils/macOS/Info_JACK.plist
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<key>CFBundleIdentifier</key>
<string>studio.kx.distrho.cardinal.jack</string>
<key>CFBundleShortVersionString</key>
<string>23.01</string>
<string>23.03</string>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>NSHumanReadableCopyright</key>
<string>(C) 2011-2023 Filipe Coelho.
<string>(C) 2011-2024 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>
<key>NSHighResolutionCapable</key>
<true/>
Expand Down
4 changes: 2 additions & 2 deletions utils/macOS/Info_Native.plist
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<key>CFBundleIdentifier</key>
<string>studio.kx.distrho.cardinal.native</string>
<key>CFBundleShortVersionString</key>
<string>24.01</string>
<string>24.03</string>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>NSHumanReadableCopyright</key>
<string>(C) 2011-2023 Filipe Coelho.
<string>(C) 2011-2024 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>
<key>NSHighResolutionCapable</key>
<true/>
Expand Down

0 comments on commit 3184fdb

Please sign in to comment.