bump version to 0.0.12

This commit is contained in:
Unrud 2018-12-08 11:54:42 +01:00
parent f0af4aaad4
commit 18e4a4b51d
3 changed files with 25 additions and 16 deletions

View file

@ -1,5 +1,9 @@
# Changelog
## 0.0.12 (2018-12-08)
* fix the browser Forward button
## 0.0.11 (2018-10-20)
* rename plugin to backend

View file

@ -19,34 +19,39 @@
<url type="homepage">https://github.com/Unrud/remote-touchpad</url>
<developer_name>Unrud</developer_name>
<releases>
<release version="0.0.12" date="2018-12-08">
<ul>
<li>fix the browser Forward button</li>
</ul>
</release>
<release version="0.0.11" date="2018-10-20">
<ul>
<ul>
<li>rename plugin to backend</li>
<li>update flatpak</li>
</ul>
</release>
<release version="0.0.10" date="2018-10-01">
<ul>
<ul>
<li>avoid race condition when typing on X11</li>
</ul>
</release>
<release version="0.0.9" date="2018-09-29">
<ul>
<ul>
<li>add multimedia keys</li>
</ul>
</release>
<release version="0.0.8" date="2018-09-07">
<ul>
<ul>
<li>enable pointer movement after timeout</li>
</ul>
</release>
<release version="0.0.7" date="2018-09-04">
<ul>
<ul>
<li>use custom font for icons</li>
</ul>
</release>
<release version="0.0.6" date="2018-08-23">
<ul>
<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>
@ -55,7 +60,7 @@
</ul>
</release>
<release version="0.0.5" date="2018-07-31">
<ul>
<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>
@ -64,36 +69,36 @@
</ul>
</release>
<release version="0.0.4" date="2018-07-22">
<ul>
<ul>
<li>add setting for mouse polling interval</li>
</ul>
</release>
<release version="0.0.3" date="2018-06-26">
<ul>
<ul>
<li>fix websocket with https</li>
</ul>
</release>
<release version="0.0.2" date="2018-06-25">
<ul>
<ul>
<li>add reload button to disconnected-page</li>
</ul>
</release>
<release version="0.0.1" date="2018-06-23">
<p>initial release</p>
<p>initial release</p>
</release>
</releases>
<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.11/screenshots/1.png</image>
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.12/screenshots/1.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.11/screenshots/2.png</image>
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.12/screenshots/2.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.11/screenshots/3.png</image>
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.12/screenshots/3.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.11/screenshots/4.png</image>
<image>https://raw.githubusercontent.com/Unrud/remote-touchpad/0.0.12/screenshots/4.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.11"
version string = "0.0.12"
)
func processCommand(backend Backend, command string) error {