Browse Source

Tweak plugin description, use macros for labels

Signed-off-by: falkTX <falktx@falktx.com>
tags/22.02
falkTX 3 years ago
parent
commit
edf1e805c9
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
5 changed files with 10 additions and 10 deletions
  1. +1
    -1
      dpf
  2. +1
    -0
      src/Cardinal/DistrhoPluginInfo.h
  3. +1
    -0
      src/CardinalFX/DistrhoPluginInfo.h
  4. +6
    -9
      src/CardinalPlugin.cpp
  5. +1
    -0
      src/CardinalSynth/DistrhoPluginInfo.h

+ 1
- 1
dpf

@@ -1 +1 @@
Subproject commit fb11675884a0fe166708e8887e9cdfda22d2f56e
Subproject commit 09ad9bb5701d892b71469ad809a0fd2596b20797

+ 1
- 0
src/Cardinal/DistrhoPluginInfo.h View File

@@ -27,6 +27,7 @@

#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "Cardinal"
#define DISTRHO_PLUGIN_LABEL "Cardinal"
#define DISTRHO_PLUGIN_URI "https://distrho.kx.studio/plugins/cardinal"

#ifdef HEADLESS


+ 1
- 0
src/CardinalFX/DistrhoPluginInfo.h View File

@@ -27,6 +27,7 @@

#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "Cardinal FX"
#define DISTRHO_PLUGIN_LABEL "CardinalFX"
#define DISTRHO_PLUGIN_URI "https://distrho.kx.studio/plugins/cardinal#fx"

#ifdef HEADLESS


+ 6
- 9
src/CardinalPlugin.cpp View File

@@ -552,20 +552,17 @@ protected:
const char* getLabel() const override
{
#if CARDINAL_VARIANT_SYNTH
return "CardinalSynth";
#elif CARDINAL_VARIANT_FX
return "CardinalFX";
#else
return "Cardinal";
#endif
return DISTRHO_PLUGIN_LABEL;
}
const char* getDescription() const override
{
return ""
"Cardinal is an open-source self-contained special plugin version of VCVRack, using DPF.\n"
"It is NOT an official VCV project, and it is not affiliated with it in any way.\n";
"Cardinal is an open-source plugin wrapper around VCV Rack.\n"
"It is NOT an official VCV project, and it is not affiliated with it in any way.\n"
"\n"
"Cardinal contains Rack, some 3rd-party modules and a few internal utilities all in a single binary.\n"
"It does not load external modules and does not connect to the official Rack library/store.\n";
}
const char* getMaker() const override


+ 1
- 0
src/CardinalSynth/DistrhoPluginInfo.h View File

@@ -27,6 +27,7 @@

#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "Cardinal Synth"
#define DISTRHO_PLUGIN_LABEL "CardinalSynth"
#define DISTRHO_PLUGIN_URI "https://distrho.kx.studio/plugins/cardinal#synth"

#ifdef HEADLESS


Loading…
Cancel
Save