From 7996a8902d5f1e190f0bd687db64ceedc421a3f4 Mon Sep 17 00:00:00 2001 From: wlaub Date: Sat, 12 Mar 2022 15:31:58 -0800 Subject: [PATCH] fixed cobalt I default phase offset --- changelog.md | 12 ++++++++++++ plugin.json | 2 +- src/Cobalt.cpp | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 changelog.md diff --git a/changelog.md b/changelog.md new file mode 100644 index 0000000..f9443ee --- /dev/null +++ b/changelog.md @@ -0,0 +1,12 @@ + +### 2.3.2 + +* Changed Cobalt I default phase offset to 0 to match phase rework + +### 2.3.1 + +* Fixed an issue with Tia I input polyphony + +### 2.3.0 + +* Added Lachesis I counter module diff --git a/plugin.json b/plugin.json index d27e11a..aca0da0 100644 --- a/plugin.json +++ b/plugin.json @@ -1,7 +1,7 @@ { "slug": "TechTechTechnologies", "name": "TechTech Technologies", - "version": "2.3.1", + "version": "2.3.2", "license": "CC0-1.0", "brand": "TechTech Technologies", "author": "William Laub", diff --git a/src/Cobalt.cpp b/src/Cobalt.cpp index 16842f6..6ff2c63 100644 --- a/src/Cobalt.cpp +++ b/src/Cobalt.cpp @@ -64,7 +64,7 @@ struct CobaltI : Module { configParam(START_PARAM, 1.f, 7.f, 1.f, "Starting Subharmonic"); configParam(LENGTH_PARAM, 1.f, MAX_LENGTH, 1.f, "Sequence Length"); configParam(PW_PARAM, 0.f, 1.f, 0.5f, "Pulse Width"); - configParam(PHASE_PARAM, 0.f, 1.f, 0.75f, "Starting Phase (Cycles)"); + configParam(PHASE_PARAM, 0.f, 1.f, 0.f, "Starting Phase (Cycles)"); configParam(FREQ_PARAM, 1e-3, 600.f, 10.f, "Combined Waveform Period (s)"); configParam(SCALE_PARAM, 0.f, 10.f, 5.f, "Scale (peak-to-peak)");