| @@ -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 | |||||
| @@ -1,6 +1,7 @@ | |||||
| { | { | ||||
| "slug": "Fundamental", | "slug": "Fundamental", | ||||
| "name": "Fundamental", | "name": "Fundamental", | ||||
| "version": "1.0.0", | |||||
| "author": "VCV", | "author": "VCV", | ||||
| "license": "BSD-3-Clause", | "license": "BSD-3-Clause", | ||||
| "authorEmail": "contact@vcvrack.com", | "authorEmail": "contact@vcvrack.com", | ||||
| @@ -8,7 +9,7 @@ | |||||
| "authorUrl": "https://vcvrack.com/", | "authorUrl": "https://vcvrack.com/", | ||||
| "manualUrl": "https://vcvrack.com/Fundamental.html#manual", | "manualUrl": "https://vcvrack.com/Fundamental.html#manual", | ||||
| "sourceUrl": "https://github.com/VCVRack/Fundamental", | "sourceUrl": "https://github.com/VCVRack/Fundamental", | ||||
| "version": "1.0.0", | |||||
| "changelogUrl": "https://github.com/VCVRack/Fundamental/blob/v1/CHANGELOG.md", | |||||
| "modules": [ | "modules": [ | ||||
| { | { | ||||
| "slug": "VCO", | "slug": "VCO", | ||||
| @@ -49,7 +49,7 @@ struct SEQ3 : Module { | |||||
| SEQ3() { | SEQ3() { | ||||
| config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS); | 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(RUN_PARAM, 0.f, 1.f, 0.f); | ||||
| configParam(RESET_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); | configParam(STEPS_PARAM, 1.f, 8.f, 8.f); | ||||