diff --git a/CHANGELOG.md b/CHANGELOG.md
index e02f4f3..58c354d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## 0.0.6 (2018-08-23)
+
+ * use colors in terminal for QR qode
+ * remove ``-invert`` command line argument
+ * mitigate race condition when typing text on X11
+ * improve KeySyms used for text on X11 and Flatpak's RemoteDesktop portal
+ * normalize line endings
+
## 0.0.5 (2018-07-31)
* remove mouse polling interval
@@ -22,4 +30,4 @@
## 0.0.1 (2018-06-23)
-initial release
\ No newline at end of file
+initial release
diff --git a/desktop/remote-touchpad.appdata.xml b/desktop/remote-touchpad.appdata.xml
index 139d300..53cf563 100644
--- a/desktop/remote-touchpad.appdata.xml
+++ b/desktop/remote-touchpad.appdata.xml
@@ -18,6 +18,15 @@
https://github.com/Unrud/remote-touchpad
Unrud
+
+
+ - use colors in terminal for QR qode
+ - remove -invert command line argument
+ - mitigate race condition when typing text on X11
+ - improve KeySyms used for text on X11 and Flatpak's RemoteDesktop portal
+ - normalize line endings
+
+
- remove mouse polling interval
@@ -48,13 +57,13 @@
- https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.5/screenshots/1.png
+ https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.6/screenshots/1.png
- https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.5/screenshots/2.png
+ https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.6/screenshots/2.png
- https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.5/screenshots/3.png
+ https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.6/screenshots/3.png
diff --git a/main.go b/main.go
index 5987f54..fa6d188 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.5"
+ version string = "0.0.6"
)
func processCommand(plugin Plugin, command string) error {