SystemControl: use new AntoS local setting APIo
All checks were successful
gitea-sync/antosdk-apps/pipeline/head This commit looks good

This commit is contained in:
DanyLE 2023-07-08 13:54:22 +02:00
parent 7174dfb8c9
commit 4d03eff031
11 changed files with 13 additions and 10 deletions

View File

@ -9,4 +9,5 @@ via the Antunnel service
## changelogs
- 0.1.13-a: fix setting bug on new AntOS local setting API
- 0.1.12-a: use application based dialog instead of global dialog

View File

@ -9,4 +9,5 @@ via the Antunnel service
## changelogs
- 0.1.13-a: fix setting bug on new AntOS local setting API
- 0.1.12-a: use application based dialog instead of global dialog

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
"dependencies": [
"Antunnel@0.2.1-b"
],
"version":"0.1.12-a",
"version":"0.1.13-a",
"category":"System",
"iconclass":"fa fa-tachometer",
"mimes":["none"],

View File

@ -24,9 +24,9 @@ class SysmondService extends OS.application.BaseService
@error e.toString(), e
@quit()
else
return unless @setting().topic
return unless @setting.topic
@tunnel = Antunnel.tunnel
@sub = new Antunnel.Subscriber(@setting().topic)
@sub = new Antunnel.Subscriber(@setting.topic)
@sub.onopen = () =>
#@sub.send Antunnel.Msg.DATA, new TextEncoder("utf-8").encode("Hello")
console.log("Subscribed to notification channel")
@ -48,14 +48,14 @@ class SysmondService extends OS.application.BaseService
@quit()
Antunnel.tunnel.subscribe @sub
if not @setting().topic
if not @setting.topic
console.log "Open dialog"
@app.openDialog("PromptDialog", {
title: __("Enter topic name"),
label: __("Please enter topic name")
})
.then (v) =>
@setting().topic = v
@setting.topic = v
checklib()
else
checklib()

View File

@ -13,7 +13,7 @@
"dependencies": [
"Antunnel@0.2.1-b"
],
"version":"0.1.12-a",
"version":"0.1.13-a",
"category":"System",
"iconclass":"fa fa-tachometer",
"mimes":["none"],

View File

@ -435,8 +435,8 @@
"description": "https://raw.githubusercontent.com/lxsang/antosdk-apps/2.0.x/SystemControl/README.md",
"category": "System",
"author": "",
"version": "0.1.12-a",
"dependencies": ["Antunnel@0.2.1-b"],"version":"0.1.12-a","category":"System","iconclass":"fafa-tachometer","mimes":["none"],
"version": "0.1.13-a",
"dependencies": ["Antunnel@0.2.1-b"],"version":"0.1.13-a","category":"System","iconclass":"fafa-tachometer","mimes":["none"],
"download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/2.0.x/SystemControl/build/release/SystemControl.zip"
},
{

View File

@ -9,4 +9,5 @@ via the Antunnel service
## changelogs
- 0.1.13-a: fix setting bug on new AntOS local setting API
- 0.1.12-a: use application based dialog instead of global dialog

Binary file not shown.

File diff suppressed because one or more lines are too long