Skip to content

Doobie v0.22.0

Choose a tag to compare

@github-actions github-actions released this 03 Jul 20:07
· 27 commits to main since this release

macOS build is currently unsigned

Doobie's Apple Developer agreement is in the process of being
re-accepted. While that's pending, the macOS build ships as an
unsigned .zip instead of the usual signed + notarized .pkg
installer. Drop the bundles into:

~/Library/Audio/Plug-Ins/Components/Doobie.component
~/Library/Audio/Plug-Ins/VST3/Doobie.vst3
/Applications/Doobie.app (or anywhere)

Then strip the Gatekeeper quarantine attribute once per bundle:

xattr -cr ~/Library/Audio/Plug-Ins/Components/Doobie.component
xattr -cr ~/Library/Audio/Plug-Ins/VST3/Doobie.vst3
xattr -cr /Applications/Doobie.app

Or install via the Homebrew tap, which does the xattr step for you:

brew tap DatanoiseTV/doobie
brew install --cask doobie

Linux is unaffected (no signing concept).


Added

  • CLAP plug-in format. Doobie now also builds as a CLAP alongside the
    AU / VST3 / Standalone formats, via clap-juce-extensions (vendored under
    external/clap-juce-extensions with the CLAP SDK as nested submodules).
    Tagged audio-effect delay stereo; installs to
    /Library/Audio/Plug-Ins/CLAP (macOS) or ~/.clap / /usr/local/lib/clap
    (Linux). Released binaries (macOS installer, Linux tarball) include it.

Fixed

  • Reverb controls no longer clipped in the tall reverb modes. The plugin
    canvas had a fixed height with overflow: hidden, so the reverb column —
    which grows to ~779 px in Gated and Shimmer (interval-chip row + decay
    graph) — overlapped the output bar and clipped at the bottom, and on
    startup the overflow made the centred content look shifted. The canvas is
    now content-driven and both fit-to-window scalers measure the plugin's
    natural height instead of a hard-coded value, re-fitting when the reverb
    mode changes the column height.