🎉 Stable Release v3.4.1
Multi-Architecture Binaries
Download the appropriate binary for your platform:
- Linux x86_64:
better-ccflare-linux-amd64 - Linux ARM64 (Raspberry Pi 3/4/5, Oracle Cloud ARM, AWS Graviton):
better-ccflare-linux-arm64 - macOS Intel:
better-ccflare-macos-x86_64 - macOS Apple Silicon:
better-ccflare-macos-arm64 - Windows x86_64:
better-ccflare-windows-x64.exe
Installation
# Linux x86_64
wget https://github.com/tombii/better-ccflare/releases/download/v3.4.1/better-ccflare-linux-amd64
chmod +x better-ccflare-linux-amd64
./better-ccflare-linux-amd64
# macOS Apple Silicon (ARM64)
curl -L -o better-ccflare-macos-arm64 https://github.com/tombii/better-ccflare/releases/download/v3.4.1/better-ccflare-macos-arm64
chmod +x better-ccflare-macos-arm64
xattr -d com.apple.quarantine better-ccflare-macos-arm64 # Required for unsigned binaries
./better-ccflare-macos-arm64macOS Users: The xattr command is required to bypass Gatekeeper for unsigned binaries. If you prefer not to run unsigned binaries, install from source instead.
Or install via npm: npm install -g better-ccflare@v3.4.1
What's Changed
🚀 Features
- feat: add getSessionStats() to StatsRepository (
0536592) - feat: add Codex auto-refresh and session window reset detection (
0542aeb) - feat: display session plan/api cost breakdown on account cards (
6563932) - feat: add per-account plan/api cost fields to analytics (
7da3490) - feat: show per-account plan and api values in overview (
8e6e942) - feat: include session window token stats in accounts API response (
94f112c) - feat: add planCostUsd and apiCostUsd to SessionStats type (
998b700) - feat: add sessionStats field to AccountResponse type (
af4017c) - feat: include plan/api cost in getSessionStats aggregation (
c383e6b) - feat: display 5h session token breakdown inline on account cards (
d9deb40)
🐛 Bug Fixes
- fix(ui): move session stats to full-width row below account header (
137791a) - fix: reset session stats when usage window resets for anthropic and zai (
417de76) - fix: allow auto-refresh toggle for Codex accounts in UI and API (
4323f8a) - fix(docs): update DOCKER.md to direct users to Web UI for account management (
5476f24) - fix: add auto-refresh dummy message support for Zai accounts (
a45627a) - fix: add request headers and timeout to anthropic usage fetcher (
a53905f) - fix: reduce CLAUDE.md diagnostic log noise (
b0e5a3a) - fix: ignore empty Codex placeholder usage windows (
bfcf90c) - fix(ui): move session stats outside flex row so it renders on its own line (
d8069cc) - fix: Codex auto-refresh 400 errors and missing rate_limit_reset tracking (
e2e4618) - fix: only show session stats for session-tracking providers (anthropic, codex, zai) (
f60caf0)
🔧 Improvements
- improve: always use subagent-driven development for plan execution (
360813d) - improve(ui): polish combos tab layout and alignment (
9e87210) - improve(ui): move session stats to a new row below account info (
b7f2ffa)