Burnly v0.1.26
Burnly v0.1.26
Hotfix: corrects Command Code token totals that were double-counting
cache-read tokens.
Highlights
- Fix: Command Code cache-read double-count. Command Code reports
cacheReadTokensas a subset ofinputTokens(the cache-hit portion of the
prompt), not as additional tokens. Burnly was summing them, inflating
Command Code totals by roughly 2x. Today's ~1.8B tokens were really ~920M.
The fix nets input (input - cache_read) and keeps the total honest; cached
tokens remain a breakdown field. - Verified against real data and locked in with a regression test.
Install
Linux
Run:
curl -fsSL https://github.com/fikrilal/burnly/releases/latest/download/install-linux.sh | shFor a pinned install of this release:
curl -fsSL https://github.com/fikrilal/burnly/releases/download/v0.1.26/install-linux.sh | BURNLY_VERSION=v0.1.26 shWindows Preview
Download the Windows x64 installer from this release:
burnly-v0.1.26-windows-x86_64.exe
The Windows preview installer is unsigned for the MVP. Windows may show an
unknown publisher or SmartScreen warning. Only download Burnly from the
official GitHub release.
macOS Preview
Run:
curl -fsSL https://github.com/fikrilal/burnly/releases/latest/download/install-macos.sh | shFor a pinned install of this release:
curl -fsSL https://github.com/fikrilal/burnly/releases/download/v0.1.26/install-macos.sh | BURNLY_VERSION=v0.1.26 shManual .dmg installation is also available:
burnly-v0.1.26-macos-aarch64.dmg
burnly-v0.1.26-macos-x86_64.dmg
Open the .dmg, drag Burnly.app to Applications, then clear Gatekeeper
quarantine once if macOS blocks the unsigned preview build:
xattr -dr com.apple.quarantine /Applications/Burnly.appUpdates
In-app updates are available from the Settings tab on Linux, Windows, and macOS.
On macOS, the .dmg is only the first-install artifact; updates use the signed
.app.tar.gz updater archive from the release.
Verification
- Passed
pnpm verify(578 Rust tests). - Command Code totals verified against raw transcript sums.
Release artifacts include SHA256SUMS. Updater metadata is published as
latest.json; latest-linux.json is kept as a compatibility alias for older
Linux builds.
Notes
- Windows and macOS support is preview.
- Windows and macOS installer code signing is deferred; Tauri updater artifact
signing is still required.