diff --git a/dpf b/dpf index 2ed2eab..c8f0fde 160000 --- a/dpf +++ b/dpf @@ -1 +1 @@ -Subproject commit 2ed2eab14b11cdc20c5b83b526e347e96ab4e138 +Subproject commit c8f0fdec1fcd139ba51732ef99a7b57b3fd2d1d4 diff --git a/plugins/3BandEQ/DistrhoPlugin3BandEQ.hpp b/plugins/3BandEQ/DistrhoPlugin3BandEQ.hpp index 0266d58..9ecda30 100644 --- a/plugins/3BandEQ/DistrhoPlugin3BandEQ.hpp +++ b/plugins/3BandEQ/DistrhoPlugin3BandEQ.hpp @@ -49,11 +49,21 @@ protected: return "3BandEQ"; } + const char* getDescription() const override + { + return "3 Band Equalizer, stereo version."; + } + const char* getMaker() const noexcept override { return "DISTRHO"; } + const char* getHomePage() const override + { + return "https://github.com/DISTRHO/Mini-Series"; + } + const char* getLicense() const noexcept override { return "LGPL"; @@ -61,7 +71,7 @@ protected: uint32_t getVersion() const noexcept override { - return 0x1000; + return d_version(1, 0, 0); } int64_t getUniqueId() const noexcept override diff --git a/plugins/3BandEQ/DistrhoPluginInfo.h b/plugins/3BandEQ/DistrhoPluginInfo.h index 03640e4..fc48862 100644 --- a/plugins/3BandEQ/DistrhoPluginInfo.h +++ b/plugins/3BandEQ/DistrhoPluginInfo.h @@ -17,8 +17,9 @@ #ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED #define DISTRHO_PLUGIN_INFO_H_INCLUDED -#define DISTRHO_PLUGIN_NAME "3 Band EQ" -#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/3BandEQ" +#define DISTRHO_PLUGIN_BRAND "DISTRHO" +#define DISTRHO_PLUGIN_NAME "3 Band EQ" +#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/3BandEQ" #define DISTRHO_PLUGIN_HAS_UI 1 #define DISTRHO_PLUGIN_IS_RT_SAFE 1 diff --git a/plugins/3BandSplitter/DistrhoPlugin3BandSplitter.hpp b/plugins/3BandSplitter/DistrhoPlugin3BandSplitter.hpp index ad03cc0..24470e2 100644 --- a/plugins/3BandSplitter/DistrhoPlugin3BandSplitter.hpp +++ b/plugins/3BandSplitter/DistrhoPlugin3BandSplitter.hpp @@ -49,11 +49,21 @@ protected: return "3BandSplitter"; } + const char* getDescription() const override + { + return "3 Band Equalizer, splitted output version."; + } + const char* getMaker() const noexcept override { return "DISTRHO"; } + const char* getHomePage() const override + { + return "https://github.com/DISTRHO/Mini-Series"; + } + const char* getLicense() const noexcept override { return "LGPL"; @@ -61,7 +71,7 @@ protected: uint32_t getVersion() const noexcept override { - return 0x1000; + return d_version(1, 0, 0); } int64_t getUniqueId() const noexcept override diff --git a/plugins/3BandSplitter/DistrhoPluginInfo.h b/plugins/3BandSplitter/DistrhoPluginInfo.h index 16f9393..bfb9d4e 100644 --- a/plugins/3BandSplitter/DistrhoPluginInfo.h +++ b/plugins/3BandSplitter/DistrhoPluginInfo.h @@ -17,8 +17,9 @@ #ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED #define DISTRHO_PLUGIN_INFO_H_INCLUDED -#define DISTRHO_PLUGIN_NAME "3 Band Splitter" -#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/3BandSplitter" +#define DISTRHO_PLUGIN_BRAND "DISTRHO" +#define DISTRHO_PLUGIN_NAME "3 Band Splitter" +#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/3BandSplitter" #define DISTRHO_PLUGIN_HAS_UI 1 #define DISTRHO_PLUGIN_IS_RT_SAFE 1 diff --git a/plugins/PingPongPan/DistrhoPluginInfo.h b/plugins/PingPongPan/DistrhoPluginInfo.h index 1d656fb..6cd3d37 100644 --- a/plugins/PingPongPan/DistrhoPluginInfo.h +++ b/plugins/PingPongPan/DistrhoPluginInfo.h @@ -17,8 +17,9 @@ #ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED #define DISTRHO_PLUGIN_INFO_H_INCLUDED -#define DISTRHO_PLUGIN_NAME "Ping Pong Pan" -#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/PingPongPan" +#define DISTRHO_PLUGIN_BRAND "DISTRHO" +#define DISTRHO_PLUGIN_NAME "Ping Pong Pan" +#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/PingPongPan" #define DISTRHO_PLUGIN_HAS_UI 1 #define DISTRHO_PLUGIN_IS_RT_SAFE 1 diff --git a/plugins/PingPongPan/DistrhoPluginPingPongPan.hpp b/plugins/PingPongPan/DistrhoPluginPingPongPan.hpp index 91a8457..93055e4 100644 --- a/plugins/PingPongPan/DistrhoPluginPingPongPan.hpp +++ b/plugins/PingPongPan/DistrhoPluginPingPongPan.hpp @@ -45,11 +45,21 @@ protected: return "PingPongPan"; } + const char* getDescription() const override + { + return "Ping Pong Panning."; + } + const char* getMaker() const noexcept override { return "DISTRHO"; } + const char* getHomePage() const override + { + return "https://github.com/DISTRHO/Mini-Series"; + } + const char* getLicense() const noexcept override { return "LGPL"; @@ -57,7 +67,7 @@ protected: uint32_t getVersion() const noexcept override { - return 0x1000; + return d_version(1, 0, 0); } int64_t getUniqueId() const noexcept override