Browse Source

Tag our own custom version

Signed-off-by: falkTX <falktx@falktx.com>
tags/22.02
falkTX 3 years ago
parent
commit
0037795663
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
4 changed files with 5 additions and 4 deletions
  1. +0
    -2
      README.md
  2. +2
    -0
      src/CardinalCommon.cpp
  3. +2
    -0
      src/CardinalCommon.hpp
  4. +1
    -2
      src/override/MenuBar.cpp

+ 0
- 2
README.md View File

@@ -15,8 +15,6 @@ It does not load external modules and does not connect to the official Rack libr
Because it is using DPF, Cardinal already supports LV2 and VST2 with an extra JACK standalone mode if self-compiled. Because it is using DPF, Cardinal already supports LV2 and VST2 with an extra JACK standalone mode if self-compiled.
A VST3 version is in progress, already part of the build but still experimental. A VST3 version is in progress, already part of the build but still experimental.


**The project should be considered in beta state at the moment.**

## Plugin variants ## Plugin variants


Cardinal provides 3 plugin variants - "main", Synth and FX. Cardinal provides 3 plugin variants - "main", Synth and FX.


+ 2
- 0
src/CardinalCommon.cpp View File

@@ -49,6 +49,8 @@
# include <unistd.h> # include <unistd.h>
#endif #endif


const std::string CARDINAL_VERSION = "22.02";

namespace rack { namespace rack {
namespace settings { namespace settings {
int rateLimit = 0; int rateLimit = 0;


+ 2
- 0
src/CardinalCommon.hpp View File

@@ -25,6 +25,8 @@
# define REMOTE_HOST_PORT "2228" # define REMOTE_HOST_PORT "2228"
#endif #endif


extern const std::string CARDINAL_VERSION;

namespace rack { namespace rack {


namespace settings { namespace settings {


+ 1
- 2
src/override/MenuBar.cpp View File

@@ -535,8 +535,7 @@ struct HelpButton : MenuButton {


menu->addChild(new ui::MenuSeparator); menu->addChild(new ui::MenuSeparator);


menu->addChild(createMenuLabel(APP_EDITION + " " + APP_EDITION_NAME));

menu->addChild(createMenuLabel("Cardinal " + APP_EDITION + " " + CARDINAL_VERSION));
menu->addChild(createMenuLabel("Rack " + APP_VERSION + " Compatible")); menu->addChild(createMenuLabel("Rack " + APP_VERSION + " Compatible"));
} }
}; };


Loading…
Cancel
Save