├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── azure-pipelines.yml ├── plugin.json ├── res ├── Cells.svg ├── ClockM8.svg ├── KnobDark26.svg ├── KnobWhite23.svg ├── KnobWhite26.svg ├── KnobWhite32.svg ├── MacroPad.svg ├── Mem.svg ├── Merge4.svg ├── Merge8.svg ├── Midi-PC.svg ├── MonoPoly.svg ├── Morph.svg ├── Multimap.svg ├── PolyMerge.svg ├── PolySplit.svg ├── S4.svg ├── SmallPort.svg ├── Split4.svg ├── Split8.svg ├── SwitchN1.svg ├── fonts │ ├── Bebas-Regular.ttf │ └── EHSMB.TTF ├── img │ ├── 23v-modules-2.png │ └── 23v-modules.png └── widgets │ ├── Button0.svg │ ├── Button1.svg │ ├── Toggle0.svg │ └── Toggle1.svg ├── scripts ├── plugin-builder.sh ├── release-notes.sh └── resetversion.sh └── src ├── 23volts.cpp ├── 23volts.hpp ├── Cells.cpp ├── ClockM8.cpp ├── M8.hpp ├── Mem.cpp ├── Merge4.cpp ├── Merge8.cpp ├── MidiPC.cpp ├── MonoPoly.cpp ├── Morph.cpp ├── Multimap.cpp ├── PolyMerge.cpp ├── PolySplit.cpp ├── Split4.cpp ├── Split8.cpp ├── SwitchN1.cpp ├── common ├── mapping.hpp ├── midi.cpp └── midi.hpp ├── helpers.cpp ├── helpers.hpp └── widgets ├── buttons.hpp ├── knobs.hpp ├── labels.hpp ├── lights.hpp └── ports.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/plugin.json -------------------------------------------------------------------------------- /res/Cells.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/Cells.svg -------------------------------------------------------------------------------- /res/ClockM8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/ClockM8.svg -------------------------------------------------------------------------------- /res/KnobDark26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/KnobDark26.svg -------------------------------------------------------------------------------- /res/KnobWhite23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/KnobWhite23.svg -------------------------------------------------------------------------------- /res/KnobWhite26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/KnobWhite26.svg -------------------------------------------------------------------------------- /res/KnobWhite32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/KnobWhite32.svg -------------------------------------------------------------------------------- /res/MacroPad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/MacroPad.svg -------------------------------------------------------------------------------- /res/Mem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/Mem.svg -------------------------------------------------------------------------------- /res/Merge4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/Merge4.svg -------------------------------------------------------------------------------- /res/Merge8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/Merge8.svg -------------------------------------------------------------------------------- /res/Midi-PC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/Midi-PC.svg -------------------------------------------------------------------------------- /res/MonoPoly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/MonoPoly.svg -------------------------------------------------------------------------------- /res/Morph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/Morph.svg -------------------------------------------------------------------------------- /res/Multimap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/Multimap.svg -------------------------------------------------------------------------------- /res/PolyMerge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/PolyMerge.svg -------------------------------------------------------------------------------- /res/PolySplit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/PolySplit.svg -------------------------------------------------------------------------------- /res/S4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/S4.svg -------------------------------------------------------------------------------- /res/SmallPort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/SmallPort.svg -------------------------------------------------------------------------------- /res/Split4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/Split4.svg -------------------------------------------------------------------------------- /res/Split8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/Split8.svg -------------------------------------------------------------------------------- /res/SwitchN1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/SwitchN1.svg -------------------------------------------------------------------------------- /res/fonts/Bebas-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/fonts/Bebas-Regular.ttf -------------------------------------------------------------------------------- /res/fonts/EHSMB.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/fonts/EHSMB.TTF -------------------------------------------------------------------------------- /res/img/23v-modules-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/img/23v-modules-2.png -------------------------------------------------------------------------------- /res/img/23v-modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/img/23v-modules.png -------------------------------------------------------------------------------- /res/widgets/Button0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/widgets/Button0.svg -------------------------------------------------------------------------------- /res/widgets/Button1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/widgets/Button1.svg -------------------------------------------------------------------------------- /res/widgets/Toggle0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/widgets/Toggle0.svg -------------------------------------------------------------------------------- /res/widgets/Toggle1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/res/widgets/Toggle1.svg -------------------------------------------------------------------------------- /scripts/plugin-builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/scripts/plugin-builder.sh -------------------------------------------------------------------------------- /scripts/release-notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/scripts/release-notes.sh -------------------------------------------------------------------------------- /scripts/resetversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/scripts/resetversion.sh -------------------------------------------------------------------------------- /src/23volts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/23volts.cpp -------------------------------------------------------------------------------- /src/23volts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/23volts.hpp -------------------------------------------------------------------------------- /src/Cells.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/Cells.cpp -------------------------------------------------------------------------------- /src/ClockM8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/ClockM8.cpp -------------------------------------------------------------------------------- /src/M8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/M8.hpp -------------------------------------------------------------------------------- /src/Mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/Mem.cpp -------------------------------------------------------------------------------- /src/Merge4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/Merge4.cpp -------------------------------------------------------------------------------- /src/Merge8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/Merge8.cpp -------------------------------------------------------------------------------- /src/MidiPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/MidiPC.cpp -------------------------------------------------------------------------------- /src/MonoPoly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/MonoPoly.cpp -------------------------------------------------------------------------------- /src/Morph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/Morph.cpp -------------------------------------------------------------------------------- /src/Multimap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/Multimap.cpp -------------------------------------------------------------------------------- /src/PolyMerge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/PolyMerge.cpp -------------------------------------------------------------------------------- /src/PolySplit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/PolySplit.cpp -------------------------------------------------------------------------------- /src/Split4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/Split4.cpp -------------------------------------------------------------------------------- /src/Split8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/Split8.cpp -------------------------------------------------------------------------------- /src/SwitchN1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/SwitchN1.cpp -------------------------------------------------------------------------------- /src/common/mapping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/common/mapping.hpp -------------------------------------------------------------------------------- /src/common/midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/common/midi.cpp -------------------------------------------------------------------------------- /src/common/midi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/common/midi.hpp -------------------------------------------------------------------------------- /src/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/helpers.cpp -------------------------------------------------------------------------------- /src/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/helpers.hpp -------------------------------------------------------------------------------- /src/widgets/buttons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/widgets/buttons.hpp -------------------------------------------------------------------------------- /src/widgets/knobs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/widgets/knobs.hpp -------------------------------------------------------------------------------- /src/widgets/labels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/widgets/labels.hpp -------------------------------------------------------------------------------- /src/widgets/lights.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/widgets/lights.hpp -------------------------------------------------------------------------------- /src/widgets/ports.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23volts/23volts-vcv/HEAD/src/widgets/ports.hpp --------------------------------------------------------------------------------