Skip to content

Commit

Permalink
Version 4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zamaudio committed May 12, 2024
1 parent f624eca commit 9e824af
Show file tree
Hide file tree
Showing 21 changed files with 30 additions and 20 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Build Dependencies:
===================

pkg-config libx11-dev libgl-dev liblo-dev libjack-dev ladspa-sdk
libfftw3-dev libfftw3-single3 libsamplerate0-dev


Bleeding edge installation:
Expand All @@ -27,5 +28,6 @@ Bleeding edge installation:
Package Maintainers:
====================

git checkout 4.2
git checkout 4.3
git submodule update --init --recursive
make dist
8 changes: 8 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
4.3 First AU release
- Huge kudos to falktx for completing AU support in DPF!
- New plugin: ZamNoise noise reduction based on Gnome Wave Cleaner,
uses Ephriam / Malah noise suppression algorithm from 1984
- Tweak defaults and ranges on ZamEQ2
- Make ZaMaximX2 threshold/gain controls more usable in response
to unfa's critique of FOSS limiter plugins

4.2 Bugfixes and DSP improvements
- ZamTube: Introduced both sides of 12AX7 valve emulation
with tonestack sandwiched between the valves.
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZaMaximX2/ZaMaximX2Plugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class ZaMaximX2Plugin : public Plugin

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZaMultiComp/ZaMultiCompPlugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class ZaMultiCompPlugin : public Plugin

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZaMultiCompX2/ZaMultiCompX2Plugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Stereo version of ZaMultiComp, with individual threshold controls for each band

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZamAutoSat/ZamAutoSatPlugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ You can apply this plugin generously without affecting the tone.";

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZamComp/ZamCompPlugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class ZamCompPlugin : public Plugin

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZamCompX2/ZamCompX2Plugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class ZamCompX2Plugin : public Plugin

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZamDelay/ZamDelayPlugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class ZamDelayPlugin : public Plugin

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZamDynamicEQ/ZamDynamicEQPlugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class ZamDynamicEQPlugin : public Plugin

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZamEQ2/ZamEQ2Plugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class ZamEQ2Plugin : public Plugin

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZamGEQ31/ZamGEQ31Plugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class ZamGEQ31Plugin : public Plugin

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZamGate/ZamGatePlugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class ZamGatePlugin : public Plugin

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZamGateX2/ZamGateX2Plugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class ZamGateX2Plugin : public Plugin

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZamGrains/ZamGrainsPlugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class ZamGrainsPlugin : public Plugin

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZamHeadX2/ZamHeadX2Plugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class ZamHeadX2Plugin : public Plugin

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZamNoise/ZamNoisePlugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class ZamNoisePlugin : public Plugin

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZamPhono/ZamPhonoPlugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class ZamPhonoPlugin : public Plugin

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZamSynth/ZamSynthPlugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class ZamSynthPlugin : public Plugin

uint32_t getVersion() const noexcept override
{
return d_version(3, 14, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZamTube/ZamTubePlugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Wave digital filter physical model of a triode tube amplifier stage, with modell

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down
2 changes: 1 addition & 1 deletion plugins/ZamVerb/ZamVerbPlugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class ZamVerbPlugin : public Plugin

uint32_t getVersion() const noexcept override
{
return d_version(4, 2, 0);
return d_version(4, 3, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down

0 comments on commit 9e824af

Please sign in to comment.