diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a8f30e..1eaced0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.0.5 (2022-01-07) + +* Use relative URL for websocket +* Update dependencies + ## 1.0.4 (2021-11-06) * Disable browser touch gestures diff --git a/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml b/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml index 28830b1..8277760 100644 --- a/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml +++ b/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml @@ -19,6 +19,14 @@ https://github.com/Unrud/remote-touchpad Unrud + + +
    +
  • Use relative URL for websocket
  • +
  • Update dependencies
  • +
+
+
    @@ -199,16 +207,16 @@ - https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.0.4/screenshots/1.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.0.5/screenshots/1.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.0.4/screenshots/2.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.0.5/screenshots/2.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.0.4/screenshots/3.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.0.5/screenshots/3.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.0.4/screenshots/4.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.0.5/screenshots/4.png diff --git a/main.go b/main.go index 31776f4..73e68da 100644 --- a/main.go +++ b/main.go @@ -45,7 +45,7 @@ const ( authenticationRateBurst int = 10 challengeLength int = 8 defaultBind string = ":0" - version string = "1.0.4" + version string = "1.0.5" pretty_app_name string = "Remote Touchpad" )