From 786966e9e015a52bf4439b30d2068012f42d3086 Mon Sep 17 00:00:00 2001 From: Liam Kerr Date: Sun, 2 Aug 2026 17:17:23 +0100 Subject: [PATCH] chore: update SquidgeDistortion plugin metadata to GPL3 license, v0.1.0, and new unique ID --- plugins/SquidgeDistortion/SquidgeDistortion.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/SquidgeDistortion/SquidgeDistortion.cpp b/plugins/SquidgeDistortion/SquidgeDistortion.cpp index b72ac36..f2c0760 100644 --- a/plugins/SquidgeDistortion/SquidgeDistortion.cpp +++ b/plugins/SquidgeDistortion/SquidgeDistortion.cpp @@ -14,9 +14,9 @@ protected: return "Simple distortion plugin."; } const char *getMaker() const override { return "SquidgeSoft"; } - const char *getLicense() const override { return "MIT"; } - uint32_t getVersion() const override { return d_version(1, 0, 0); } - int64_t getUniqueId() const override { return d_cconst('M', 'A', 'D', 'T'); } + const char *getLicense() const override { return "GPL3"; } + uint32_t getVersion() const override { return d_version(0, 1, 0); } + int64_t getUniqueId() const override { return d_cconst('S', 'Q', 'D', 'T'); } void run(const float **inputs, float **outputs, uint32_t frames) override {}