Tweak plugin description, use macros for labels

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2021-12-29 17:40:08 +00:00
parent c3a1888750
commit edf1e805c9
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
5 changed files with 10 additions and 10 deletions

2
dpf

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

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

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

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

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