diff --git a/CHANGELOG.md b/CHANGELOG.md index 1eaced0..e09fa45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 1.1.0 (2022-01-28) + +* Add more shortcut keys (Arrows, Delete, Enter, …) +* Add basic support for physical keyboard +* Allow fullscreen on keys page +* Enable touchpad on keys page +* Retain keyboard text when reloading website +* Improve compatibility with old browsers +* Write URL and QR code to stdout +* Ignore unparseable IP +* Remove trailing new line from QR code + ## 1.0.5 (2022-01-07) * Use relative URL for websocket diff --git a/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml b/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml index 8277760..edab8b7 100644 --- a/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml +++ b/desktop/com.github.unrud.RemoteTouchpad.metainfo.xml @@ -19,6 +19,21 @@ https://github.com/Unrud/remote-touchpad Unrud + + +
    +
  • Add more shortcut keys (Arrows, Delete, Enter, …)
  • +
  • Add basic support for physical keyboard
  • +
  • Allow fullscreen on keys page
  • +
  • Enable touchpad on keys page
  • +
  • Retain keyboard text when reloading website
  • +
  • Improve compatibility with old browsers
  • +
  • Write URL and QR code to stdout
  • +
  • Ignore unparseable IP
  • +
  • Remove trailing new line from QR code
  • +
+
+
    @@ -207,16 +222,16 @@ - https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.0.5/screenshots/1.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.1.0/screenshots/1.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.0.5/screenshots/2.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.1.0/screenshots/2.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.0.5/screenshots/3.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.1.0/screenshots/3.png - https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.0.5/screenshots/4.png + https://raw.githubusercontent.com/Unrud/remote-touchpad/v1.1.0/screenshots/4.png diff --git a/main.go b/main.go index 44c50b5..a09f493 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.5" + version string = "1.1.0" pretty_app_name string = "Remote Touchpad" )