summaryrefslogtreecommitdiff
path: root/plugins/ZaMaximX2
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ZaMaximX2')
-rw-r--r--plugins/ZaMaximX2/DistrhoPluginInfo.h3
-rw-r--r--plugins/ZaMaximX2/ZaMaximX2Plugin.hpp12
2 files changed, 13 insertions, 2 deletions
diff --git a/plugins/ZaMaximX2/DistrhoPluginInfo.h b/plugins/ZaMaximX2/DistrhoPluginInfo.h
index 24fe6fe..b06ec53 100644
--- a/plugins/ZaMaximX2/DistrhoPluginInfo.h
+++ b/plugins/ZaMaximX2/DistrhoPluginInfo.h
@@ -18,7 +18,8 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED
-#define DISTRHO_PLUGIN_NAME "ZaMaximX2"
+#define DISTRHO_PLUGIN_BRAND "ZamAudio"
+#define DISTRHO_PLUGIN_NAME "ZaMaximX2"
#define DISTRHO_PLUGIN_HAS_UI 1
#define DISTRHO_PLUGIN_IS_SYNTH 0
diff --git a/plugins/ZaMaximX2/ZaMaximX2Plugin.hpp b/plugins/ZaMaximX2/ZaMaximX2Plugin.hpp
index feff4f5..68cf7c7 100644
--- a/plugins/ZaMaximX2/ZaMaximX2Plugin.hpp
+++ b/plugins/ZaMaximX2/ZaMaximX2Plugin.hpp
@@ -53,11 +53,21 @@ protected:
return "ZaMaximX2";
}
+ const char* getDescription() const noexcept override
+ {
+ return "";
+ }
+
const char* getMaker() const noexcept override
{
return "Damien Zammit";
}
+ const char* getHomePage() const noexcept override
+ {
+ return "http://www.zamaudio.com";
+ }
+
const char* getLicense() const noexcept override
{
return "GPL v2+";
@@ -65,7 +75,7 @@ protected:
uint32_t getVersion() const noexcept override
{
- return 0x1000;
+ return d_version(3, 6, 1);
}
int64_t getUniqueId() const noexcept override