diff --git a/CHANGELOG.md b/CHANGELOG.md index f83fcc2..4116ca2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.4.5 (2024-01-31) + +* Keep text input open after sending +* Workaround for virtual keyboard covering buttons (Chromium & iOS) +* Enable hardware keyboard input in mouse mode + ## 1.4.4 (2024-01-23) * Fix Xwayland detection on newer servers diff --git a/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml b/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml index f684a9b..a677665 100644 --- a/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml +++ b/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml @@ -19,6 +19,15 @@ https://github.com/Unrud/remote-touchpad Unrud + + +
    +
  • Keep text input open after sending
  • +
  • Workaround for virtual keyboard covering buttons (Chromium & iOS)
  • +
  • Enable hardware keyboard input in mouse mode
  • +
+
+
    @@ -309,16 +318,16 @@ - https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.4.4/screenshots/1.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.4.5/screenshots/1.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.4.4/screenshots/2.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.4.5/screenshots/2.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.4.4/screenshots/3.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.4.5/screenshots/3.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.4.4/screenshots/4.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.4.5/screenshots/4.png diff --git a/main.go b/main.go index a56a52b..a96a958 100644 --- a/main.go +++ b/main.go @@ -47,7 +47,7 @@ const ( authenticationRateBurst int = 10 challengeLength int = 8 defaultBind string = ":0" - version string = "1.4.4" + version string = "1.4.5" prettyAppName string = "Remote Touchpad" )