mirror of
https://github.com/qingchencloud/clawpanel.git
synced 2026-05-29 20:30:00 +08:00
See CHANGELOG.md for the full notes. Highlights: - feat(hermes): 50+ visual config panels covering session runtime, model management, terminal/sandbox, kanban, safety/privacy, display, browser, voice and toolsets — replaces hand-editing ~/.hermes/config.yaml. - feat(hermes): maintenance/upgrade controls (Update Backup, Session Store Maintenance, Curator Maintenance). - feat(channels): 14 new channels (iMessage / WhatsApp / Telegram / Discord plugin runtime / Signal / Microsoft Teams / LINE / Mattermost / Synology / Google Chat / Zalo / DingTalk / Tlon / IRC / Nostr / Twitch / Nextcloud Talk / ClickClack), unified channel editor, SecretRef preservation, multi-account save, generic diagnostics. - fix(hermes): critical upstream 0.14.0 missing pieces compensated (dashboard_auth stubs + web_dist index.html injected at install/update/ start; idempotent + self-yielding when upstream ships the real files). - fix(hermes): upgrade path now installs runtime extras (croniter / httpx / openai / aiohttp / websockets) to prevent post-upgrade Gateway crashes. - fix(hermes): hermes_venv_python now resolves uv-tool install paths so '可选依赖管理' / 多 Gateway 看板 stop falsely reporting 'venv not found'. - fix(hermes): group-chat page no longer renders run_id as the reply text; it now listens to hermes-run-done and reads payload.output. - fix: dashboard race condition (#301), Node.js nvm-managed version detection (#295), agent models sync with merged openclaw.json (#297). Hot-update minAppVersion bumped to 0.17.0 because src-tauri/src/lib.rs registers 40+ new Tauri commands — older desktop builds must NOT pull this frontend via hot-update or they will hit missing-command crashes.
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[package]
|
|
name = "clawpanel"
|
|
version = "0.17.0"
|
|
edition = "2021"
|
|
description = "ClawPanel - OpenClaw 可视化管理面板"
|
|
authors = ["qingchencloud"]
|
|
repository = "https://github.com/qingchencloud/clawpanel"
|
|
homepage = "https://github.com/qingchencloud/clawpanel"
|
|
license = "AGPL-3.0"
|
|
|
|
[lib]
|
|
name = "clawpanel_lib"
|
|
crate-type = ["lib", "cdylib", "staticlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["tray-icon", "image-png"] }
|
|
tauri-plugin-shell = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_yaml = "0.9"
|
|
dirs = "6"
|
|
chrono = "0.4"
|
|
zip = { version = "2", default-features = false, features = ["deflate"] }
|
|
reqwest = { version = "0.12", features = ["json", "rustls-tls", "stream", "gzip", "brotli", "deflate"], default-features = false }
|
|
futures-util = "0.3"
|
|
ed25519-dalek = { version = "2", features = ["rand_core"] }
|
|
sha2 = "0.10"
|
|
rand = "0.8"
|
|
base64 = "0.22"
|
|
urlencoding = "2"
|
|
regex = "1"
|
|
tokio = { version = "1", features = ["process", "time", "sync"] }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
flate2 = "1"
|
|
tar = "0.4"
|
|
|
|
[target.'cfg(any(target_os = "macos", windows, target_os = "linux"))'.dependencies]
|
|
tauri-plugin-autostart = "2"
|