Skip to content

Commit 3b79243

Browse files
author
zhangzhengtian02
committed
Release v1.1.0
1 parent 962e3fa commit 3b79243

9 files changed

Lines changed: 25 additions & 8 deletions

File tree

.github/workflows/build-macos.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
-framework SwiftUI \
4545
-framework Carbon \
4646
-framework UserNotifications \
47+
-framework WebKit \
4748
-lsqlite3 \
4849
-O \
4950
-target ${{ matrix.arch }}-apple-macosx12.0

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## v1.1.0 (2026-06-29)
4+
5+
### Windows Tray
6+
- Add the Windows Tauri tray MVP with a bundled dashboard shell and single-instance guard.
7+
- Start the Python web dashboard in desktop-shell mode with structured startup output and health monitoring.
8+
- Add local-only external browser opening and clearer failed/running/stopped status handling.
9+
10+
### Sources & Dashboard
11+
- Add a shared source registry for Claude, Codex, Gemini, and Cursor session sources.
12+
- Improve dashboard caching and source/project filtering for the cross-platform shell.
13+
- Add Gemini JSONL and Cursor composer session parsing coverage.
14+
15+
### Release
16+
- Sync Windows tray shell package, Cargo, and Tauri versions with the cc-statistics release version.
17+
- Link WebKit in the macOS release build workflow to match the local wheel build script.
18+
319
## v1.0.4 (2026-06-12)
420

521
### Pricing

cc_stats/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ def _read_source_version() -> str | None:
2323
try:
2424
__version__ = version("cc-statistics")
2525
except PackageNotFoundError:
26-
__version__ = "1.0.4"
26+
__version__ = "1.1.0"

desktop/cc-stats-tauri/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

desktop/cc-stats-tauri/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cc-stats-tauri",
3-
"version": "0.1.0",
3+
"version": "1.1.0",
44
"private": true,
55
"type": "module",
66
"scripts": {

desktop/cc-stats-tauri/src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

desktop/cc-stats-tauri/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cc-stats-tauri"
3-
version = "0.1.0"
3+
version = "1.1.0"
44
description = "Windows tray shell for CC Statistics"
55
authors = ["androidZzT"]
66
license = "MIT"

desktop/cc-stats-tauri/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "CC Statistics",
4-
"version": "0.1.0",
4+
"version": "1.1.0",
55
"identifier": "com.androidzzt.ccstatistics.windows",
66
"build": {
77
"beforeDevCommand": "npm run dev:web",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "cc-statistics"
7-
version = "1.0.4"
7+
version = "1.1.0"
88
description = "Claude Code 会话统计工具 — 分析 AI Coding 工程指标"
99
requires-python = ">=3.10"
1010
dependencies = []

0 commit comments

Comments
 (0)