Skip to content

Commit

Permalink
Version 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zamaudio committed Dec 14, 2022
1 parent ed874f4 commit 33b4876
Show file tree
Hide file tree
Showing 19 changed files with 25 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ Bleeding edge installation:
Package Maintainers:
====================

git checkout 3.14
git checkout 4.0
make dist
7 changes: 7 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
4.0 Gratis and Free
- Thanks to falktx for porting to latest DPF
- All binaries available gratis for all operating systems
- Source code still Free
- Fixed a number of uninitialised value bugs
- With new DPF comes CLAP and VST3 versions

3.14 ZamTube DSP overhaul
- Thanks to oid on #opensourcemusicians!
- Released together with guitarix V0.42.0 tube improvements
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(3, 14, 0);
return d_version(4, 0, 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(3, 14, 0);
return d_version(4, 0, 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(3, 14, 0);
return d_version(4, 0, 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(3, 14, 0);
return d_version(4, 0, 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(3, 14, 0);
return d_version(4, 0, 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(3, 14, 0);
return d_version(4, 0, 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(3, 14, 0);
return d_version(4, 0, 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(3, 14, 0);
return d_version(4, 0, 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(3, 14, 0);
return d_version(4, 0, 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(3, 14, 0);
return d_version(4, 0, 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(3, 14, 0);
return d_version(4, 0, 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(3, 14, 0);
return d_version(4, 0, 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(3, 14, 0);
return d_version(4, 0, 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(3, 14, 0);
return d_version(4, 0, 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(3, 14, 0);
return d_version(4, 0, 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(3, 14, 0);
return d_version(4, 0, 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(3, 14, 0);
return d_version(4, 0, 0);
}

int64_t getUniqueId() const noexcept override
Expand Down

0 comments on commit 33b4876

Please sign in to comment.