mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-28 19:01:13 +00:00
Platform-aware install kinds: Linux AppImage and macOS self-install in place; Windows defers — the update downloads and verifies in the background, then the NSIS installer runs only from the user-confirmed restart (Tauri's installer launch exits the process, so it must never fire behind a silent auto-check). Linux system packages stay notify-only. The release workflow gains dispatch-gated unsigned macOS/Windows test bundles signed with the same minisign key, and a separate desktop-test update channel: latest.json stays Linux-only on every release, while an opt-in fixed 'desktop-test' prerelease hosts latest-desktop-test.json (monotonic version guard) so Linux-only releases can never strand distributed test builds. Build jobs check out the SHA the validation job resolved, closing the tag-move race.
30 lines
843 B
TOML
30 lines
843 B
TOML
[package]
|
|
name = "openclaw-desktop-linux"
|
|
version = "0.1.0"
|
|
description = "OpenClaw desktop companion for Linux"
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
|
|
[[bin]]
|
|
name = "openclaw-desktop"
|
|
path = "src/main.rs"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.6.3", features = [] }
|
|
|
|
[dependencies]
|
|
base64 = "0.22.1"
|
|
image = { version = "0.25.10", default-features = false, features = ["jpeg", "png"] }
|
|
mdns-sd = { version = "0.20", default-features = false }
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.150"
|
|
tauri = { version = "2.11.5", features = ["image-png", "tray-icon"] }
|
|
tauri-plugin-opener = "2.5.4"
|
|
tauri-plugin-process = "2.3.1"
|
|
tauri-plugin-updater = "2.10.1"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
cairo-rs = { version = "0.18.5", features = ["png"] }
|
|
libc = "0.2.186"
|
|
webkit2gtk = "2.0.2"
|