diff --git a/CHANGELOG.md b/CHANGELOG.md index 831d6ae..5c1c5b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.0.14 (2019-10-28) + + * Handle quirks of browser touch events + * Hide navigation bar in fullscreen mode + * Set terminal title + * Flatpak: Update dependencies + ## 0.0.13 (2019-05-04) * Flatpak: Update dependencies diff --git a/desktop/com.github.unrud.RemoteTouchpad.appdata.xml b/desktop/com.github.unrud.RemoteTouchpad.appdata.xml index c6d6516..ed47da2 100644 --- a/desktop/com.github.unrud.RemoteTouchpad.appdata.xml +++ b/desktop/com.github.unrud.RemoteTouchpad.appdata.xml @@ -19,6 +19,16 @@ https://github.com/Unrud/remote-touchpad Unrud + + +
    +
  • Handle quirks of browser touch events
  • +
  • Hide navigation bar in fullscreen mode
  • +
  • Set terminal title
  • +
  • Flatpak: Update dependencies
  • +
+
+
    @@ -121,16 +131,16 @@ - https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.13/screenshots/1.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.14/screenshots/1.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.13/screenshots/2.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.14/screenshots/2.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.13/screenshots/3.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.14/screenshots/3.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.13/screenshots/4.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.14/screenshots/4.png diff --git a/main.go b/main.go index 457923f..f92ee3d 100644 --- a/main.go +++ b/main.go @@ -45,7 +45,7 @@ const ( authenticationRateBurst int = 10 challengeLength int = 8 defaultBind string = ":0" - version string = "0.0.13" + version string = "0.0.14" pretty_app_name string = "Remote Touchpad" )