version 1.3

This commit is contained in:
John Gebbie 2023-06-01 16:34:54 +01:00
parent 618358e136
commit eb41d9d70c
2 changed files with 14 additions and 1 deletions

View file

@ -2,6 +2,19 @@
Notable changes to dotool will be documented in this file.
## [1.3](https://git.sr.ht/~geb/dotool/refs/1.3)
## Added
- Support for keyboard layouts.
- hwheel for horizontal scrolling.
## Changed
- Now depends on the xkbcommon library.
- XKB key names are now case-sensitive.
- scroll -> wheel
## [1.2](https://git.sr.ht/~geb/dotool/refs/1.2)
### Added

View file

@ -1,6 +1,6 @@
#!/bin/sh
# ./install.sh [DESTDIR] [BINDIR]
: "${DOTOOL_VERSION=$(git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 1.2)}"
: "${DOTOOL_VERSION=$(git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 1.3)}"
go build -ldflags "-X main.Version=$DOTOOL_VERSION" || exit
mkdir -p "$1/${2:-usr/local/bin}" || exit