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 {