Version bump.

master
Raheman Vaiya 4 years ago
parent df67ec20d9
commit fbc79cbc2c
  1. 14
      CHANGELOG.md
  2. 2
      Makefile

@ -1,3 +1,17 @@
# v2.1.0-beta
NOTE: This might break some configs (see below)
- Change default modifier mappings to their full names (i.e `control =
layer(control)` instead of `control = layer(C)` in an unmodified key map)`.
- Modifier names are now syntactic sugar for assigning both associated key
codes. E.G `control` corresponds to both `leftcontrol` and `rightcontrol`
when assigned instead of just the former. (Note: this also means it is no
longer a valid right hand value)
- Fix v1 overload regression (#74)
# v2.0.1-beta
- Added + syntax to macros to allow for simultaenously held keys.

@ -6,7 +6,7 @@ LOCK_FILE="/var/lock/keyd.lock"
LOG_FILE="/var/log/keyd.log"
CONFIG_DIR="/etc/keyd"
VERSION=2.0.1-beta
VERSION=2.1.0-beta
GIT_HASH=$(shell git describe --no-match --always --abbrev=40 --dirty)
CFLAGS+=-DVERSION=\"$(VERSION)\" \

Loading…
Cancel
Save