Releases: fikrilal/burnly
Release list
Burnly v0.1.27
What's new
- Zed agent collector — Burnly now reads authoritative local token usage from the Zed editor agent: per-thread cumulative input/output/cache-read/cache-creation tokens, per-request history from Zed's telemetry log, and model attribution (
zed.dev/*). Daily totals are attributed via thread timestamps. - Experimental source — usage is exact (no estimation), but attribution granularity is thread-level.
Fixes
- (Zed collector) none in this release beyond the collector itself.
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.
Burnly v0.1.25
Burnly v0.1.25
Adds a Burnly-owned cost calculator and upgrades the bundled ccusage sidecar.
Highlights
- Burnly cost calculator: sources that report no cost (Grok, Antigravity,
ZCode) now get estimated cost from an embedded models.dev pricing snapshot,
recorded asburnly_calculated. - Gap-fill: when a source reports zero cost with positive tokens and the
snapshot prices the model, Burnly fills the cost — without ever overriding a
positive source-reported or collector-calculated cost. - ccusage 20.0.19: per-agent JSON reports now emit
modelBreakdowns,
resolving the OpenCode "Multiple models" collapse — multi-model OpenCode
days show individual model names. Also includes opencode--since/--until
fixes and codex replay dedupe. - Cost provenance is now explicit: source-reported, collector-calculated,
burnly-calculated, or gap-filled.
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.25/install-linux.sh | BURNLY_VERSION=v0.1.25 shWindows Preview
Download the Windows x64 installer from this release:
burnly-v0.1.25-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.25/install-macos.sh | BURNLY_VERSION=v0.1.25 shManual .dmg installation is also available:
burnly-v0.1.25-macos-aarch64.dmg
burnly-v0.1.25-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 verifyon both merged feature branches. - Cost calculator runtime evidence: Antigravity gains
burnly_calculated
cost; Command Codesource_reportedand Codex/OpenCode
collector_calculatedcosts preserved. - Privacy scan clean; calculator is pure token arithmetic over an embedded
pricing snapshot.
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
- Cost is an estimate (models.dev community pricing), not a bill.
- Antigravity model labels and ZCode model ids may not match the pricing
snapshot's id format; those resolve to cost-unavailable until label→id
mapping is added. - Command Code remains experimental; its local transcript format is
reverse-engineered and may change upstream. - Windows and macOS support is preview.
- Windows and macOS installer code signing is deferred; Tauri updater artifact
signing is still required.
Burnly v0.1.24
Burnly v0.1.24
Adds Command Code as an experimental source: Burnly can now track token usage
from the Command Code CLI by reading its local session transcripts.
Highlights
- New experimental source: Command Code (
command-code). - Reads per-message
usageblocks from
~/.commandcode/projects/**/<session>.jsonltranscripts. - Daily and session totals with per-model breakdowns; cost is the
provider-reportedcostUsdestimate (e.g. DeepSeek). - Strict privacy boundary: Burnly never reads prompt/tool content, checkpoints,
history, or auth credentials. - Legacy pre-1.11 transcripts carry no usage and are skipped.
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.24/install-linux.sh | BURNLY_VERSION=v0.1.24 shWindows Preview
Download the Windows x64 installer from this release:
burnly-v0.1.24-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.24/install-macos.sh | BURNLY_VERSION=v0.1.24 shManual .dmg installation is also available:
burnly-v0.1.24-macos-aarch64.dmg
burnly-v0.1.24-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.
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
- Command Code is experimental; its local transcript format is reverse-engineered
and may change upstream. Historical usage before the Command Code 1.11 upgrade
is not backfilled. - Windows and macOS support is preview.
- Windows and macOS installer code signing is deferred; Tauri updater artifact
signing is still required.
Burnly v0.1.23
Burnly v0.1.23
Fixes desktop sign-in so production builds open the production web login.
Highlights
- Uses
https://burnly.dev/loginfor desktop browser sign-in by default. - Uses
https://api.burnly.devfor cloud API and token exchange calls. - Keeps
BURNLY_WEB_ORIGIN,BURNLY_API_BASE_URL, and
BURNLY_DESKTOP_REDIRECT_URIavailable for local development overrides.
Install
Universal Installer
Linux and macOS:
curl -fsSL https://github.com/fikrilal/burnly/releases/latest/download/install.sh | shWindows PowerShell:
irm https://github.com/fikrilal/burnly/releases/latest/download/install.ps1 | iexLinux
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.23/install-linux.sh | BURNLY_VERSION=v0.1.23 shWindows Preview
Download the Windows x64 installer from this release:
burnly-v0.1.23-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.23/install-macos.sh | BURNLY_VERSION=v0.1.23 shManual .dmg installation is also available:
burnly-v0.1.23-macos-aarch64.dmg
burnly-v0.1.23-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
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.
Burnly v0.1.22
Burnly v0.1.22
Introduces sign-in support for cloud sync.
Highlights
- Adds the production cloud API target for account and sync calls:
https://api.burnly.dev. - Keeps local development override support through
BURNLY_API_BASE_URL. - Stops treating an absent optional ZCode installation as a diagnostics warning.
Install
Universal Installer
Linux and macOS:
curl -fsSL https://github.com/fikrilal/burnly/releases/latest/download/install.sh | shWindows PowerShell:
irm https://github.com/fikrilal/burnly/releases/latest/download/install.ps1 | iexLinux
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.22/install-linux.sh | BURNLY_VERSION=v0.1.22 shWindows Preview
Download the Windows x64 installer from this release:
burnly-v0.1.22-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.22/install-macos.sh | BURNLY_VERSION=v0.1.22 shManual .dmg installation is also available:
burnly-v0.1.22-macos-aarch64.dmg
burnly-v0.1.22-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
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.
Burnly v0.1.21
Burnly v0.1.21
Improves Claude Code collection compatibility and refresh diagnostics.
Highlights
- Accepts the current
ccusageClaude Code session field names while retaining
compatibility with the legacy activity field names. - Adds coverage for real Claude session envelopes, empty reports, malformed JSON,
incompatible envelopes, and optional project paths. - Records the source, projection, and failure code when an individual refresh
target hard-fails, making partial refresh failures visible in diagnostics.
Install
Universal Installer
Linux and macOS:
curl -fsSL https://github.com/fikrilal/burnly/releases/latest/download/install.sh | shWindows PowerShell:
irm https://github.com/fikrilal/burnly/releases/latest/download/install.ps1 | iexLinux
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.21/install-linux.sh | BURNLY_VERSION=v0.1.21 shWindows Preview
Download the Windows x64 installer from this release:
burnly-v0.1.21-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.21/install-macos.sh | BURNLY_VERSION=v0.1.21 shManual .dmg installation is also available:
burnly-v0.1.21-macos-aarch64.dmg
burnly-v0.1.21-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
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.
Burnly v0.1.20
Burnly v0.1.20
Improves Burnly distribution and release automation.
Highlights
- Adds universal one-command installers:
- Linux/macOS:
install.sh - Windows:
install.ps1
- Linux/macOS:
- Keeps platform-specific installers available for pinned or manual installs.
- Speeds up release CI by avoiding duplicate full verification work and caching Rust build outputs.
Install
Universal Installer
Linux and macOS:
curl -fsSL https://github.com/fikrilal/burnly/releases/latest/download/install.sh | shWindows PowerShell:
irm https://github.com/fikrilal/burnly/releases/latest/download/install.ps1 | iexLinux
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.20/install-linux.sh | BURNLY_VERSION=v0.1.20 shWindows Preview
Download the Windows x64 installer from this release:
burnly-v0.1.20-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.20/install-macos.sh | BURNLY_VERSION=v0.1.20 shManual .dmg installation is also available:
burnly-v0.1.20-macos-aarch64.dmg
burnly-v0.1.20-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:fast. - Passed release workflow policy checks.
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.
Burnly v0.1.19
Burnly v0.1.19
Enables launch at login by default under Settings.
Highlights
- Under Settings, launch at login is now enabled by default to ensure the tray panel is always ready on startup.
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.19/install-linux.sh | BURNLY_VERSION=v0.1.19 shWindows Preview
Download the Windows x64 installer from this release:
burnly-v0.1.19-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.19/install-macos.sh | BURNLY_VERSION=v0.1.19 shManual .dmg installation is also available:
burnly-v0.1.19-macos-aarch64.dmg
burnly-v0.1.19-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.
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.
Burnly v0.1.18
Burnly v0.1.18
Adds experimental native support for Grok Build CLI local token usage.
Highlights
- Adds a first-party Grok Build collector that reads
shell.turn.inference_done
rows from~/.grok/logs/unified.jsonland joins session metadata from
~/.grok/sessions/**/summary.json. - Counts each model inference call toward tray totals, not each user turn.
- Includes cached prompt tokens in tray totals;
cache_read_tokensremains
breakdown metadata only. - Stores Grok usage in a durable local cache so refresh can recover from partial
upstream log changes without clearing previously imported totals. - Updates README, product docs, and runtime evidence for the experimental Grok
collector rollout.
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.18/install-linux.sh | BURNLY_VERSION=v0.1.18 shWindows Preview
Download the Windows x64 installer from this release:
burnly-v0.1.18-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.18/install-macos.sh | BURNLY_VERSION=v0.1.18 shManual .dmg installation is also available:
burnly-v0.1.18-macos-aarch64.dmg
burnly-v0.1.18-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.
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
- Grok Build support is experimental. Grok local formats are reverse-engineered
and may change upstream. - Grok cost is unavailable in v1.
- Burnly never reads Grok chat transcripts, ACP updates, prompt history,
terminal logs, or auth credentials for normal usage aggregation. - Antigravity, ZCode, and Cline CLI support remain experimental.
- macOS and Windows builds are unsigned previews. macOS Apple Developer ID
signing/notarization and Windows installer code signing are deferred; Tauri
updater artifact signing is still required.