- Add hbb_common as git submodule (was missing) - Add Tauri sidecar configuration for RustDesk binary - Implement Rust backend IPC commands: - start_rustdesk: Launch RustDesk sidecar process - stop_rustdesk: Kill running RustDesk process - get_rustdesk_status: Check if RustDesk is running - connect_to_peer: Connect to a remote peer by ID - Create RemoteDesktop JS component with: - Peer ID input and connect/disconnect buttons - Real-time status indicator (disconnected/connecting/connected/error) - Recent connections list with quick reconnect - Tauri event listener for backend status updates - Add Remote Desktop taskbar button (remote_login icon) - Add full CSS styling with glassmorphism design - Create binaries/ directory with build instructions - Update capabilities with shell:allow-spawn permission - Add tokio dependency for async runtime
16 lines
353 B
TOML
16 lines
353 B
TOML
[package]
|
|
name = "shelled-os-ui"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
authors = ["you"]
|
|
edition = "2021"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["full"] }
|