- Replace GTK header bar with buttonless version to work around upstream bug where CSD buttons become non-interactive after hide()/show() (tauri-apps/tauri#11856, tauri-apps/tao#1046) - Tray menu now toggles between "Hide Claude" / "Show Claude" - Left-click tray icon toggles window visibility - Fix quit from tray (use std::process::exit to bypass keep-alive) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
569 B
TOML
23 lines
569 B
TOML
[package]
|
|
name = "claude-app"
|
|
version = "1.0.0"
|
|
description = "Claude desktop app"
|
|
edition = "2021"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["tray-icon", "image-png"] }
|
|
tauri-plugin-notification = "2"
|
|
tauri-plugin-opener = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
url = "2"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
gtk = { version = "0.18", features = ["v3_24"] }
|
|
|
|
[features]
|
|
default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|