bump version to 0.0.6

This commit is contained in:
Unrud 2018-08-23 17:12:36 +02:00
parent 33c9b815b0
commit 8a558c0437
3 changed files with 22 additions and 5 deletions

View file

@ -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
initial release

View file

@ -18,6 +18,15 @@
<url type="homepage">https://github.com/Unrud/remote-touchpad</url>
<developer_name>Unrud</developer_name>
<releases>
<release version="0.0.6" date="2018-08-23">
<ul>
<li>use colors in terminal for QR qode</li>
<li>remove -invert command line argument</li>
<li>mitigate race condition when typing text on X11</li>
<li>improve KeySyms used for text on X11 and Flatpak's RemoteDesktop portal</li>
<li>normalize line endings</li>
</ul>
</release>
<release version="0.0.5" date="2018-07-31">
<ul>
<li>remove mouse polling interval</li>
@ -48,13 +57,13 @@
</releases>
<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.5/screenshots/1.png</image>
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.6/screenshots/1.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.5/screenshots/2.png</image>
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.6/screenshots/2.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.5/screenshots/3.png</image>
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.6/screenshots/3.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1" />

View file

@ -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 {