Version 0.6.0

pull/146/head v0.6.0
Takashi Kokubun 2 years ago
parent f03f510e59
commit 6c69b04daf
No known key found for this signature in database
GPG Key ID: 6FFC433B12EE23DD

@ -1,3 +1,9 @@
## v0.6.0
- Rewrite the modifier key match logic
- Match remaps even if extra modifiers are held [#102](https://github.com/k0kubun/xremap/issues/102)
- Even faster than the previous version
## v0.5.3 ## v0.5.3
- Match an `application` matcher against a full `WM_CLASS` in X11 - Match an `application` matcher against a full `WM_CLASS` in X11

2
Cargo.lock generated

@ -1112,7 +1112,7 @@ dependencies = [
[[package]] [[package]]
name = "xremap" name = "xremap"
version = "0.5.3" version = "0.6.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"clap", "clap",

@ -1,6 +1,6 @@
[package] [package]
name = "xremap" name = "xremap"
version = "0.5.3" version = "0.6.0"
edition = "2021" edition = "2021"
description = "Dynamic key remapp for X and Wayland" description = "Dynamic key remapp for X and Wayland"
license = "MIT" license = "MIT"

Loading…
Cancel
Save