diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..fd0b5f1 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,23 @@ +# Changelog + +Notable changes to dotool will be documented in this file. + +## [1.1](https://git.sr.ht/~geb/dotool/refs/1.1) + +### Added + +- Added --version. +- Added keyhold and typehold. + +### Changed + +- The install script is now suitable for packaging and sets --version. +- There is now a default keydelay, keyhold, typedelay and typehold. +- Delays now come after keypresses not before. +- Now aborts if there are any command-line arguments. + +### Fixed + +- Added a udev rule so it shouldn't type guff if you're using a non-us +keyboard layout on at least X11. +- Fixed x:backspace that was simulating shift. diff --git a/install.sh b/install.sh index 972c5fa..3a2e72c 100755 --- a/install.sh +++ b/install.sh @@ -1,6 +1,6 @@ #!/bin/sh # ./install.sh [DESTDIR] [BINDIR] -: "${DOTOOL_VERSION=$(git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 1.0)}" +: "${DOTOOL_VERSION=$(git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 1.1)}" go build -ldflags "-X main.Version=$DOTOOL_VERSION" || exit mkdir -p "$1/${2:-usr/local/bin}" || exit cp -v dotool dotoolc dotoold "$1/${2:-usr/local/bin}" || exit