diff --git a/CHANGELOG.md b/CHANGELOG.md index 1639fe2..f239fcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,13 @@ # Change Log + +## v2.6.0 (in progress) + * Midi Thing 2 + * Initial release + ## v2.5.0 * Burst * Initial release - * Midi Thing 2 - * Initial release * Voltio * Initial release * PonyVCO diff --git a/plugin.json b/plugin.json index 5138f5c..29d15db 100644 --- a/plugin.json +++ b/plugin.json @@ -1,6 +1,6 @@ { "slug": "Befaco", - "version": "2.5.0", + "version": "2.6.0", "license": "GPL-3.0-or-later", "name": "Befaco", "brand": "Befaco", diff --git a/res/fonts/MISO-info.txt b/res/fonts/MISO-info.txt new file mode 100644 index 0000000..dffe47f --- /dev/null +++ b/res/fonts/MISO-info.txt @@ -0,0 +1,56 @@ + M M I SSS OOO + MM MM I S S O O + M M M M I S O O + M M M I S O O + M M I S O O + M M I S S O O + M M I SSS OOO + +--------------------------------------- +MISO is an architectural lettering font +completed in 2006 by Mårten Nettelbladt. +--------------------------------------- +MISO is available in three weights +(Light, Regular, Bold) +in TrueType and OpenType format. +--------------------------------------- + + L I C E N S E I N F O R M A T I O N +--------------------------------------- +MISO is a free typeface. However, +there is one important limitation: + +MISO MUST ALWAYS REMAIN COMPLETELY FREE + +You can use MISO for personal and commercial work. +You can share MISO with your friends +as long as you include this text file. + +You must not sell MISO. +You must not charge someone else for using MISO. +You must not bundle MISO with a sold product. + +Use it, share it, but keep it free. +--------------------------------------- + +Mårten Nettelbladt +Omkrets arkitektur +www.omkrets.se + +Stockholm, Sweden +July 9th 2009 + +--------------------------------------- +If you have any comments about MISO +please let me know: +miso (a) omkrets.se +--------------------------------------- + +November 27th 2008 +Converted to OpenType by Torin Hill. + +June 24th 2007 +Some small adjustments + +October 23rd 2006 +Released \ No newline at end of file diff --git a/res/panels/Voltio.svg b/res/panels/Voltio.svg index 8a1c0d5..e69de29 100644 --- a/res/panels/Voltio.svg +++ b/res/panels/Voltio.svg @@ -1,1343 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Lienzo 1 - - Capa 1 - - - - - - - - Capa 1 - - - - - - - - diff --git a/src/Voltio.cpp b/src/Voltio.cpp index 160b672..b25df3b 100644 --- a/src/Voltio.cpp +++ b/src/Voltio.cpp @@ -61,6 +61,9 @@ struct Voltio : Module { } outputs[OUT_OUTPUT].setChannels(channels); + + lights[PLUSMINUS5_LIGHT].setBrightness(params[RANGE_PARAM].getValue() ? 1.f : 0.f); + lights[ZEROTOTEN_LIGHT].setBrightness(params[RANGE_PARAM].getValue() ? 0.f : 1.f); } };