From c7872a42eac7b873322cb8212cfab0eb0d3ba8f6 Mon Sep 17 00:00:00 2001 From: Roland Rabien Date: Thu, 28 Sep 2023 08:26:07 -0700 Subject: [PATCH] Renamed Legato rate to Legato Time --- Changelist.txt | 1 + plugin/Source/PluginProcessor.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelist.txt b/Changelist.txt index 72f0a4e..cad0eec 100644 --- a/Changelist.txt +++ b/Changelist.txt @@ -4,6 +4,7 @@ - Fix preset loading if the file has been manually renamed - Fix crash initializing plugin on Linux - Fix channel config on Linux +- Renamed Legato rate to Legato Time 1.0.2: diff --git a/plugin/Source/PluginProcessor.cpp b/plugin/Source/PluginProcessor.cpp index 16214f4..41e9a9b 100644 --- a/plugin/Source/PluginProcessor.cpp +++ b/plugin/Source/PluginProcessor.cpp @@ -282,7 +282,7 @@ void WavetableAudioProcessor::GlobalParams::setup (WavetableAudioProcessor& p) { mono = p.addIntParam ("mono", "Mono", "", "", { 0.0, 1.0, 0.0, 1.0 }, 0.0, 0.0f, enableTextFunction); glideMode = p.addIntParam ("gMode", "Glide Mode", "Glide", "", { 0.0, 2.0, 0.0, 1.0 }, 0.0f, 0.0f, glideModeTextFunction); - glideRate = p.addExtParam ("gRate", "Glide Rate", "Rate", "s", { 0.001f, 20.0, 0.0, 0.2f }, 0.3f, 0.0f); + glideRate = p.addExtParam ("gRate", "Glide Time", "Time", "s", { 0.001f, 20.0, 0.0, 0.2f }, 0.3f, 0.0f); legato = p.addIntParam ("legato", "Legato", "", "", { 0.0, 1.0, 0.0, 1.0 }, 0.0, 0.0f, enableTextFunction); level = p.addExtParam ("level", "Level", "", "db", { -100.0, 0.0, 1.0, 4.0f }, 0.0, 0.0f); voices = p.addIntParam ("voices", "Voices", "", "", { 2.0, 40.0, 1.0, 1.0 }, 40.0f, 0.0f);