Version 0.8.9

pull/346/head v0.8.9
Takashi Kokubun 8 months ago
parent e8c8b75724
commit 48849ad582

@ -1,3 +1,8 @@
## v0.8.9
- Introduce `wlroots` support [#345](https://github.com/k0kubun/xremap/issues/345)
- `sway` and `hypr` users are encourated to switch to this
## v0.8.8
- Let `keypress_delay_ms` delay key releases as well [#341](https://github.com/k0kubun/xremap/issues/341)

2
Cargo.lock generated

@ -1861,7 +1861,7 @@ dependencies = [
[[package]]
name = "xremap"
version = "0.8.8"
version = "0.8.9"
dependencies = [
"anyhow",
"clap",

@ -1,6 +1,6 @@
[package]
name = "xremap"
version = "0.8.8"
version = "0.8.9"
edition = "2021"
description = "Dynamic key remapp for X and Wayland"
license = "MIT"
@ -37,4 +37,4 @@ sway = ["swayipc"]
x11 = ["x11rb"]
hypr = ["hyprland"]
kde = ["zbus"]
wlroots = ["wayland-client", "wayland-protocols-wlr"]
wlroots = ["wayland-client", "wayland-protocols-wlr"]

@ -31,12 +31,11 @@ If it doesn't work, please [install Rust](https://doc.rust-lang.org/cargo/gettin
and run one of the following commands:
```bash
cargo install xremap --features x11 # X11
cargo install xremap --features gnome # GNOME Wayland
cargo install xremap --features kde # KDE-Plasma Wayland
cargo install xremap --features sway # Sway
cargo install xremap --features hypr # Hyprland
cargo install xremap # Others
cargo install xremap --features x11 # X11
cargo install xremap --features gnome # GNOME Wayland
cargo install xremap --features kde # KDE-Plasma Wayland
cargo install xremap --features wlroots # Sway, Hyprland, etc.
cargo install xremap # Others
```
You may also need to install `libx11-dev` to run the `xremap` binary for X11.

Loading…
Cancel
Save