Skip to content

Tags: yonie/WetDelay

Tags

v1.2.1

Toggle v1.2.1's commit message
WetDelay 1.2.1 - level meters read in dB

v1.2.0

Toggle v1.2.0's commit message
WetDelay 1.2.0 - UI Zoom

v1.1.5

Toggle v1.1.5's commit message
WetDelay 1.1.5

Fixes the resampler overshoot that caused rare clicks growing worse the longer
the plugin ran, worst at small buffer sizes. Same delay times, same character.

v1.1.4

Toggle v1.1.4's commit message
fix: register custom views to fix missing GUI in FL Studio 2025

registerCustomViews() was never called in the controller, unlike
WetReverb. Without it the linker can strip the custom view creators,
causing VSTGUI to fail instantiating the editor.

Bump version to 1.1.4.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

v1.1.4-pre-backup

Toggle v1.1.4-pre-backup's commit message
fix: register custom views to fix missing GUI in FL Studio 2025

registerCustomViews() was never called in the controller, unlike
WetReverb. Without it the linker can strip the custom view creators,
causing VSTGUI to fail instantiating the editor.

Bump version to 1.1.4.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

v1.1.4-pre

Toggle v1.1.4-pre's commit message
fix: register custom views to fix missing GUI in FL Studio 2025

registerCustomViews() was never called in the controller, unlike
WetReverb. Without it the linker can strip the custom view creators,
causing VSTGUI to fail instantiating the editor.

Bump version to 1.1.4.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

v1.1.3

Toggle v1.1.3's commit message
bump version to v1.1.3

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

v1.1.1

Toggle v1.1.1's commit message
fix: selected delay time not remembered across DAW sessions

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

v1.1.2

Toggle v1.1.2's commit message
Reduce noise floor to -78 dB using companding

Apply Roland SDE-3000-style companding around 12-bit quantization:
boost signal 2x before quantization, attenuate after. This halves
the effective LSB from 1/4096 to 1/8192 (-78.3 dBFS) while
preserving 12-bit character. Remove redundant noise floor injection.

v1.1.0

Toggle v1.1.0's commit message
Fix: macOS meter updates using outputParameterChanges

Switched from IMessage-based meter updates to the standard VST3
outputParameterChanges mechanism. This ensures meters update correctly
across all platforms (macOS, Windows, Linux) through the host's
parameter relay system.

- Processor: writes meter values to data.outputParameterChanges
- Removed IMessage-based sendMeterData() and notify() handler
- Removed idle-based redraw hack from LEDMeterView (framework handles it)
- VSTGUI's ParameterChangeListener + IdleUpdateHandler now drive updates