bump version to 0.0.6
This commit is contained in:
parent
33c9b815b0
commit
8a558c0437
3 changed files with 22 additions and 5 deletions
|
|
@ -1,5 +1,13 @@
|
||||||
# Changelog
|
# 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)
|
## 0.0.5 (2018-07-31)
|
||||||
|
|
||||||
* remove mouse polling interval
|
* remove mouse polling interval
|
||||||
|
|
|
||||||
|
|
@ -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.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">
|
<release version="0.0.5" date="2018-07-31">
|
||||||
<ul>
|
<ul>
|
||||||
<li>remove mouse polling interval</li>
|
<li>remove mouse polling interval</li>
|
||||||
|
|
@ -48,13 +57,13 @@
|
||||||
</releases>
|
</releases>
|
||||||
<screenshots>
|
<screenshots>
|
||||||
<screenshot type="default">
|
<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>
|
||||||
<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>
|
||||||
<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>
|
</screenshot>
|
||||||
</screenshots>
|
</screenshots>
|
||||||
<content_rating type="oars-1.1" />
|
<content_rating type="oars-1.1" />
|
||||||
|
|
|
||||||
2
main.go
2
main.go
|
|
@ -45,7 +45,7 @@ const (
|
||||||
authenticationRateBurst int = 10
|
authenticationRateBurst int = 10
|
||||||
challengeLength int = 8
|
challengeLength int = 8
|
||||||
defaultBind string = ":0"
|
defaultBind string = ":0"
|
||||||
version string = "0.0.5"
|
version string = "0.0.6"
|
||||||
)
|
)
|
||||||
|
|
||||||
func processCommand(plugin Plugin, command string) error {
|
func processCommand(plugin Plugin, command string) error {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue