Skip to content

Commit

Permalink
Update to 0.5.9a.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomasz Sosnowski authored and Tomasz Sosnowski committed Mar 25, 2018
1 parent 4a81e7c commit c6515de
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
SLUG = KoralfxVCV

# Must follow the format in the Versioning section of https://vcvrack.com/manual/PluginDevelopmentTutorial.html
VERSION = 0.5.9
VERSION = 0.5.9a

# FLAGS will be passed to both the C and C++ compiler
FLAGS += -Idep/include
Expand Down
6 changes: 3 additions & 3 deletions src/Beatovnik.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ struct Beatovnik : Module {

int tempo = 0;
SchmittTrigger clockTrigger;
PulseGenerator PulseGenerator;
PulseGenerator LightPulseGenerator;

Beatovnik() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {}
void step() override;
Expand All @@ -87,7 +87,7 @@ if (inputs[CLOCK_INPUT].active) {
if ((clockTrigger.process(inputs[CLOCK_INPUT].value)) && !inMemory) {
stepper = 0;
beatCount ++;
PulseGenerator.trigger(0.1);
LightPulseGenerator.trigger(0.1);
lights[CLOCK_LIGHT].value = 1;
inMemory = true;

Expand Down Expand Up @@ -313,7 +313,7 @@ if (inputs[CLOCK_INPUT].active) {


} //end of input active routine
bool pulse = PulseGenerator.process(1.0 / engineGetSampleRate());
bool pulse = LightPulseGenerator.process(1.0 / engineGetSampleRate());
if (pulse == 0) lights[CLOCK_LIGHT].value = 0;

}
Expand Down
2 changes: 1 addition & 1 deletion src/Koralfx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ void init(rack::Plugin *p) {
//p->slug = TOSTRING(SLUG);
//p->version = TOSTRING(VERSION);
p->slug = "KoralfxVCV";
p->version = "0.5.9";
p->version = "0.5.9a";
p->website = "https://github.com/koralfx/KoralfxVCV";
p->manual = "https://github.com/koralfx/KoralfxVCV/blob/master/README.md";

Expand Down

0 comments on commit c6515de

Please sign in to comment.