mirror of
https://github.com/NanmiCoder/cc-haha
synced 2026-07-17 13:13:35 +08:00
The post-v0.2.2 changes are now summarized in the release body with the user-facing highlights first, while process-only H5 hardening is described as part of the new feature instead of old-version bug fixes. Desktop and Tauri version files are aligned to the release note version. Constraint: GitHub Release body is sourced from release-notes/vX.Y.Z.md in the tagged commit Constraint: Problem fixes should describe issues users could have seen in prior releases, not internal fixups for unreleased work Rejected: Put every fix commit under 问题修复 | mixes development cleanup with released-user regressions Confidence: high Scope-risk: narrow Tested: git diff --check Tested: git diff --cached --check Tested: bun run scripts/release.ts 0.2.3 --dry Tested: version consistency check for desktop package, Tauri config, Cargo.toml, and Cargo.lock Not-tested: Full bun run verify; release note and version bump only
27 lines
643 B
TOML
27 lines
643 B
TOML
[package]
|
|
name = "claude-code-desktop"
|
|
version = "0.2.3"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "claude_code_desktop_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "=2.5.6", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "=2.10.3", features = ["tray-icon"] }
|
|
tauri-runtime = "=2.10.1"
|
|
tauri-runtime-wry = "=2.10.1"
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-process = "2"
|
|
tauri-plugin-updater = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
anyhow = "1.0.102"
|
|
portable-pty = "0.9.0"
|
|
tauri-plugin-notification = "2"
|
|
tauri-plugin-single-instance = "2"
|