summaryrefslogtreecommitdiff
path: root/plugins/ZamAutoSat
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ZamAutoSat')
-rw-r--r--plugins/ZamAutoSat/DistrhoPluginInfo.h3
-rw-r--r--plugins/ZamAutoSat/ZamAutoSatPlugin.hpp13
2 files changed, 14 insertions, 2 deletions
diff --git a/plugins/ZamAutoSat/DistrhoPluginInfo.h b/plugins/ZamAutoSat/DistrhoPluginInfo.h
index aa2a80d..8c49080 100644
--- a/plugins/ZamAutoSat/DistrhoPluginInfo.h
+++ b/plugins/ZamAutoSat/DistrhoPluginInfo.h
@@ -18,7 +18,8 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED
-#define DISTRHO_PLUGIN_NAME "ZamAutoSat"
+#define DISTRHO_PLUGIN_BRAND "ZamAudio"
+#define DISTRHO_PLUGIN_NAME "ZamAutoSat"
#define DISTRHO_PLUGIN_HAS_UI 1
#define DISTRHO_PLUGIN_IS_SYNTH 0
diff --git a/plugins/ZamAutoSat/ZamAutoSatPlugin.hpp b/plugins/ZamAutoSat/ZamAutoSatPlugin.hpp
index 194527e..771d9b9 100644
--- a/plugins/ZamAutoSat/ZamAutoSatPlugin.hpp
+++ b/plugins/ZamAutoSat/ZamAutoSatPlugin.hpp
@@ -44,11 +44,22 @@ protected:
return "ZamAutoSat";
}
+ const char* getDescription() const noexcept override
+ {
+ return "An automatic saturation plugin, has been known to provide smooth levelling to live mic channels.\n\
+You can apply this plugin generously without affecting the tone.";
+ }
+
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+";
@@ -56,7 +67,7 @@ protected:
uint32_t getVersion() const noexcept override
{
- return 0x1000;
+ return d_version(3, 6, 1);
}
int64_t getUniqueId() const noexcept override