mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 05:50:46 +02:00
Version 0.0.6
This commit is contained in:
parent
57330d03f2
commit
fcb11e3901
3 changed files with 11 additions and 2 deletions
|
|
@ -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:
|
0.0.5:
|
||||||
|
|
||||||
- Add drag/drop for assigning modulation
|
- Add drag/drop for assigning modulation
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 0977cb455f106ae8574216c0b1173c92b08ca0ba
|
Subproject commit f584c7c3064c59975c84a7fb2c280be5e7c72606
|
||||||
|
|
@ -13,6 +13,8 @@ public:
|
||||||
WavetableAudioProcessor();
|
WavetableAudioProcessor();
|
||||||
~WavetableAudioProcessor() override;
|
~WavetableAudioProcessor() override;
|
||||||
|
|
||||||
|
bool supportsMPE() const override { return true; }
|
||||||
|
|
||||||
void stateUpdated() override;
|
void stateUpdated() override;
|
||||||
void updateState() override;
|
void updateState() override;
|
||||||
|
|
||||||
|
|
@ -275,7 +277,7 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
CurTable curTables[Cfg::numOSCs];
|
CurTable curTables[Cfg::numOSCs];
|
||||||
|
|
||||||
juce::CriticalSection dspLock;
|
juce::CriticalSection dspLock;
|
||||||
|
|
||||||
//==============================================================================
|
//==============================================================================
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue