mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2025-07-13 06:04:26 +02:00
RemoteDesktop: * v0.1.15 - Only send ACK command when finish rendering the received frame, this allows to vastly improve performance and bandwidth
This commit is contained in:
@ -7,6 +7,8 @@ Further information on **wvnc**: [https://blog.lxsang.me/post/id/23](https://blo
|
||||
|
||||
|
||||
## Change logs
|
||||
* 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
|
||||
* v0.1.12 - improve UI handling
|
||||
* v0.1.11 - Support 16 bits per pixel
|
||||
|
@ -1,6 +1,7 @@
|
||||
afx-app-window[data-id="RemoteDesktop"] div[data-id="container"]
|
||||
{
|
||||
background-color: #272822;
|
||||
overflow: hidden;
|
||||
}
|
||||
afx-app-window[data-id="RemoteDesktop"] canvas[data-id="screen"]
|
||||
{
|
||||
|
File diff suppressed because one or more lines are too long
@ -7,7 +7,7 @@
|
||||
"author": "Dany LE",
|
||||
"email": "contact@iohub.dev"
|
||||
},
|
||||
"version":"0.1.13-b",
|
||||
"version":"0.1.15-b",
|
||||
"dependencies": [],
|
||||
"category":"Internet",
|
||||
"icon": "icon.png",
|
||||
|
@ -1,7 +1,17 @@
|
||||
<afx-app-window apptitle="VNC Remote Desktop" width="720" height="576" data-id="RemoteDesktop">
|
||||
<afx-hbox >
|
||||
<afx-vbox >
|
||||
<div data-id="container">
|
||||
<canvas data-id="screen"></canvas>
|
||||
</div>
|
||||
</afx-hbox>
|
||||
<afx-hbox data-height="35">
|
||||
<afx-button iconclass="fa fa-arrows-alt" data-id="btreset" data-width="content"></afx-button>
|
||||
<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-hbox>
|
||||
</afx-vbox>
|
||||
</afx-app-window>
|
Binary file not shown.
Reference in New Issue
Block a user