summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2017-10-11 18:39:05 +1100
committerDamien Zammit <damien@zamaudio.com>2017-10-11 18:43:36 +1100
commit4976cf204074c1dfaf344821e83e8d896b35107d (patch)
tree91a3e9ffabb9d9241db0a384a27c325ac4f2fca1
parent724bf0122dacf83905eaf8defda6d758e5f4cadc (diff)
Version 3.93.9
Signed-off-by: Damien Zammit <damien@zamaudio.com>
-rw-r--r--README.md4
-rw-r--r--changelog3
-rw-r--r--plugins/ZaMaximX2/ZaMaximX2Plugin.hpp2
-rw-r--r--plugins/ZaMultiComp/ZaMultiCompPlugin.hpp2
-rw-r--r--plugins/ZaMultiCompX2/ZaMultiCompX2Plugin.hpp2
-rw-r--r--plugins/ZamAutoSat/ZamAutoSatPlugin.hpp200
-rw-r--r--plugins/ZamComp/ZamCompPlugin.hpp2
-rw-r--r--plugins/ZamCompX2/ZamCompX2Plugin.hpp2
-rw-r--r--plugins/ZamDelay/ZamDelayPlugin.hpp2
-rw-r--r--plugins/ZamDynamicEQ/ZamDynamicEQPlugin.hpp2
-rw-r--r--plugins/ZamEQ2/ZamEQ2Plugin.hpp2
-rw-r--r--plugins/ZamGEQ31/ZamGEQ31Plugin.hpp2
-rw-r--r--plugins/ZamGate/ZamGatePlugin.hpp2
-rw-r--r--plugins/ZamGateX2/ZamGateX2Plugin.hpp2
-rw-r--r--plugins/ZamHeadX2/ZamHeadX2Plugin.hpp2
-rw-r--r--plugins/ZamPhono/ZamPhonoPlugin.hpp2
-rw-r--r--plugins/ZamTube/ZamTubePlugin.hpp2
17 files changed, 119 insertions, 116 deletions
diff --git a/README.md b/README.md
index c2ceefa..3bfa837 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ Note:
This is a new repo that contains the full history of the old repo.
Submodules are now required (>= 3.6).
Uses Distrho Plugin Framework.
-Please use version 3.8 for a stable package, latest git is experimental.
+Please use version 3.9 for a stable package, latest git is experimental.
Build Dependencies:
===================
@@ -28,5 +28,5 @@ Bleeding edge installation:
Package Maintainers:
====================
- git checkout 3.8
+ git checkout 3.9
make dist
diff --git a/changelog b/changelog
index 16b74af..a1c2178 100644
--- a/changelog
+++ b/changelog
@@ -42,3 +42,6 @@
- New plugin: ZamDynamicEQ
- New plugin: ZamPhono
- Fixed various compiler warnings
+
+3.9 All compressors bugfix release
+ - Thanks to johmue
diff --git a/plugins/ZaMaximX2/ZaMaximX2Plugin.hpp b/plugins/ZaMaximX2/ZaMaximX2Plugin.hpp
index 5db00dc..0bda003 100644
--- a/plugins/ZaMaximX2/ZaMaximX2Plugin.hpp
+++ b/plugins/ZaMaximX2/ZaMaximX2Plugin.hpp
@@ -71,7 +71,7 @@ protected:
uint32_t getVersion() const noexcept override
{
- return d_version(3, 8, 0);
+ return d_version(3, 9, 0);
}
int64_t getUniqueId() const noexcept override
diff --git a/plugins/ZaMultiComp/ZaMultiCompPlugin.hpp b/plugins/ZaMultiComp/ZaMultiCompPlugin.hpp
index 450f3df..fc739ce 100644
--- a/plugins/ZaMultiComp/ZaMultiCompPlugin.hpp
+++ b/plugins/ZaMultiComp/ZaMultiCompPlugin.hpp
@@ -116,7 +116,7 @@ protected:
uint32_t getVersion() const noexcept override
{
- return d_version(3, 8, 0);
+ return d_version(3, 9, 0);
}
int64_t getUniqueId() const noexcept override
diff --git a/plugins/ZaMultiCompX2/ZaMultiCompX2Plugin.hpp b/plugins/ZaMultiCompX2/ZaMultiCompX2Plugin.hpp
index fb377ee..d2bb86b 100644
--- a/plugins/ZaMultiCompX2/ZaMultiCompX2Plugin.hpp
+++ b/plugins/ZaMultiCompX2/ZaMultiCompX2Plugin.hpp
@@ -121,7 +121,7 @@ Stereo version of ZaMultiComp, with individual threshold controls for each band
uint32_t getVersion() const noexcept override
{
- return d_version(3, 8, 0);
+ return d_version(3, 9, 0);
}
int64_t getUniqueId() const noexcept override
diff --git a/plugins/ZamAutoSat/ZamAutoSatPlugin.hpp b/plugins/ZamAutoSat/ZamAutoSatPlugin.hpp
index 7690b41..369cfe8 100644
--- a/plugins/ZamAutoSat/ZamAutoSatPlugin.hpp
+++ b/plugins/ZamAutoSat/ZamAutoSatPlugin.hpp
@@ -1,100 +1,100 @@
-/*
- * ZamAutoSat
- * Copyright (C) 2014 Damien Zammit <damien@zamaudio.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
-
-#ifndef ZAMAUTOSATPLUGIN_HPP_INCLUDED
-#define ZAMAUTOSATPLUGIN_HPP_INCLUDED
-
-#include "DistrhoPlugin.hpp"
-
-START_NAMESPACE_DISTRHO
-
-// -----------------------------------------------------------------------
-
-class ZamAutoSatPlugin : public Plugin
-{
-public:
- enum Parameters
- {
- paramCount
- };
-
- ZamAutoSatPlugin();
- ~ZamAutoSatPlugin() override;
-
-protected:
- // -------------------------------------------------------------------
- // Information
-
- const char* getLabel() const noexcept override
- {
- 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+";
- }
-
- uint32_t getVersion() const noexcept override
- {
- return d_version(3, 8, 0);
- }
-
- int64_t getUniqueId() const noexcept override
- {
- return d_cconst('Z', 'S', 'A', 'T');
- }
-
- // -------------------------------------------------------------------
- // Init
-
- void initParameter(uint32_t index, Parameter& parameter) override;
-
- // -------------------------------------------------------------------
- // Internal data
-
- float getParameterValue(uint32_t index) const override;
- void setParameterValue(uint32_t index, float value) override;
-
- // -------------------------------------------------------------------
- void activate() override;
- void deactivate() override;
- void run(const float** inputs, float** outputs, uint32_t frames) override;
-
- // -------------------------------------------------------------------
-
-};
-
-// -----------------------------------------------------------------------
-
-END_NAMESPACE_DISTRHO
-
-#endif // ZAMAUTOSAT_HPP_INCLUDED
+/*
+ * ZamAutoSat
+ * Copyright (C) 2014 Damien Zammit <damien@zamaudio.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef ZAMAUTOSATPLUGIN_HPP_INCLUDED
+#define ZAMAUTOSATPLUGIN_HPP_INCLUDED
+
+#include "DistrhoPlugin.hpp"
+
+START_NAMESPACE_DISTRHO
+
+// -----------------------------------------------------------------------
+
+class ZamAutoSatPlugin : public Plugin
+{
+public:
+ enum Parameters
+ {
+ paramCount
+ };
+
+ ZamAutoSatPlugin();
+ ~ZamAutoSatPlugin() override;
+
+protected:
+ // -------------------------------------------------------------------
+ // Information
+
+ const char* getLabel() const noexcept override
+ {
+ 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+";
+ }
+
+ uint32_t getVersion() const noexcept override
+ {
+ return d_version(3, 9, 0);
+ }
+
+ int64_t getUniqueId() const noexcept override
+ {
+ return d_cconst('Z', 'S', 'A', 'T');
+ }
+
+ // -------------------------------------------------------------------
+ // Init
+
+ void initParameter(uint32_t index, Parameter& parameter) override;
+
+ // -------------------------------------------------------------------
+ // Internal data
+
+ float getParameterValue(uint32_t index) const override;
+ void setParameterValue(uint32_t index, float value) override;
+
+ // -------------------------------------------------------------------
+ void activate() override;
+ void deactivate() override;
+ void run(const float** inputs, float** outputs, uint32_t frames) override;
+
+ // -------------------------------------------------------------------
+
+};
+
+// -----------------------------------------------------------------------
+
+END_NAMESPACE_DISTRHO
+
+#endif // ZAMAUTOSAT_HPP_INCLUDED
diff --git a/plugins/ZamComp/ZamCompPlugin.hpp b/plugins/ZamComp/ZamCompPlugin.hpp
index 7840fa4..e2c51e6 100644
--- a/plugins/ZamComp/ZamCompPlugin.hpp
+++ b/plugins/ZamComp/ZamCompPlugin.hpp
@@ -73,7 +73,7 @@ protected:
uint32_t getVersion() const noexcept override
{
- return d_version(3, 8, 0);
+ return d_version(3, 9, 0);
}
int64_t getUniqueId() const noexcept override
diff --git a/plugins/ZamCompX2/ZamCompX2Plugin.hpp b/plugins/ZamCompX2/ZamCompX2Plugin.hpp
index aaa9003..5b1d021 100644
--- a/plugins/ZamCompX2/ZamCompX2Plugin.hpp
+++ b/plugins/ZamCompX2/ZamCompX2Plugin.hpp
@@ -78,7 +78,7 @@ protected:
uint32_t getVersion() const noexcept override
{
- return d_version(3, 8, 0);
+ return d_version(3, 9, 0);
}
int64_t getUniqueId() const noexcept override
diff --git a/plugins/ZamDelay/ZamDelayPlugin.hpp b/plugins/ZamDelay/ZamDelayPlugin.hpp
index ccb9c91..0fd20c7 100644
--- a/plugins/ZamDelay/ZamDelayPlugin.hpp
+++ b/plugins/ZamDelay/ZamDelayPlugin.hpp
@@ -78,7 +78,7 @@ protected:
uint32_t getVersion() const noexcept override
{
- return d_version(3, 8, 0);
+ return d_version(3, 9, 0);
}
int64_t getUniqueId() const noexcept override
diff --git a/plugins/ZamDynamicEQ/ZamDynamicEQPlugin.hpp b/plugins/ZamDynamicEQ/ZamDynamicEQPlugin.hpp
index 2549aac..51a3607 100644
--- a/plugins/ZamDynamicEQ/ZamDynamicEQPlugin.hpp
+++ b/plugins/ZamDynamicEQ/ZamDynamicEQPlugin.hpp
@@ -82,7 +82,7 @@ protected:
uint32_t getVersion() const noexcept override
{
- return d_version(3, 8, 0);
+ return d_version(3, 9, 0);
}
int64_t getUniqueId() const noexcept override
diff --git a/plugins/ZamEQ2/ZamEQ2Plugin.hpp b/plugins/ZamEQ2/ZamEQ2Plugin.hpp
index a62260b..665201c 100644
--- a/plugins/ZamEQ2/ZamEQ2Plugin.hpp
+++ b/plugins/ZamEQ2/ZamEQ2Plugin.hpp
@@ -75,7 +75,7 @@ protected:
uint32_t getVersion() const noexcept override
{
- return d_version(3, 8, 0);
+ return d_version(3, 9, 0);
}
int64_t getUniqueId() const noexcept override
diff --git a/plugins/ZamGEQ31/ZamGEQ31Plugin.hpp b/plugins/ZamGEQ31/ZamGEQ31Plugin.hpp
index 0bc7804..746a74d 100644
--- a/plugins/ZamGEQ31/ZamGEQ31Plugin.hpp
+++ b/plugins/ZamGEQ31/ZamGEQ31Plugin.hpp
@@ -95,7 +95,7 @@ protected:
uint32_t getVersion() const noexcept override
{
- return d_version(3, 8, 0);
+ return d_version(3, 9, 0);
}
int64_t getUniqueId() const noexcept override
diff --git a/plugins/ZamGate/ZamGatePlugin.hpp b/plugins/ZamGate/ZamGatePlugin.hpp
index 1a911c0..53731cc 100644
--- a/plugins/ZamGate/ZamGatePlugin.hpp
+++ b/plugins/ZamGate/ZamGatePlugin.hpp
@@ -74,7 +74,7 @@ protected:
uint32_t getVersion() const noexcept override
{
- return d_version(3, 8, 0);
+ return d_version(3, 9, 0);
}
int64_t getUniqueId() const noexcept override
diff --git a/plugins/ZamGateX2/ZamGateX2Plugin.hpp b/plugins/ZamGateX2/ZamGateX2Plugin.hpp
index d85fb80..cd2edc9 100644
--- a/plugins/ZamGateX2/ZamGateX2Plugin.hpp
+++ b/plugins/ZamGateX2/ZamGateX2Plugin.hpp
@@ -74,7 +74,7 @@ protected:
uint32_t getVersion() const noexcept override
{
- return d_version(3, 8, 0);
+ return d_version(3, 9, 0);
}
int64_t getUniqueId() const noexcept override
diff --git a/plugins/ZamHeadX2/ZamHeadX2Plugin.hpp b/plugins/ZamHeadX2/ZamHeadX2Plugin.hpp
index 4f420d5..48b419a 100644
--- a/plugins/ZamHeadX2/ZamHeadX2Plugin.hpp
+++ b/plugins/ZamHeadX2/ZamHeadX2Plugin.hpp
@@ -67,7 +67,7 @@ protected:
uint32_t getVersion() const noexcept override
{
- return d_version(3, 8, 0);
+ return d_version(3, 9, 0);
}
int64_t getUniqueId() const noexcept override
diff --git a/plugins/ZamPhono/ZamPhonoPlugin.hpp b/plugins/ZamPhono/ZamPhonoPlugin.hpp
index adf4410..21527b4 100644
--- a/plugins/ZamPhono/ZamPhonoPlugin.hpp
+++ b/plugins/ZamPhono/ZamPhonoPlugin.hpp
@@ -56,7 +56,7 @@ protected:
uint32_t getVersion() const noexcept override
{
- return d_version(3, 8, 0);
+ return d_version(3, 9, 0);
}
int64_t getUniqueId() const noexcept override
diff --git a/plugins/ZamTube/ZamTubePlugin.hpp b/plugins/ZamTube/ZamTubePlugin.hpp
index 544f604..ffb303f 100644
--- a/plugins/ZamTube/ZamTubePlugin.hpp
+++ b/plugins/ZamTube/ZamTubePlugin.hpp
@@ -131,7 +131,7 @@ Wave digital filter physical model of a triode tube amplifier stage, with modell
uint32_t getVersion() const noexcept override
{
- return d_version(3, 8, 0);
+ return d_version(3, 9, 0);
}
int64_t getUniqueId() const noexcept override