diff --git a/dpf b/dpf index fb11675..09ad9bb 160000 --- a/dpf +++ b/dpf @@ -1 +1 @@ -Subproject commit fb11675884a0fe166708e8887e9cdfda22d2f56e +Subproject commit 09ad9bb5701d892b71469ad809a0fd2596b20797 diff --git a/src/Cardinal/DistrhoPluginInfo.h b/src/Cardinal/DistrhoPluginInfo.h index 8531e52..314f1bc 100644 --- a/src/Cardinal/DistrhoPluginInfo.h +++ b/src/Cardinal/DistrhoPluginInfo.h @@ -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 diff --git a/src/CardinalFX/DistrhoPluginInfo.h b/src/CardinalFX/DistrhoPluginInfo.h index 0b5e1a1..124e427 100644 --- a/src/CardinalFX/DistrhoPluginInfo.h +++ b/src/CardinalFX/DistrhoPluginInfo.h @@ -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 diff --git a/src/CardinalPlugin.cpp b/src/CardinalPlugin.cpp index cf9356d..0a6dd63 100644 --- a/src/CardinalPlugin.cpp +++ b/src/CardinalPlugin.cpp @@ -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 diff --git a/src/CardinalSynth/DistrhoPluginInfo.h b/src/CardinalSynth/DistrhoPluginInfo.h index 84a276e..6d4aee1 100644 --- a/src/CardinalSynth/DistrhoPluginInfo.h +++ b/src/CardinalSynth/DistrhoPluginInfo.h @@ -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