Skip to content

Commit

Permalink
update to v2.6.17-beta7
Browse files Browse the repository at this point in the history
  • Loading branch information
sickozell committed Dec 29, 2024
1 parent 6d30320 commit 8369dea
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SickoCV v2.6.17-beta6
# SickoCV v2.6.17-beta7
VCV Rack plugin modules (BETA TEST AREA)
Compile or **download binary for ANY platform** on the releases page

Expand Down
2 changes: 1 addition & 1 deletion extra/crossCompiler.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
git tag v2.6.17-beta6 -m "create v2.6.17-beta6"
git tag v2.6.17-beta7 -m "create v2.6.17-beta7"
git push origin --tags

delete local tag
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"slug": "SickoCV",
"name": "SickoCV",
"version": "2.6.17-beta6",
"version": "2.6.17-beta7",
"license": "GPL-3.0-or-later",
"brand": "Sickozell",
"author": "Sickozell",
Expand Down
8 changes: 4 additions & 4 deletions src/Clocker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1498,7 +1498,7 @@ struct ClockerDisplayDiv1 : TransparentWidget {

int tempValue = int(module->params[module->DIVMULT_KNOB_PARAM+0].getValue());
float tempXpos = 3;
if (tempValue > 11 && tempValue < 29)
if (tempValue > 13 && tempValue < 31)
tempXpos = 12.8;

if (tempValue < 22)
Expand Down Expand Up @@ -1566,7 +1566,7 @@ struct ClockerDisplayDiv2 : TransparentWidget {

int tempValue = int(module->params[module->DIVMULT_KNOB_PARAM+1].getValue());
float tempXpos = 3;
if (tempValue > 11 && tempValue < 29)
if (tempValue > 13 && tempValue < 31)
tempXpos = 12.8;

if (tempValue < 22)
Expand Down Expand Up @@ -1634,7 +1634,7 @@ struct ClockerDisplayDiv3 : TransparentWidget {

int tempValue = int(module->params[module->DIVMULT_KNOB_PARAM+2].getValue());
float tempXpos = 3;
if (tempValue > 11 && tempValue < 29)
if (tempValue > 13 && tempValue < 31)
tempXpos = 12.8;

if (tempValue < 22)
Expand Down Expand Up @@ -1702,7 +1702,7 @@ struct ClockerDisplayDiv4 : TransparentWidget {

int tempValue = int(module->params[module->DIVMULT_KNOB_PARAM+3].getValue());
float tempXpos = 3;
if (tempValue > 11 && tempValue < 29)
if (tempValue > 13 && tempValue < 31)
tempXpos = 12.8;

if (tempValue < 22)
Expand Down
12 changes: 6 additions & 6 deletions src/Clocker2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ struct Clocker2DisplayDiv1 : TransparentWidget {

int tempValue = int(module->params[module->DIVMULT_KNOB_PARAM+0].getValue());
float tempXpos = 3;
if (tempValue > 11 && tempValue < 29)
if (tempValue > 13 && tempValue < 31)
tempXpos = 12.8;

if (tempValue < 22)
Expand Down Expand Up @@ -1067,7 +1067,7 @@ struct Clocker2DisplayDiv2 : TransparentWidget {

int tempValue = int(module->params[module->DIVMULT_KNOB_PARAM+1].getValue());
float tempXpos = 3;
if (tempValue > 11 && tempValue < 29)
if (tempValue > 13 && tempValue < 31)
tempXpos = 12.8;

if (tempValue < 22)
Expand Down Expand Up @@ -1133,7 +1133,7 @@ struct Clocker2DisplayDiv3 : TransparentWidget {

int tempValue = int(module->params[module->DIVMULT_KNOB_PARAM+2].getValue());
float tempXpos = 3;
if (tempValue > 11 && tempValue < 29)
if (tempValue > 13 && tempValue < 31)
tempXpos = 12.8;

if (tempValue < 22)
Expand Down Expand Up @@ -1199,7 +1199,7 @@ struct Clocker2DisplayDiv4 : TransparentWidget {

int tempValue = int(module->params[module->DIVMULT_KNOB_PARAM+3].getValue());
float tempXpos = 3;
if (tempValue > 11 && tempValue < 29)
if (tempValue > 13 && tempValue < 31)
tempXpos = 12.8;

if (tempValue < 22)
Expand Down Expand Up @@ -1265,7 +1265,7 @@ struct Clocker2DisplayDiv5 : TransparentWidget {

int tempValue = int(module->params[module->DIVMULT_KNOB_PARAM+4].getValue());
float tempXpos = 3;
if (tempValue > 11 && tempValue < 29)
if (tempValue > 13 && tempValue < 31)
tempXpos = 12.8;

if (tempValue < 22)
Expand Down Expand Up @@ -1331,7 +1331,7 @@ struct Clocker2DisplayDiv6 : TransparentWidget {

int tempValue = int(module->params[module->DIVMULT_KNOB_PARAM+5].getValue());
float tempXpos = 3;
if (tempValue > 11 && tempValue < 29)
if (tempValue > 13 && tempValue < 31)
tempXpos = 12.8;

if (tempValue < 22)
Expand Down

0 comments on commit 8369dea

Please sign in to comment.