Compare commits
2 commits
b5812c001d
...
7c0a53ef94
Author | SHA1 | Date | |
---|---|---|---|
|
7c0a53ef94 | ||
|
5bc814cb39 |
4 changed files with 11 additions and 5 deletions
|
@ -2,6 +2,12 @@
|
||||||
|
|
||||||
Notable changes to dotool will be documented in this file.
|
Notable changes to dotool will be documented in this file.
|
||||||
|
|
||||||
|
## [1.5](https://git.sr.ht/~geb/dotool/refs/1.5)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- The selecting of the fewest modifiers for simulating keys.
|
||||||
|
|
||||||
## [1.4](https://git.sr.ht/~geb/dotool/refs/1.4)
|
## [1.4](https://git.sr.ht/~geb/dotool/refs/1.4)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -18,7 +24,7 @@ Notable changes to dotool will be documented in this file.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Now prefers the fewest modifiers for simulating keys.
|
- Now prefers the fewest modifiers for simulating keys. (UPDATE: see 1.5)
|
||||||
|
|
||||||
## [1.3](https://git.sr.ht/~geb/dotool/refs/1.3)
|
## [1.3](https://git.sr.ht/~geb/dotool/refs/1.3)
|
||||||
|
|
||||||
|
|
2
build.sh
2
build.sh
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# ./build.sh ['install']
|
# ./build.sh ['install']
|
||||||
: "${DOTOOL_VERSION=$(git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 1.4)}"
|
: "${DOTOOL_VERSION=$(git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 1.5)}"
|
||||||
: "${DOTOOL_DESTDIR=}"
|
: "${DOTOOL_DESTDIR=}"
|
||||||
: "${DOTOOL_BINDIR=usr/local/bin}"
|
: "${DOTOOL_BINDIR=usr/local/bin}"
|
||||||
: "${DOTOOL_UDEV_RULES_DIR=etc/udev/rules.d}"
|
: "${DOTOOL_UDEV_RULES_DIR=etc/udev/rules.d}"
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -4,5 +4,5 @@ go 1.19
|
||||||
|
|
||||||
require (
|
require (
|
||||||
git.sr.ht/~geb/opt v0.0.0-20230911153257-e72225a1933c
|
git.sr.ht/~geb/opt v0.0.0-20230911153257-e72225a1933c
|
||||||
github.com/bendahl/uinput v1.6.2
|
github.com/bendahl/uinput v1.7.0
|
||||||
)
|
)
|
||||||
|
|
4
go.sum
4
go.sum
|
@ -1,4 +1,4 @@
|
||||||
git.sr.ht/~geb/opt v0.0.0-20230911153257-e72225a1933c h1:gIC1gnCgoasPHks1x6MB+bgDmIWMxKc5HIJPJrsV5Ck=
|
git.sr.ht/~geb/opt v0.0.0-20230911153257-e72225a1933c h1:gIC1gnCgoasPHks1x6MB+bgDmIWMxKc5HIJPJrsV5Ck=
|
||||||
git.sr.ht/~geb/opt v0.0.0-20230911153257-e72225a1933c/go.mod h1:S6h1g8P7DyG7i7YIHZ5IpYbC6lzZB9DYIEl8PyXOmsg=
|
git.sr.ht/~geb/opt v0.0.0-20230911153257-e72225a1933c/go.mod h1:S6h1g8P7DyG7i7YIHZ5IpYbC6lzZB9DYIEl8PyXOmsg=
|
||||||
github.com/bendahl/uinput v1.6.2 h1:tIz52QyKDx1i1nObUkts3AZa/bULfLhPA5a+xKGlRPI=
|
github.com/bendahl/uinput v1.7.0 h1:nA4fm8Wu8UYNOPykIZm66nkWEyvxzfmJ8YC02PM40jg=
|
||||||
github.com/bendahl/uinput v1.6.2/go.mod h1:Np7w3DINc9wB83p12fTAM3DPPhFnAKP0WTXRqCQJ6Z8=
|
github.com/bendahl/uinput v1.7.0/go.mod h1:Np7w3DINc9wB83p12fTAM3DPPhFnAKP0WTXRqCQJ6Z8=
|
||||||
|
|
Loading…
Reference in a new issue