Skip to content

Commit

Permalink
Version 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
FigBug committed Oct 2, 2023
1 parent 77a2dd4 commit 3ee3ff7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmake_minimum_required (VERSION 3.24.0 FATAL_ERROR)
# Set for each plugin
#
set (PLUGIN_NAME Wavetable)
set (PLUGIN_VERSION 1.0.6)
set (PLUGIN_VERSION 1.0.7)
set (BUNDLE_ID com.socalabs.wavetable)
set (AU_ID WavetableAU)
set (LV2_URI "https://socalabs.com/wavetable/")
Expand Down
4 changes: 4 additions & 0 deletions Changelist.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.0.7:

- Fix broken pitch bend

1.0.6:

- Fix tempo sync LFOs
Expand Down
8 changes: 6 additions & 2 deletions plugin/Source/Panels.h
Original file line number Diff line number Diff line change
Expand Up @@ -537,9 +537,10 @@ class GlobalBox : public gin::ParamBox
addControl (new gin::Knob (proc.globalParams.voices));
addControl (legato = new gin::Switch (proc.globalParams.legato));
addControl (new gin::Switch (proc.globalParams.mono));
addControl (new gin::Knob (proc.globalParams.pitchBend));
addControl (pitchbend = new gin::Knob (proc.globalParams.pitchBend));

watchParam (proc.globalParams.glideMode);
watchParam (proc.globalParams.mpe);
paramChanged();
}

Expand All @@ -549,12 +550,15 @@ class GlobalBox : public gin::ParamBox

rate->setEnabled (proc.globalParams.glideMode->getUserValueInt() > 0);
legato->setEnabled (proc.globalParams.glideMode->getUserValueInt() > 0);

pitchbend->setEnabled (! proc.globalParams.mpe->getUserValueBool());
}

WavetableAudioProcessor& proc;

gin::Knob* rate;
gin::Switch* legato;
gin::Knob* pitchbend;
};

//==============================================================================
Expand Down

0 comments on commit 3ee3ff7

Please sign in to comment.