chore: update SquidgeDistortion plugin metadata to GPL3 license, v0.1.0, and new unique ID

This commit is contained in:
Liam Kerr 2026-08-02 17:17:23 +01:00
parent eb31dcb54e
commit 786966e9e0

View file

@ -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 {}