commit 01f6aa5426ccfa56634e1f8a0796e0433758b53b
parent 96550552d4d20e8fcb440dd7b7ad8a343460007b
Author: Matt Demanett <matt@demanett.net>
Date: Sun, 30 Jun 2019 23:18:03 -0400
Merge branch 'master' of github.com:bogaudio/BogaudioModules
Diffstat:
4 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/plugin.json b/plugin.json
@@ -5,8 +5,8 @@
"license": "BSD-3-Clause",
"brand": "Bogaudio",
"author": "Matt Demanett",
- "authorEmail": "",
- "authorUrl": "",
+ "authorEmail": "mattdemanett@gmail.com",
+ "authorUrl": "https://github.com/mdemanett",
"pluginUrl": "https://github.com/bogaudio/BogaudioModules/blob/master/README.md",
"manualUrl": "https://github.com/bogaudio/BogaudioModules/blob/master/README.md",
"sourceUrl": "https://github.com/bogaudio/BogaudioModules",
@@ -90,7 +90,7 @@
"name": "DGate",
"description": "trigger-to-gate with delay",
"tags": [
-
+ "Utility"
]
},
{
@@ -325,7 +325,7 @@
"name": "ADDR-SEQ",
"description": "voltage-addressable sequencer",
"tags": [
- "Sequencery"
+ "Sequencer"
]
},
{
@@ -415,7 +415,7 @@
"name": "Manual",
"description": "manual gates / triggers",
"tags": [
-
+ "Utility"
]
},
{
diff --git a/src/AddrSeq.cpp b/src/AddrSeq.cpp
@@ -254,4 +254,4 @@ struct AddrSeqWidget : ModuleWidget {
}
};
-Model* modelAddrSeq = bogaudio::createModel<AddrSeq, AddrSeqWidget>("Bogaudio-AddrSeq", "ADDR-SEQ", "voltage-addressable sequencer", "Sequencery");
+Model* modelAddrSeq = bogaudio::createModel<AddrSeq, AddrSeqWidget>("Bogaudio-AddrSeq", "ADDR-SEQ", "voltage-addressable sequencer", "Sequencer");
diff --git a/src/DGate.cpp b/src/DGate.cpp
@@ -123,4 +123,4 @@ struct DGateWidget : ModuleWidget {
}
};
-Model* modelDGate = bogaudio::createModel<DGate, DGateWidget>("Bogaudio-DGate", "DGate", "trigger-to-gate with delay");
+Model* modelDGate = bogaudio::createModel<DGate, DGateWidget>("Bogaudio-DGate", "DGate", "trigger-to-gate with delay", "Utility");
diff --git a/src/Manual.cpp b/src/Manual.cpp
@@ -79,4 +79,4 @@ struct ManualWidget : ModuleWidget {
}
};
-Model* modelManual = bogaudio::createModel<Manual, ManualWidget>("Bogaudio-Manual", "Manual", "manual gates / triggers");
+Model* modelManual = bogaudio::createModel<Manual, ManualWidget>("Bogaudio-Manual", "Manual", "manual gates / triggers", "Utility");