From 1fe8ae8b75a62b4b0a9f0cb290254c5f52471d73 Mon Sep 17 00:00:00 2001 From: Unrud Date: Tue, 31 Jul 2018 20:19:16 +0200 Subject: [PATCH] bump version to 0.0.5 --- CHANGELOG.md | 8 ++++++++ desktop/remote-touchpad.appdata.xml | 15 ++++++++++++--- main.go | 2 +- 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3df0d89..e02f4f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.0.5 (2018-07-31) + + * remove mouse polling interval + * add support for "pixel-perfect" scrolling + * add experimental support for Flatpak's RemoteDesktop portal + * X11 plugin: check session type + * improve error logging + ## 0.0.4 (2018-07-22) * add setting for mouse polling interval diff --git a/desktop/remote-touchpad.appdata.xml b/desktop/remote-touchpad.appdata.xml index 62dd6c5..139d300 100644 --- a/desktop/remote-touchpad.appdata.xml +++ b/desktop/remote-touchpad.appdata.xml @@ -18,6 +18,15 @@ https://github.com/Unrud/remote-touchpad Unrud + +​
    +
  • remove mouse polling interval
  • +
  • add support for "pixel-perfect" scrolling
  • +
  • add experimental support for Flatpak's RemoteDesktop portal
  • +
  • X11 plugin: check session type
  • +
  • improve error logging
  • +
+
  • add setting for mouse polling interval
  • @@ -39,13 +48,13 @@ - https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.4/screenshots/1.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.5/screenshots/1.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.4/screenshots/2.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.5/screenshots/2.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.4/screenshots/3.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.5/screenshots/3.png diff --git a/main.go b/main.go index 7f7a08d..aa9e68f 100644 --- a/main.go +++ b/main.go @@ -44,7 +44,7 @@ const ( authenticationRateBurst int = 10 challengeLength int = 8 defaultBind string = ":0" - version string = "0.0.4" + version string = "0.0.5" ) func processCommand(plugin Plugin, command string) error {