RemoteDesktop: v0.1.16 - Allow to enable/disable mouse capture in remote desktop, remove some unused toolbar buttons

This commit is contained in:
DanyLE
2023-01-08 00:21:02 +01:00
parent b3db4861ef
commit a2a602f5b2
13 changed files with 24 additions and 22 deletions

View File

@ -7,6 +7,7 @@ Further information on **wvnc**: [https://blog.lxsang.me/post/id/23](https://blo
## Change logs
* v0.1.16 - Allow to enable/disable mouse capture in remote desktop, remove some unused toolbar buttons
* v0.1.15 - Only send ACK command when finish rendering the received frame, this allows to vastly improve performance and bandwidth
* v0.1.14 - Add toolbar for canvas size control
* v0.1.13 - support AntOS v2.0.x

View File

@ -1,7 +1,7 @@
afx-app-window[data-id="RemoteDesktop"] div[data-id="container"]
{
background-color: #272822;
overflow: hidden;
overflow: auto;
}
afx-app-window[data-id="RemoteDesktop"] canvas[data-id="screen"]
{

File diff suppressed because one or more lines are too long

View File

@ -7,7 +7,7 @@
"author": "Dany LE",
"email": "contact@iohub.dev"
},
"version":"0.1.15-b",
"version":"0.1.16-b",
"dependencies": [],
"category":"Internet",
"icon": "icon.png",

View File

@ -8,10 +8,9 @@
<div data-width = "5" ></div>
<afx-slider data-id="zoom" ></afx-slider>
<div data-width = "5" ></div>
<afx-button iconclass="bi bi-box-arrow-down" data-id="scroll_down" data-width="content"></afx-button>
<afx-button iconclass="bi bi-box-arrow-up" data-id="scroll_up" data-width="content"></afx-button>
<afx-button iconclass="bi bi-box-arrow-left" data-id="scroll_left" data-width="content"></afx-button>
<afx-button iconclass="bi bi-box-arrow-right" data-id="scroll_right" data-width="content"></afx-button>
<afx-switch data-id="capture_mouse" swon="true" data-width="content" style="line-height:35px;"></afx-switch>
<afx-label text="__(Mouse capture)" data-width="content" style="line-height:35px;"></afx-label>
<div data-width = "2" ></div>
</afx-hbox>
</afx-vbox>
</afx-app-window>