diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..1e854ed --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,23 @@ + +### 1.0.0 (in development) + + +### 0.5.1 (2017-12-19) + +- Added Sequential Switch 1 & 2 + +### 0.5.0 (2017-11-21) + +- Added 8vert, 8-channel attenuverter +- Added Unity, 2-channel mixer +- Changed LED functions in ADSR + +### 0.4.0 (2017-10-13) + +- Added Lissajous mode to Scope +- Added two LFOs and VCO-2 + +### 0.3.2 (2017-09-25) + +- Fixed Drive CV input of VCF +- Reverted SEQ3 to continuous gates diff --git a/plugin.json b/plugin.json index a6670b6..1067824 100644 --- a/plugin.json +++ b/plugin.json @@ -1,6 +1,7 @@ { "slug": "Fundamental", "name": "Fundamental", + "version": "1.0.0", "author": "VCV", "license": "BSD-3-Clause", "authorEmail": "contact@vcvrack.com", @@ -8,7 +9,7 @@ "authorUrl": "https://vcvrack.com/", "manualUrl": "https://vcvrack.com/Fundamental.html#manual", "sourceUrl": "https://github.com/VCVRack/Fundamental", - "version": "1.0.0", + "changelogUrl": "https://github.com/VCVRack/Fundamental/blob/v1/CHANGELOG.md", "modules": [ { "slug": "VCO", diff --git a/src/SEQ3.cpp b/src/SEQ3.cpp index 8be5bc6..7b85276 100644 --- a/src/SEQ3.cpp +++ b/src/SEQ3.cpp @@ -49,7 +49,7 @@ struct SEQ3 : Module { SEQ3() { config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS); - configParam(CLOCK_PARAM, -2.f, 6.f, 2.f); + configParam(CLOCK_PARAM, -2.f, 6.f, 2.f, "Clock tempo", " bpm", 2.f, 60.f); configParam(RUN_PARAM, 0.f, 1.f, 0.f); configParam(RESET_PARAM, 0.f, 1.f, 0.f); configParam(STEPS_PARAM, 1.f, 8.f, 8.f);