Skip to content

Commit

Permalink
update to v2.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sickozell committed Dec 18, 2023
1 parent d29729a commit 22b3c22
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### 2.6.1 (2023-12-17)
### 2.6.1 (2023-12-18)
- sickoLooper: added dark green color to the display bar when the loop is still playing even if its recording is finished
fixed a bug on 'stop all' trig input
fixed a bug on 'stop all' trig input
- clocker: fixed a bug on swing control

### 2.6.0 (2023-12-10)
- added sickoLooper3 and sickoLooper5 modules
Expand Down
4 changes: 2 additions & 2 deletions extra/crossCompiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ git tag v2.6.1 -m "create v2.6.1"
git push origin --tags

delete local tag
git tag -d v2.6.1
git tag -d v2.6.1-beta

delete remote
git push --delete origin v2.6.1
git push --delete origin v2.6.1-beta


### How to build a VCVRack plugin with Github Action
Expand Down
8 changes: 4 additions & 4 deletions src/Clocker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ struct Clocker : Module {
//int beatCounter = 1;
int beatCounter = 20; // thise ensure that module starts on a new bar

//float oneMsTime = (APP->engine->getSampleRate()) / 1000;
float oneMsTime = (APP->engine->getSampleRate()) / 10; // for testing purposes
float oneMsTime = (APP->engine->getSampleRate()) / 1000;
//float oneMsTime = (APP->engine->getSampleRate()) / 10; // for testing purposes
bool resetPulse = false;
float resetPulseTime = 0.f;
bool beatPulse = false;
Expand Down Expand Up @@ -282,8 +282,8 @@ struct Clocker : Module {

void onSampleRateChange() override {
sampleRateCoeff = (double)APP->engine->getSampleRate() * 60;
//oneMsTime = (APP->engine->getSampleRate()) / 1000;
oneMsTime = (APP->engine->getSampleRate()) / 10; // for testing purposes
oneMsTime = (APP->engine->getSampleRate()) / 1000;
//oneMsTime = (APP->engine->getSampleRate()) / 10; // for testing purposes

for (int i = 0; i < 2; i++) {
if (fileLoaded[i]) {
Expand Down

0 comments on commit 22b3c22

Please sign in to comment.