Skip to content

Commit

Permalink
bump version to v0.9.2, use lowercase displaqy for milliseconds (ms)
Browse files Browse the repository at this point in the history
  • Loading branch information
nofishonfriday committed Aug 4, 2022
1 parent e2cbf0b commit bd394ed
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Source/PluginProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ AudioProcessorValueTreeState::ParameterLayout AudioPluginAudioProcessor::createP

using Range = NormalisableRange<float>;

params.add (std::make_unique<AudioParameterFloat> ("DELAY", "Delay (MS)", 5.0f, 100.0f, DELAY_DEFAULT_VAL));
params.add (std::make_unique<AudioParameterFloat> ("DELAY", "Delay (ms)", 5.0f, 100.0f, DELAY_DEFAULT_VAL));
params.add (std::make_unique<AudioParameterFloat> ("MIX", "Mix", Range { 0.0f, 1.0f, 0.01f }, MIX_DEFAULT_VAL));

return params;
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.1
0.9.2
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit bd394ed

Please sign in to comment.