commit 7f16bea97a83d580c093b14a5815e1156db8ce6e
parent 3d7902f696c8b58bc5364b0c8b7e581e557116a8
Author: Matt Demanett <matt@demanett.net>
Date: Fri, 14 Jun 2019 17:06:53 -0400
Fix plugin.json (again). #62
Diffstat:
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/plugin.json b/plugin.json
@@ -90,7 +90,7 @@
"name": "DGate",
"description": "trigger-to-gate with delay",
"tags": [
-
+ "Utility"
]
},
{
@@ -415,7 +415,7 @@
"name": "Manual",
"description": "manual gates / triggers",
"tags": [
-
+ "Utility"
]
},
{
diff --git a/src/DGate.cpp b/src/DGate.cpp
@@ -124,4 +124,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");