From fcb11e390146ae1520aff2793f63192cf1d7d548 Mon Sep 17 00:00:00 2001 From: Roland Rabien Date: Wed, 6 Sep 2023 09:53:13 -0700 Subject: [PATCH] Version 0.0.6 --- Changelist.txt | 7 +++++++ modules/gin | 2 +- plugin/Source/PluginProcessor.h | 4 +++- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Changelist.txt b/Changelist.txt index 3a4d380..1248906 100644 --- a/Changelist.txt +++ b/Changelist.txt @@ -1,3 +1,10 @@ +0.0.6: + +- Fixed loading new presets in VST3 +- Increased size of mod depth button +- Increased size of next/prev preset buttons +- Fixed spread algorithm + 0.0.5: - Add drag/drop for assigning modulation diff --git a/modules/gin b/modules/gin index 0977cb4..f584c7c 160000 --- a/modules/gin +++ b/modules/gin @@ -1 +1 @@ -Subproject commit 0977cb455f106ae8574216c0b1173c92b08ca0ba +Subproject commit f584c7c3064c59975c84a7fb2c280be5e7c72606 diff --git a/plugin/Source/PluginProcessor.h b/plugin/Source/PluginProcessor.h index 526d6df..9b9d80d 100644 --- a/plugin/Source/PluginProcessor.h +++ b/plugin/Source/PluginProcessor.h @@ -13,6 +13,8 @@ public: WavetableAudioProcessor(); ~WavetableAudioProcessor() override; + bool supportsMPE() const override { return true; } + void stateUpdated() override; void updateState() override; @@ -275,7 +277,7 @@ public: }; CurTable curTables[Cfg::numOSCs]; - + juce::CriticalSection dspLock; //==============================================================================