diff --git a/dpf b/dpf index 3f242da..c8f0fde 160000 --- a/dpf +++ b/dpf @@ -1 +1 @@ -Subproject commit 3f242dad0027fe532524615352b4368d138dd091 +Subproject commit c8f0fdec1fcd139ba51732ef99a7b57b3fd2d1d4 diff --git a/plugins/AmplitudeImposer/DistrhoPluginAmplitudeImposer.cpp b/plugins/AmplitudeImposer/DistrhoPluginAmplitudeImposer.cpp index ce5014c..07bf0b9 100644 --- a/plugins/AmplitudeImposer/DistrhoPluginAmplitudeImposer.cpp +++ b/plugins/AmplitudeImposer/DistrhoPluginAmplitudeImposer.cpp @@ -62,7 +62,7 @@ void DistrhoPluginAmplitudeImposer::initAudioPort(bool input, uint32_t index, Au break; case 1: port.name = "Input Right (Amp Env)"; - port.symbol = "in_left_amp"; + port.symbol = "in_right_amp"; break; case 2: port.name = "Input Left (Audio)"; @@ -84,7 +84,7 @@ void DistrhoPluginAmplitudeImposer::initAudioPort(bool input, uint32_t index, Au break; case 1: port.name = "Output Right"; - port.symbol = "out_left"; + port.symbol = "out_right"; break; } } diff --git a/plugins/AmplitudeImposer/DistrhoPluginAmplitudeImposer.hpp b/plugins/AmplitudeImposer/DistrhoPluginAmplitudeImposer.hpp index adf24ab..95e6a91 100644 --- a/plugins/AmplitudeImposer/DistrhoPluginAmplitudeImposer.hpp +++ b/plugins/AmplitudeImposer/DistrhoPluginAmplitudeImposer.hpp @@ -46,16 +46,32 @@ protected: // ------------------------------------------------------------------- // Information + const char* getName() const noexcept override + { + return "Amplitude Imposer"; + } + const char* getLabel() const noexcept override { return "AmplitudeImposer"; } + const char* getDescription() const override + { + return "Takes 2 stereo inputs and imposes the amplitude envelope of the first one on the second one.\n\ +Also has a threshold level for the second input, so that when the signal falls below it, it is amplified up to the threshold, to give a greater signal to be amplitude modulated."; + } + const char* getMaker() const noexcept override { return "ndc Plugs"; } + const char* getHomePage() const override + { + return "https://github.com/DISTRHO/ndc-Plugs"; + } + const char* getLicense() const noexcept override { return "MIT"; @@ -63,7 +79,7 @@ protected: uint32_t getVersion() const noexcept override { - return 0x1000; + return d_version(0, 1, 0); } int64_t getUniqueId() const noexcept override diff --git a/plugins/AmplitudeImposer/DistrhoPluginInfo.h b/plugins/AmplitudeImposer/DistrhoPluginInfo.h index fcc0ce5..b38076b 100644 --- a/plugins/AmplitudeImposer/DistrhoPluginInfo.h +++ b/plugins/AmplitudeImposer/DistrhoPluginInfo.h @@ -25,8 +25,9 @@ #ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED #define DISTRHO_PLUGIN_INFO_H_INCLUDED -#define DISTRHO_PLUGIN_NAME "Amplitude Imposer" -#define DISTRHO_PLUGIN_URI "http://www.niallmoody.com/ndcplugs/ampimposer.htm" +#define DISTRHO_PLUGIN_BRAND "DISTRHO" +#define DISTRHO_PLUGIN_NAME "Amplitude Imposr" +#define DISTRHO_PLUGIN_URI "http://www.niallmoody.com/ndcplugs/ampimposer.htm" #define DISTRHO_PLUGIN_HAS_UI 1 #define DISTRHO_PLUGIN_IS_RT_SAFE 1 diff --git a/plugins/CycleShifter/DistrhoPluginCycleShifter.hpp b/plugins/CycleShifter/DistrhoPluginCycleShifter.hpp index 914bc45..4d2524d 100644 --- a/plugins/CycleShifter/DistrhoPluginCycleShifter.hpp +++ b/plugins/CycleShifter/DistrhoPluginCycleShifter.hpp @@ -53,11 +53,22 @@ protected: return "CycleShifter"; } + const char* getDescription() const override + { + return "Reads in a cycle's-worth of the input signal, then (once the whole cycle's been read in) outputs it again, on top of the current output.\n\ +Works best with long/sustained sounds (e.g. strings, pads etc.), sounds like a weird kind of gentle distortion."; + } + const char* getMaker() const noexcept override { return "ndc Plugs"; } + const char* getHomePage() const override + { + return "https://github.com/DISTRHO/ndc-Plugs"; + } + const char* getLicense() const noexcept override { return "MIT"; @@ -65,7 +76,7 @@ protected: uint32_t getVersion() const noexcept override { - return 0x1000; + return d_version(0, 1, 0); } int64_t getUniqueId() const noexcept override diff --git a/plugins/CycleShifter/DistrhoPluginInfo.h b/plugins/CycleShifter/DistrhoPluginInfo.h index 4bc5e45..3550c07 100644 --- a/plugins/CycleShifter/DistrhoPluginInfo.h +++ b/plugins/CycleShifter/DistrhoPluginInfo.h @@ -25,8 +25,9 @@ #ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED #define DISTRHO_PLUGIN_INFO_H_INCLUDED -#define DISTRHO_PLUGIN_NAME "Cycle Shifter" -#define DISTRHO_PLUGIN_URI "http://www.niallmoody.com/ndcplugs/cycleshifter.htm" +#define DISTRHO_PLUGIN_BRAND "DISTRHO" +#define DISTRHO_PLUGIN_NAME "Cycle Shifter" +#define DISTRHO_PLUGIN_URI "http://www.niallmoody.com/ndcplugs/cycleshifter.htm" #define DISTRHO_PLUGIN_HAS_UI 1 #define DISTRHO_PLUGIN_IS_RT_SAFE 1 diff --git a/plugins/SoulForce/DistrhoPluginInfo.h b/plugins/SoulForce/DistrhoPluginInfo.h index c8544a3..e046d66 100644 --- a/plugins/SoulForce/DistrhoPluginInfo.h +++ b/plugins/SoulForce/DistrhoPluginInfo.h @@ -25,8 +25,9 @@ #ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED #define DISTRHO_PLUGIN_INFO_H_INCLUDED -#define DISTRHO_PLUGIN_NAME "Soul Force" -#define DISTRHO_PLUGIN_URI "http://www.niallmoody.com/ndcplugs/soulforce.htm" +#define DISTRHO_PLUGIN_BRAND "DISTRHO" +#define DISTRHO_PLUGIN_NAME "Soul Force" +#define DISTRHO_PLUGIN_URI "http://www.niallmoody.com/ndcplugs/soulforce.htm" #define DISTRHO_PLUGIN_HAS_UI 1 #define DISTRHO_PLUGIN_IS_RT_SAFE 1 diff --git a/plugins/SoulForce/DistrhoPluginSoulForce.hpp b/plugins/SoulForce/DistrhoPluginSoulForce.hpp index d559909..c09e599 100644 --- a/plugins/SoulForce/DistrhoPluginSoulForce.hpp +++ b/plugins/SoulForce/DistrhoPluginSoulForce.hpp @@ -66,11 +66,22 @@ protected: return "SoulForce"; } + const char* getDescription() const override + { + return "A fairly standard waveshaping distortion plugin, made more interesting through the use of feedback to control the shaping.\n\ +Can get pretty loud and obnoxious."; + } + const char* getMaker() const noexcept override { return "ndc Plugs"; } + const char* getHomePage() const override + { + return "https://github.com/DISTRHO/ndc-Plugs"; + } + const char* getLicense() const noexcept override { return "MIT"; @@ -78,7 +89,7 @@ protected: uint32_t getVersion() const noexcept override { - return 0x1000; + return d_version(0, 1, 0); } int64_t getUniqueId() const noexcept override