bump version to 0.0.5

This commit is contained in:
Unrud 2018-07-31 20:19:16 +02:00
parent 71d7cd42b9
commit 1fe8ae8b75
3 changed files with 21 additions and 4 deletions

View file

@ -1,5 +1,13 @@
# Changelog # 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) ## 0.0.4 (2018-07-22)
* add setting for mouse polling interval * add setting for mouse polling interval

View file

@ -18,6 +18,15 @@
<url type="homepage">https://github.com/Unrud/remote-touchpad</url> <url type="homepage">https://github.com/Unrud/remote-touchpad</url>
<developer_name>Unrud</developer_name> <developer_name>Unrud</developer_name>
<releases> <releases>
<release version="0.0.5" date="2018-07-31">
<ul>
<li>remove mouse polling interval</li>
<li>add support for &quot;pixel-perfect&quot; scrolling</li>
<li>add experimental support for Flatpak&apos;s RemoteDesktop portal</li>
<li>X11 plugin: check session type</li>
<li>improve error logging</li>
</ul>
</release>
<release version="0.0.4" date="2018-07-22"> <release version="0.0.4" date="2018-07-22">
<ul> <ul>
<li>add setting for mouse polling interval</li> <li>add setting for mouse polling interval</li>
@ -39,13 +48,13 @@
</releases> </releases>
<screenshots> <screenshots>
<screenshot type="default"> <screenshot type="default">
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.4/screenshots/1.png</image> <image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.5/screenshots/1.png</image>
</screenshot> </screenshot>
<screenshot> <screenshot>
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.4/screenshots/2.png</image> <image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.5/screenshots/2.png</image>
</screenshot> </screenshot>
<screenshot> <screenshot>
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.4/screenshots/3.png</image> <image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.5/screenshots/3.png</image>
</screenshot> </screenshot>
</screenshots> </screenshots>
<content_rating type="oars-1.1" /> <content_rating type="oars-1.1" />

View file

@ -44,7 +44,7 @@ const (
authenticationRateBurst int = 10 authenticationRateBurst int = 10
challengeLength int = 8 challengeLength int = 8
defaultBind string = ":0" defaultBind string = ":0"
version string = "0.0.4" version string = "0.0.5"
) )
func processCommand(plugin Plugin, command string) error { func processCommand(plugin Plugin, command string) error {