commit b1dff1eaa266af7c3d7f7942ed733874382a0f70
parent 9e6d92045b9f9e88be4fbc49bb3195deec52dae2
Author: Matt Demanett <matt@demanett.net>
Date: Mon, 30 Dec 2019 18:11:09 -0500
Reorder modules.
Diffstat:
2 files changed, 62 insertions(+), 61 deletions(-)
diff --git a/plugin.json b/plugin.json
@@ -122,15 +122,6 @@
]
},
{
- "slug": "Bogaudio-DGate",
- "name": "DGATE",
- "description": "Trigger-to-gate converter with delay",
- "tags": [
- "Utility",
- "Polyphonic"
- ]
- },
- {
"slug": "Bogaudio-Shaper",
"name": "SHAPER",
"description": "Retro-inspired envelope generator and amplifier",
@@ -187,6 +178,15 @@
]
},
{
+ "slug": "Bogaudio-DGate",
+ "name": "DGATE",
+ "description": "Trigger-to-gate converter with delay",
+ "tags": [
+ "Utility",
+ "Polyphonic"
+ ]
+ },
+ {
"slug": "Bogaudio-Edge",
"name": "EDGE",
"description": "Edge detector, gate-to-trigger, comparator",
@@ -270,112 +270,112 @@
]
},
{
- "slug": "Bogaudio-UMix",
- "name": "UMIX",
- "description": "8-input unity mixer",
+ "slug": "Bogaudio-Mute8",
+ "name": "MUTE8",
+ "description": "Eight independent mutes with CV control",
"tags": [
- "Mixer",
+ "Utility",
"Polyphonic"
]
},
{
- "slug": "Bogaudio-Mumix",
- "name": "MUMIX",
- "description": "8-input unity mixer with mutes",
+ "slug": "Bogaudio-Pan",
+ "name": "PAN",
+ "description": "Dual stereo panner",
"tags": [
- "Mixer",
+ "Panning",
+ "Dual",
"Polyphonic"
]
},
{
- "slug": "Bogaudio-Matrix44",
- "name": "MATRIX44",
- "description": "4x4 matrix mixer",
+ "slug": "Bogaudio-XFade",
+ "name": "XFADE",
+ "description": "Crossfader",
"tags": [
"Mixer",
"Polyphonic"
]
},
{
- "slug": "Bogaudio-Matrix88",
- "name": "MATRIX88",
- "description": "8x8 matrix mixer",
+ "slug": "Bogaudio-VCA",
+ "name": "VCA",
+ "description": "Dual voltage controlled attenuator",
"tags": [
- "Mixer",
+ "VCA",
+ "Dual",
"Polyphonic"
]
},
{
- "slug": "Bogaudio-Switch44",
- "name": "SWITCH44",
- "description": "4x4 matrix mixer",
+ "slug": "Bogaudio-VCAmp",
+ "name": "VCAMP",
+ "description": "Voltage controlled amplifier with 12dB gain",
"tags": [
- "Mixer",
+ "VCA",
"Polyphonic"
]
},
{
- "slug": "Bogaudio-Switch88",
- "name": "SWITCH88",
- "description": "8x8 matrix mixer",
+ "slug": "Bogaudio-UMix",
+ "name": "UMIX",
+ "description": "8-input unity mixer",
"tags": [
"Mixer",
"Polyphonic"
]
},
{
- "slug": "Bogaudio-Switch1616",
- "name": "SWITCH1616",
- "description": "16x16 matrix mixer",
+ "slug": "Bogaudio-Mumix",
+ "name": "MUMIX",
+ "description": "8-input unity mixer with mutes",
"tags": [
"Mixer",
"Polyphonic"
]
},
{
- "slug": "Bogaudio-Mute8",
- "name": "MUTE8",
- "description": "Eight independent mutes with CV control",
+ "slug": "Bogaudio-Matrix44",
+ "name": "MATRIX44",
+ "description": "4x4 matrix mixer",
"tags": [
- "Utility",
+ "Mixer",
"Polyphonic"
]
},
{
- "slug": "Bogaudio-Pan",
- "name": "PAN",
- "description": "Dual stereo panner",
+ "slug": "Bogaudio-Matrix88",
+ "name": "MATRIX88",
+ "description": "8x8 matrix mixer",
"tags": [
- "Panning",
- "Dual",
+ "Mixer",
"Polyphonic"
]
},
{
- "slug": "Bogaudio-XFade",
- "name": "XFADE",
- "description": "Crossfader",
+ "slug": "Bogaudio-Switch44",
+ "name": "SWITCH44",
+ "description": "4x4 matrix mixer",
"tags": [
"Mixer",
"Polyphonic"
]
},
{
- "slug": "Bogaudio-VCA",
- "name": "VCA",
- "description": "Dual voltage controlled attenuator",
+ "slug": "Bogaudio-Switch88",
+ "name": "SWITCH88",
+ "description": "8x8 matrix mixer",
"tags": [
- "VCA",
- "Dual",
+ "Mixer",
"Polyphonic"
]
},
{
- "slug": "Bogaudio-VCAmp",
- "name": "VCAMP",
- "description": "Voltage controlled amplifier with 12dB gain",
+ "slug": "Bogaudio-Switch1616",
+ "name": "SWITCH1616",
+ "description": "16x16 matrix mixer",
"tags": [
- "VCA",
+ "Mixer",
"Polyphonic"
]
},
diff --git a/src/bogaudio.cpp b/src/bogaudio.cpp
@@ -100,13 +100,13 @@ void init(rack::Plugin *p) {
p->addModel(modelDADSRH);
p->addModel(modelDADSRHPlus);
- p->addModel(modelDGate);
p->addModel(modelShaper);
p->addModel(modelShaperPlus);
p->addModel(modelAD);
p->addModel(modelASR);
p->addModel(modelADSR);
p->addModel(modelFollow);
+ p->addModel(modelDGate);
p->addModel(modelEdge);
p->addModel(modelNoise);
@@ -118,6 +118,12 @@ void init(rack::Plugin *p) {
p->addModel(modelMix4);
p->addModel(modelMix1);
p->addModel(modelVCM);
+ p->addModel(modelMute8);
+ p->addModel(modelPan);
+ p->addModel(modelXFade);
+ p->addModel(modelVCA);
+ p->addModel(modelVCAmp);
+
p->addModel(modelUMix);
p->addModel(modelMumix);
p->addModel(modelMatrix44);
@@ -125,11 +131,6 @@ void init(rack::Plugin *p) {
p->addModel(modelSwitch44);
p->addModel(modelSwitch88);
p->addModel(modelSwitch1616);
- p->addModel(modelMute8);
- p->addModel(modelPan);
- p->addModel(modelXFade);
- p->addModel(modelVCA);
- p->addModel(modelVCAmp);
p->addModel(modelAMRM);
p->addModel(modelPressor);