Skip to content

Doobie v0.23.2

Choose a tag to compare

@github-actions github-actions released this 03 Jul 22:47
· 10 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).


Fixed

  • Mod-matrix sources LFO 3 / LFO 4 / Env are now selectable. The slot Source
    list stopped at four entries, so LFO 3/4 and the envelope follower were
    unreachable and choosing "Env" silently routed LFO 3. Four factory presets
    that use the envelope follower (auto-wah / envelope-following pan / feedback)
    now run it as designed instead of an LFO.
  • Editor opens at a size that fits the display. The aspect-locked window no
    longer opens off-screen on laptops — it uses the design size when it fits, or
    the largest proportional box within the screen otherwise.
  • Bi/Uni toggle in the modulation matrix no longer squished. The MODE column
    was too narrow for the segmented control and clipped "UNI".
  • WebView health watchdog no longer false-positives on a blank mount. The
    ready signal is now set only after a real first commit (plus a React error
    boundary), instead of unconditionally on a timer.