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: "-"totauri.conf.jsonso Tauri signs the.appduring the build, before the DMG is created. - Removes the now-redundant post-build
codesignstep 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:
Should print
codesign --verify --verbose=2 /Applications/BuffBrain.app
valid on diskandsatisfies 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 - Windows —
BuffBrain_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.