Bug-fix release on top of v0.6.1.
Fixed
- Windows binary exits immediately (#7): the default
BINDERY_DB_PATHwas hardcoded to the Linux-container path/config/bindery.db. On Windows,os.MkdirAll("/config", …)failed, the preflight write probe returned an error, and because the process was spawned from an Explorer double-click the cmd window closed before the user could read the log line. Defaults are now platform-aware viaos.UserConfigDir:%APPDATA%\Bindery\bindery.dbon Windows,~/Library/Application Support/Bindery/bindery.dbon macOS, unchanged/config/bindery.dbon Linux (existing Docker / Helm / bare-metal deployments are untouched). The resolved paths are emitted in the"starting bindery"startup log line sobindery.exeruns fromcmdwill surface them even if db.Open later fails. - Header nav overflowed into a horizontal scrollbar at mid viewport widths (≈768–1024px). Desktop nav + version label + sign-out now collapse into the hamburger menu at
lg(1024px) instead ofmd(768px), and the right-hand cluster isflex-shrink-0so it stops being squeezed by the nav tabs.
Changed
- CI now uploads Go coverage to Codecov (
codecov/codecov-action@v5) on both the build and validate jobs, with a.codecov.ymlthat marks project/patch checks as informational so coverage dips don't block PRs.