Skip to content

BuffBrain v0.1.3

Latest

Choose a tag to compare

@gautamkishore gautamkishore released this 05 Jun 06:12

BuffBrain v0.1.3

Hotfix for the v0.1.2 macOS install issue.

TL;DR

v0.1.2 was supposed to fix the macOS "damaged file" error but didn't. The fix is in v0.1.3.

What was wrong with v0.1.2

v0.1.2's CI added a codesign step that ran after tauri build. But tauri build had already packaged the unsigned .app into the DMG by then — so the DMG still contained an unsigned .app. The ad-hoc signature never made it into the installer.

What v0.1.3 does differently

  • Adds bundle.macOS.signingIdentity: "-" to tauri.conf.json so Tauri signs the .app during the build, before the DMG is created.
  • Removes the now-redundant post-build codesign step from the CI workflow.

The shipped DMG now contains a properly ad-hoc-signed .app.

Install / verify

  • Download the DMG, drag to /Applications
  • If you see "damaged file" or "developer cannot be verified", use one of the workarounds in the README (right-click → Open is the simplest)
  • After install, you can verify the signature yourself:
    codesign --verify --verbose=2 /Applications/BuffBrain.app
    Should print valid on disk and satisfies its Designated Requirement.

Downloads

  • macOS (Apple Silicon)BuffBrain_0.1.3_aarch64.dmg
  • macOS (Intel)BuffBrain_0.1.3_x64.dmg
  • Linux (Debian/Ubuntu)BuffBrain_0.1.3_amd64.deb
  • WindowsBuffBrain_0.1.3_x64-setup.exe

If v0.1.2 worked for you

No action needed — the .app binary is identical. v0.1.3 only fixes the DMG packaging.