22fa1efabf
- tray: uninstalled launchers now show a "Setup…" entry that spawns the setup wizard as a child process. - setup.rs: download shows a progress bar (bytes / total), and umu-run stdout+stderr stream into a scrollable log pane. A 250 ms tick subscription pulls updates from the shared state. - config add-launcher / remove-launcher CLI, with sensible defaults for prefix_dir, gameid, and process_pattern derived from name/exe. - diagnose: flag stale wineserver processes when no launcher is running, suggesting `umutray kill`. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
41 lines
954 B
TOML
41 lines
954 B
TOML
[package]
|
|
name = "umutray"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Tray-based Wine launcher manager for Linux via umu/Proton-GE"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://git.aleshym.co/funman300/umutray"
|
|
keywords = ["wine", "proton", "umu", "tray", "launcher"]
|
|
categories = ["command-line-utilities", "games"]
|
|
|
|
[[bin]]
|
|
name = "umutray"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# CLI argument parsing
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
# Config serialisation
|
|
serde = { version = "1", features = ["derive"] }
|
|
toml = "0.8"
|
|
|
|
# GitHub API responses
|
|
serde_json = "1"
|
|
|
|
# Error handling
|
|
anyhow = "1"
|
|
|
|
# XDG config / data paths
|
|
directories = "5"
|
|
|
|
# System tray via D-Bus StatusNotifierItem (KDE, GNOME+AppIndicator, Xfce, etc.)
|
|
ksni = "0.2"
|
|
|
|
# HTTP for GE-Proton GitHub releases API
|
|
reqwest = { version = "0.12", features = ["blocking", "json"] }
|
|
|
|
# GUI for the setup wizard
|
|
iced = { version = "0.13", features = ["tokio"] }
|