diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ebb9ac..d8545b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.4.0 (2023-04-25) + +* Add feedback to buttons +* Add numeric keypad +* Prevent touch triggering mouse mode + ## 1.3.0 (2023-03-03) * Initial support for uinput diff --git a/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml b/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml index 9578960..f2ecdfa 100644 --- a/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml +++ b/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml @@ -19,6 +19,16 @@ https://github.com/Unrud/remote-touchpad Unrud + + +
    +
  • Add feedback to buttons
  • +
  • Add numeric keypad
  • +
  • Prevent touch triggering mouse mode
  • +
  • Update dependencies
  • +
+
+
    @@ -267,16 +277,16 @@ - https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.3.0/screenshots/1.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.4.0/screenshots/1.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.3.0/screenshots/2.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.4.0/screenshots/2.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.3.0/screenshots/3.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.4.0/screenshots/3.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.3.0/screenshots/4.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.4.0/screenshots/4.png diff --git a/main.go b/main.go index be123cd..c37da32 100644 --- a/main.go +++ b/main.go @@ -47,7 +47,7 @@ const ( authenticationRateBurst int = 10 challengeLength int = 8 defaultBind string = ":0" - version string = "1.3.0" + version string = "1.4.0" prettyAppName string = "Remote Touchpad" )