diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b7e5311..35555474 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [Ceiling] 1.0.0-rc.2 - 2026-07-17 + +### Added +- Show Codex banked rate-limit resets on every surface, including an explicit "0 available" so the count stays visible even when none are banked. +- Add a "Send test notification" button in Settings that runs the real Windows toast pipeline and reports whether it was delivered. +- Add Exact and Calm information modes for the floating bar. Calm leads with a trustworthy pace state and the next reset, with exact percentages one keyboard or click away, and never invents an "on pace" state from insufficient data. +- Surface a tracked limit window as "unavailable" when it drops out of an otherwise-successful provider response, instead of silently losing it or fabricating a percentage. + ## [Ceiling] 1.0.0-rc.1 - 2026-07-17 First release candidate for Ceiling 1.0. diff --git a/Cargo.lock b/Cargo.lock index 43d7707a..98acfc25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -664,7 +664,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "codexbar" -version = "1.0.0-rc.1" +version = "1.0.0-rc.2" dependencies = [ "aes-gcm", "anyhow", @@ -705,7 +705,7 @@ dependencies = [ [[package]] name = "codexbar-desktop-tauri" -version = "1.0.0-rc.1" +version = "1.0.0-rc.2" dependencies = [ "chrono", "codexbar", diff --git a/apps/desktop-tauri/package.json b/apps/desktop-tauri/package.json index c0d5c5a4..20e5b69c 100644 --- a/apps/desktop-tauri/package.json +++ b/apps/desktop-tauri/package.json @@ -1,7 +1,7 @@ { "name": "desktop-tauri", "private": true, - "version": "1.0.0-rc.1", + "version": "1.0.0-rc.2", "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 29a16edb..7b42163b 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 = "1.0.0-rc.1" +version = "1.0.0-rc.2" 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 aba96d5c..a8d96e1b 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": "Ceiling", - "version": "1.0.0-rc.1", + "version": "1.0.0-rc.2", "identifier": "io.github.tsouth89.ceiling", "build": { "beforeDevCommand": "pnpm run dev", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index c0529904..d9c164a2 100755 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codexbar" -version = "1.0.0-rc.1" +version = "1.0.0-rc.2" edition = "2024" authors = ["Ceiling Contributors"] description = "Local-first Windows companion for monitoring AI capacity and reset times" diff --git a/version.env b/version.env index 4c38b55f..61b2221a 100755 --- a/version.env +++ b/version.env @@ -1,2 +1,2 @@ -MARKETING_VERSION=1.0.0-rc.1 -BUILD_NUMBER=91 +MARKETING_VERSION=1.0.0-rc.2 +BUILD_NUMBER=92