improve UI handling

This commit is contained in:
lxsang 2022-08-18 21:35:37 +02:00
parent 55787b135b
commit 03f48f3211
11 changed files with 23 additions and 24 deletions

View File

@ -7,6 +7,7 @@ Further information on **wvnc**: [https://blog.lxsang.me/post/id/23](https://blo
## Change logs
* v0.1.12 - improve UI handling
* v0.1.11 - Support 16 bits per pixel
* v0.1.10 - Allow to sync clipboard between local and remote machine, CTRL+SHIF+V to paste text from local to remote machine
* v0.1.9 - improve stability

View File

@ -5,6 +5,6 @@ afx-app-window[data-id="RemoteDesktop"] div[data-id="container"]
afx-app-window[data-id="RemoteDesktop"] canvas[data-id="screen"]
{
border:0;
margin: auto;
/*margin: auto;*/
display: block;
}

View File

@ -7,6 +7,7 @@ Further information on **wvnc**: [https://blog.lxsang.me/post/id/23](https://blo
## Change logs
* v0.1.12 - improve UI handling
* v0.1.11 - Support 16 bits per pixel
* v0.1.10 - Allow to sync clipboard between local and remote machine, CTRL+SHIF+V to paste text from local to remote machine
* v0.1.9 - improve stability

View File

@ -5,6 +5,6 @@ afx-app-window[data-id="RemoteDesktop"] div[data-id="container"]
afx-app-window[data-id="RemoteDesktop"] canvas[data-id="screen"]
{
border:0;
margin: auto;
/*margin: auto;*/
display: block;
}

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.11-b",
"version":"0.1.12-b",
"dependencies": [],
"category":"Internet",
"icon": "icon.png",

View File

@ -175,12 +175,16 @@ class WVNC
@socket.onmessage = (e) ->
me.consume e
@socket.onerror = (e) =>
me.onerror("Websocket error")
@socket.onclose = () ->
me.socket = null
me.canvas.style.cursor = "auto"
me.canvas.getContext('2d').clearRect 0,0, me.resolution.w, me.resolution.h if me.canvas and me.resolution
clearTimeout(me.pingto) if me.pingto
me.pingto = undefined
me.ondisconnect()
console.log "socket closed"
disconnect: (close_worker) ->
@ -279,6 +283,9 @@ class WVNC
onresize: () ->
console.log "resize"
ondisconnect: () ->
console.log "disconnect"
consume: (e) ->
data = new Uint8Array e.data

View File

@ -98,8 +98,10 @@ class RemoteDesktop extends this.OS.application.BaseApplication
}
@bindKey "CTRL-SHIFT-V", (e) =>
@pasteText()
@client.onerror = (m) =>
@error m
#@client.onerror = (m) =>
# @error m.toString()
# @showConnectionDialog()
@client.ondisconnect = () =>
@showConnectionDialog()
@client.onresize = ()=>
@setScale()
@ -160,16 +162,13 @@ class RemoteDesktop extends this.OS.application.BaseApplication
{ text: "__(New Connection)", dataid: "#{@name}-new", },
{ text: "__(Disconnect)", dataid: "#{@name}-close" }
],
onchildselect: (e) => @actionConnection()
onchildselect: (e) =>
@client.disconnect(false) if @client
}
]
actionConnection: (e) ->
@client.disconnect(false) if @client
@showConnectionDialog()
showConnectionDialog: () ->
return unless @client
@openDialog new ConnectionDialog, { title: __("Connection")}
.then (d) =>
@client.ws = d.wvnc
@ -177,5 +176,6 @@ class RemoteDesktop extends this.OS.application.BaseApplication
cleanup: () ->
@client.disconnect(true) if @client
@client = undefined
this.OS.register "RemoteDesktop", RemoteDesktop

View File

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

View File

@ -69,16 +69,6 @@
"dependencies": ["Antunnel@0.2.0-b"],
"download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/AntunnelPlugins/build/release/AntunnelPlugins.zip"
},
{
"pkgname": "AntunnelTestClient",
"name": "AntunnelTestClient",
"description": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/AntunnelTestClient/README.md",
"category": "Development",
"author": "Dany LE",
"version": "0.1.0-a",
"dependencies": ["Antunnel@0.2.1-b"],
"download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/AntunnelTestClient/build/release/AntunnelTestClient.zip"
},
{
"pkgname": "Archive",
"name": "Archive",
@ -365,7 +355,7 @@
"description": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/RemoteDesktop/README.md",
"category": "Internet",
"author": "Dany LE",
"version": "0.1.11-b",
"version": "0.1.12-b",
"dependencies": [],"category":"Internet","icon":"icon.png","mimes":["none"],
"download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/RemoteDesktop/build/release/RemoteDesktop.zip"
},