Skip to content

Commit

Permalink
Bump version to 24.05, add surge nimbus to mini
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed May 24, 2024
1 parent 9ed8f34 commit fe1e7d3
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ body:
id: version
attributes:
label: Version
value: "24.04"
value: "24.05"
validations:
required: true
- type: dropdown
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ include $(ROOT)/Makefile.base.mk
# src/CardinalPlugin.cpp `getVersion`
# utils/macOS/Info_{JACK,Native}.plist
# .github/ISSUE_TEMPLATE/bug.yaml src/CardinalCommon.cpp src/CardinalPlugin.cpp utils/macOS/Info_{JACK,Native}.plist
VERSION = 24.04
VERSION = 24.05

# --------------------------------------------------------------
# Build targets
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugins-mini.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,7 @@ static void initStatic__surgext()
spl.removeModule("SurgeXTDigitalRingMod");
spl.removeModule("SurgeXTVCF");

p->addModel(modelFXNimbus);
spl.removeModule("SurgeXTFXBonsai");
spl.removeModule("SurgeXTFXChorus");
spl.removeModule("SurgeXTFXChow");
Expand All @@ -586,7 +587,6 @@ static void initStatic__surgext()
spl.removeModule("SurgeXTFXFlanger");
spl.removeModule("SurgeXTFXFrequencyShifter");
spl.removeModule("SurgeXTFXNeuron");
spl.removeModule("SurgeXTFXNimbus");
spl.removeModule("SurgeXTFXPhaser");
spl.removeModule("SurgeXTFXResonator");
spl.removeModule("SurgeXTFXReverb");
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.04";
const std::string CARDINAL_VERSION = "24.05";

// -----------------------------------------------------------------------------------------------------------

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

uint32_t getVersion() const override
{
return d_version(0, 24, 4);
return d_version(0, 24, 5);
}

int64_t getUniqueId() const override
Expand Down
2 changes: 1 addition & 1 deletion utils/macOS/Info_JACK.plist
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<key>CFBundleIdentifier</key>
<string>studio.kx.distrho.cardinal.jack</string>
<key>CFBundleShortVersionString</key>
<string>23.04</string>
<string>24.05</string>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>NSHumanReadableCopyright</key>
Expand Down
2 changes: 1 addition & 1 deletion utils/macOS/Info_Native.plist
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<key>CFBundleIdentifier</key>
<string>studio.kx.distrho.cardinal.native</string>
<key>CFBundleShortVersionString</key>
<string>24.04</string>
<string>24.05</string>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>NSHumanReadableCopyright</key>
Expand Down

0 comments on commit fe1e7d3

Please sign in to comment.