From bd394edf9ec218363c5d16f4733ea26f528934ea Mon Sep 17 00:00:00 2001 From: nofish Date: Thu, 4 Aug 2022 16:52:11 +0200 Subject: [PATCH] bump version to v0.9.2, use lowercase displaqy for milliseconds (ms) --- README.md | 2 +- Source/PluginProcessor.cpp | 2 +- VERSION | 2 +- changelog.txt | 3 +++ 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b945c52..7cd5a6f 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A simple cross-platform (Win, MacOS, Linux)* [CLAP](https://u-he.com/community/c ![plugin_screenshot](plugin_screenshot.jpg) Binaries are found under [Releases](https://github.com/nofishonfriday/Lauridsen-Schodder-Stereo-plugin/releases). -Current version: v0.9.1 - July 5 2022 +Current version: v0.9.2 - August 5 2022 Implementation is simple: A delayed copy of the left channel is sent to the right channel and v.v., additionally the polarity is flipped on one copy. diff --git a/Source/PluginProcessor.cpp b/Source/PluginProcessor.cpp index 84594f7..37f3071 100644 --- a/Source/PluginProcessor.cpp +++ b/Source/PluginProcessor.cpp @@ -255,7 +255,7 @@ AudioProcessorValueTreeState::ParameterLayout AudioPluginAudioProcessor::createP using Range = NormalisableRange; - params.add (std::make_unique ("DELAY", "Delay (MS)", 5.0f, 100.0f, DELAY_DEFAULT_VAL)); + params.add (std::make_unique ("DELAY", "Delay (ms)", 5.0f, 100.0f, DELAY_DEFAULT_VAL)); params.add (std::make_unique ("MIX", "Mix", Range { 0.0f, 1.0f, 0.01f }, MIX_DEFAULT_VAL)); return params; diff --git a/VERSION b/VERSION index f514a2f..f76f913 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.1 \ No newline at end of file +0.9.2 \ No newline at end of file diff --git a/changelog.txt b/changelog.txt index a297d61..c8e093e 100644 --- a/changelog.txt +++ b/changelog.txt @@ -3,3 +3,6 @@ v0.9 - July 4 2022 v0.9.1 - July 5 2022 + change internal processing, can now do smaller delay times (thanks @JUCE forum) + + v0.9.2 - August 4 2022 + # use lowercase for milliseconds display (ms)