Skip to content

Commit

Permalink
fixed cobalt I default phase offset
Browse files Browse the repository at this point in the history
  • Loading branch information
wlaub committed Mar 12, 2022
1 parent 9232394 commit 7996a89
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/Cobalt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)");
Expand Down

0 comments on commit 7996a89

Please sign in to comment.