- uinput injection is now primary on X11 (XTest fallback) - X11 XTest keycode offset +8 fixed for all send_keycode paths - Window switch detection on every keystroke (no more gap > 100ms guard) - Telex greyed out in tray with '(next version)' label - Flatpak and AppImage removed; only .deb packaging - All Cargo.toml versions bumped to 0.1.6
23 lines
465 B
TOML
23 lines
465 B
TOML
[package]
|
|
name = "vietc-daemon"
|
|
version = "0.1.6"
|
|
edition = "2021"
|
|
description = "Viet+ background daemon"
|
|
|
|
[[bin]]
|
|
name = "vietc"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
default = ["x11", "wayland"]
|
|
x11 = ["vietc-protocol/x11"]
|
|
wayland = ["vietc-protocol/wayland-protocol"]
|
|
|
|
[dependencies]
|
|
vietc-engine = { path = "../engine" }
|
|
vietc-protocol = { path = "../protocol" }
|
|
toml = "0.8"
|
|
serde = { version = "1", features = ["derive"] }
|
|
evdev = "0.12"
|
|
libc = "0.2"
|
|
dirs = "5"
|