diff --git a/CHANGELOG.md b/CHANGELOG.md index d91ec78954..3c183937ac 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## [Windows] 0.55.0 - 2026-08-25 + +Windows port of upstream CodexBar **0.54.0 → 0.55.0**, plus the Windows Grok OAuth routing fix from issue #362. + +### Added +- Command Code: individual-pro-v1 Pro tier with the current monthly credit grant. +- Cursor: Grok Bot usage window and tokscale-compatible local spend import. +- Antigravity: tokscale-compatible local spend, offline conversation fallback, agy authentication guidance, and retired Flash model aliases. +- Kiro: overage limits and charges from GetUsageLimits. +- z.ai: China account balance enrichment. +- Alibaba Token Plan: Personal/Solo SEC_TOKEN dashboard extraction. +- Codex: tokscale-compatible cached-token, bare-usage, stale-snapshot, and reasoning accounting parity. + +### Changed +- Usage & Spend refreshes silently when provider data changes and loads independent provider baselines in parallel. +- OpenCodex bulk pricing reuses one shared models.dev pricing snapshot. +- OpenRouter management spend uses completed UTC days for the rolling 30-day window. +- Simplified Chinese session quota labels use explicit whole-hour durations and map weekly-duration windows to the weekly label. +- Agent session names truncate safely in the desktop UI. +- Single-meaningful-quota tray icons use the full meter while multi-quota icons keep distinct lanes. + +### Fixed +- Grok preserves unknown-period usage instead of displaying it as zero. +- Grok Auto/OAuth routing works when browser cookies are disabled (#362). +- Alibaba retries successful-but-empty usage responses and sends navigation headers on the dashboard request that renders SEC_TOKEN. +- Gemini shutdown guidance preserves paid/workspace exclusions. + +--- + ## [Windows] 0.54.0 - 2026-08-22 Windows port of upstream CodexBar **0.53.0 → 0.54.0**. diff --git a/Cargo.lock b/Cargo.lock index e4f793dcbf..3a741aa397 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -655,7 +655,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "codexbar" -version = "0.54.0" +version = "0.55.0" dependencies = [ "aes-gcm", "anyhow", @@ -695,7 +695,7 @@ dependencies = [ [[package]] name = "codexbar-desktop-tauri" -version = "0.54.0" +version = "0.55.0" dependencies = [ "chrono", "codexbar", diff --git a/apps/desktop-tauri/package.json b/apps/desktop-tauri/package.json index 231cd5504a..55883f470d 100644 --- a/apps/desktop-tauri/package.json +++ b/apps/desktop-tauri/package.json @@ -1,7 +1,7 @@ { "name": "desktop-tauri", "private": true, - "version": "0.54.0", + "version": "0.55.0", "packageManager": "pnpm@10.18.1", "type": "module", "scripts": { diff --git a/apps/desktop-tauri/src-tauri/Cargo.toml b/apps/desktop-tauri/src-tauri/Cargo.toml index ed206da8c3..72c1758fb1 100644 --- a/apps/desktop-tauri/src-tauri/Cargo.toml +++ b/apps/desktop-tauri/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codexbar-desktop-tauri" -version = "0.54.0" +version = "0.55.0" edition = "2024" publish = false diff --git a/apps/desktop-tauri/src-tauri/tauri.conf.json b/apps/desktop-tauri/src-tauri/tauri.conf.json index 6e00f3dc59..6f7616e17a 100644 --- a/apps/desktop-tauri/src-tauri/tauri.conf.json +++ b/apps/desktop-tauri/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "CodexBar Desktop", - "version": "0.54.0", + "version": "0.55.0", "identifier": "com.codexbar.desktop", "build": { "beforeDevCommand": "pnpm run dev", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 4dc6b12554..81b409322d 100755 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codexbar" -version = "0.54.0" +version = "0.55.0" edition = "2024" authors = ["CodexBar Contributors"] description = "Windows and WSL system tray app for monitoring AI provider usage limits" diff --git a/version.env b/version.env index 3aa19d0b0b..f8f072586f 100755 --- a/version.env +++ b/version.env @@ -1,2 +1,2 @@ -MARKETING_VERSION=0.54.0 +MARKETING_VERSION=0.55.0 BUILD_NUMBER=90