Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/desktop-tauri/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop-tauri/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion apps/desktop-tauri/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions version.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
MARKETING_VERSION=1.0.0-rc.1
BUILD_NUMBER=91
MARKETING_VERSION=1.0.0-rc.2
BUILD_NUMBER=92
Loading