update vterm and Antunnel

This commit is contained in:
lxsang 2020-08-08 19:40:21 +02:00
parent 8b2c534e80
commit 328172ef90
11 changed files with 39 additions and 690 deletions

File diff suppressed because one or more lines are too long

View File

@ -9,7 +9,7 @@
"author": "Xuan Sang LE",
"email": "xsang.le@lxsang.me"
},
"version":"0.1.1-a",
"version":"0.1.2-a",
"category":"Library",
"iconclass":"fa fa-adn",
"mimes":["none"],

Binary file not shown.

View File

@ -217,7 +217,8 @@ class AntunnelApi
@onclose() if @onclose()
W = this
W.Antunnel = {
if not W.Antunnel
W.Antunnel = {
tunnel: undefined
init: ((url) ->
return new Promise (resolve, reject) ->
@ -229,4 +230,4 @@ W.Antunnel = {
.catch (e) -> reject(e)),
Subscriber: Subscriber,
Msg: Msg
}
}

View File

@ -9,7 +9,7 @@
"author": "Xuan Sang LE",
"email": "xsang.le@lxsang.me"
},
"version":"0.1.1-a",
"version":"0.1.2-a",
"category":"Library",
"iconclass":"fa fa-adn",
"mimes":["none"],

View File

@ -23,7 +23,7 @@
"description": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/Antunnel/README.md",
"category": "Library",
"author": "Xuan Sang LE",
"version": "0.1.1-a",
"version": "0.1.2-a",
"download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/Antunnel/build/release/Antunnel.zip"
},
{
@ -149,7 +149,7 @@
"description": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/vTerm/README.md",
"category": "System",
"author": "Xuan Sang LE",
"version": "0.0.5-a",
"version": "0.1.2-a",
"download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/vTerm/build/release/vTerm.zip"
},
{

File diff suppressed because one or more lines are too long

View File

@ -6,7 +6,7 @@
"author": "Xuan Sang LE",
"email": "xsang.le@gmail.com"
},
"version":"0.0.5-a",
"version":"0.1.2-a",
"category":"System",
"iconclass":"fa fa-terminal",
"mimes":["none"],

Binary file not shown.

View File

@ -51,6 +51,7 @@ class vTerm extends this.OS.application.BaseApplication
@on "hboxchange", (e) =>
@resizeContent()
checklib = () =>
if not Antunnel.tunnel
@error __("The Antunnel service is not started, please start it first")
@_gui.pushService("Antunnel/AntunnelService")
@ -61,6 +62,15 @@ class vTerm extends this.OS.application.BaseApplication
@tunnel = Antunnel.tunnel
@openSession()
if not Antunnel
@_api.requires("pkg://Antunnel/main.js").then () =>
checklib()
.catch (e) =>
@error __("Unable to load Antunnel: {0}",e.toString()), e
@quit()
else
checklib()
mctxHandle: (data) ->
switch data.id
when "paste"
@ -111,9 +121,4 @@ class vTerm extends this.OS.application.BaseApplication
cleanup: (e) ->
@sub.close() if @sub
vTerm.dependencies = [
"pkg://Antunnel/main.js"
]
this.OS.register "vTerm", vTerm

View File

@ -6,7 +6,7 @@
"author": "Xuan Sang LE",
"email": "xsang.le@gmail.com"
},
"version":"0.0.5-a",
"version":"0.1.2-a",
"category":"System",
"iconclass":"fa fa-terminal",
"mimes":["none"],