version 1.4

This commit is contained in:
John Gebbie 2023-10-26 14:33:08 +01:00
parent 5404859248
commit ba67589517
2 changed files with 21 additions and 3 deletions

View file

@ -2,14 +2,32 @@
Notable changes to dotool will be documented in this file.
## [1.4](https://git.sr.ht/~geb/dotool/refs/1.4)
### Added
- A manpage, requiring scdoc.
- Heuristic support for dead keys.
- Support for altgr.
- $DOTOOL_KEYBOARD_NAME to set the virtual keyboard's name.
- More verbose --list-keys output.
### Changed
- Replaced ./install.sh with ./build.sh.
### Fixed
- Now prefers the fewest modifiers for simulating keys.
## [1.3](https://git.sr.ht/~geb/dotool/refs/1.3)
## Added
### Added
- Support for keyboard layouts.
- hwheel for horizontal scrolling.
## Changed
### Changed
- Now depends on the xkbcommon library.
- XKB key names are now case-sensitive.

View file

@ -1,6 +1,6 @@
#!/bin/sh
# ./build.sh ['install']
: "${DOTOOL_VERSION=$(git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 1.3)}"
: "${DOTOOL_VERSION=$(git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 1.4)}"
: "${DOTOOL_DESTDIR=}"
: "${DOTOOL_BINDIR=usr/local/bin}"
: "${DOTOOL_UDEV_RULES_DIR=etc/udev/rules.d}"