Replace all instances of the legacy product names "Kon" and "Corbie" with "Magnotia" across user-facing copy, code identifiers, package names, bundle ids, file paths, and documentation. Preserves the unrelated "konsole" (KDE terminal) reference and the parent CORBEL company name. - Renames 10 Rust crates (kon-* → magnotia-*) and the tauri binary - Updates package.json, tauri.conf.json (productName + identifier) - Renames CSS classes (kon-rh-* → magnotia-rh-*) and animations - Renames brand and roadmap docs - Regenerates Cargo.lock and package-lock.json Verified: svelte-check passes; pure-rust crates compile under new names.
17 lines
594 B
TOML
17 lines
594 B
TOML
[package]
|
|
name = "magnotia-hotkey"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Wayland-compatible global hotkey listener for Magnotia — evdev backend with device hotplug"
|
|
|
|
[dependencies]
|
|
magnotia-core = { path = "../core" }
|
|
tokio = { version = "1", features = ["rt", "sync", "macros", "time"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
log = "0.4"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
evdev = { version = "0.12", features = ["tokio"] }
|
|
notify = { version = "7", default-features = false, features = ["macos_fsevent"] }
|
|
nix = { version = "0.29", features = ["fs"] }
|