Skip to content

Commit

Permalink
First 2.6 candidate release
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveBenham committed Feb 10, 2024
1 parent 93695eb commit b615704
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"slug": "Venom",
"name": "Venom",
"version": "2.6.0dev",
"version": "2.6.0",
"license": "GPL-3.0-or-later",
"brand": "",
"author": "David Benham",
Expand Down
3 changes: 0 additions & 3 deletions src/WidgetMenuExtender.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ struct WidgetMenuExtender : VenomModule {
PARAMS_LEN
};
enum InputId {
// TEST_INPUT,
INPUTS_LEN
};
enum OutputId {
Expand Down Expand Up @@ -82,7 +81,6 @@ struct WidgetMenuExtender : VenomModule {
configSwitch<FixedSwitchQuantity>(ENABLE_PARAM, 0.f, 0.f, 0.f, "Enable", {"Permanently disabled"});
else
configSwitch<FixedSwitchQuantity>(ENABLE_PARAM, 0.f, 1.f, 1.f, "Enable", {"Off", "On"});
// configInput(TEST_INPUT, "lint test");
}

~WidgetMenuExtender() {
Expand Down Expand Up @@ -392,7 +390,6 @@ struct WidgetMenuExtenderWidget : VenomWidget {
setModule(module);
setVenomPanel("WidgetMenuExtender");
addParam(createLockableLightParamCentered<VCVLightButtonLatchLockable<MediumSimpleLight<RedBlueLight<>>>>(Vec(22.5f, 100.f), module, WidgetMenuExtender::ENABLE_PARAM, WidgetMenuExtender::ENABLE_RED_LIGHT));
// addInput(createInputCentered<MonoPort>(Vec(22.5F, 140.f), module, WidgetMenuExtender::TEST_INPUT));
}

void step() override {
Expand Down

0 comments on commit b615704

Please sign in to comment.