iobroker.cometvisu 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/io-package.json +145 -124
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -57,10 +57,10 @@ replaces that entry.
|
|
|
57
57
|
Placeholder for the next version (at the beginning of the line):
|
|
58
58
|
### **WORK IN PROGRESS**
|
|
59
59
|
-->
|
|
60
|
+
### 0.0.2 (2026-09-05)
|
|
60
61
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
- (Florian Schirmer) initial release
|
|
62
|
+
- (joltcoke) keywords now contain "ioBroker", as the adapter checker asks for
|
|
63
|
+
- (joltcoke) releases are published by the workflow through trusted publishing
|
|
64
64
|
|
|
65
65
|
## License
|
|
66
66
|
|
package/io-package.json
CHANGED
|
@@ -1,128 +1,149 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
},
|
|
33
|
-
"desc": {
|
|
34
|
-
"en": "Serves the CometVisu visualization through the ioBroker web adapter",
|
|
35
|
-
"de": "Liefert die CometVisu-Visualisierung über den ioBroker-web-Adapter aus",
|
|
36
|
-
"ru": "Предоставляет визуализацию CometVisu через веб-адаптер ioBroker",
|
|
37
|
-
"pt": "Fornece a visualização CometVisu através do adaptador web do ioBroker",
|
|
38
|
-
"nl": "Levert de CometVisu-visualisatie via de ioBroker-webadapter",
|
|
39
|
-
"fr": "Fournit la visualisation CometVisu via l'adaptateur web d'ioBroker",
|
|
40
|
-
"it": "Fornisce la visualizzazione CometVisu tramite l'adattatore web di ioBroker",
|
|
41
|
-
"es": "Sirve la visualización CometVisu a través del adaptador web de ioBroker",
|
|
42
|
-
"pl": "Udostępnia wizualizację CometVisu przez adapter web ioBrokera",
|
|
43
|
-
"uk": "Надає візуалізацію CometVisu через вебадаптер ioBroker",
|
|
44
|
-
"zh-cn": "通过 ioBroker web 适配器提供 CometVisu 可视化界面"
|
|
45
|
-
},
|
|
46
|
-
"authors": ["Florian Schirmer <jolt@tuxbox.org>"],
|
|
47
|
-
"keywords": ["cometvisu", "visualization", "websocket", "web"],
|
|
48
|
-
"licenseInformation": {
|
|
49
|
-
"type": "free",
|
|
50
|
-
"license": "MIT"
|
|
51
|
-
},
|
|
52
|
-
"platform": "Javascript/Node.js",
|
|
53
|
-
"icon": "cometvisu.png",
|
|
54
|
-
"enabled": true,
|
|
55
|
-
"extIcon": "https://raw.githubusercontent.com/joltcoke/ioBroker.cometvisu/main/admin/cometvisu.png",
|
|
56
|
-
"readme": "https://github.com/joltcoke/ioBroker.cometvisu/blob/main/README.md",
|
|
57
|
-
"loglevel": "info",
|
|
58
|
-
"tier": 3,
|
|
59
|
-
"mode": "daemon",
|
|
60
|
-
"type": "visualization",
|
|
61
|
-
"compact": true,
|
|
62
|
-
"connectionType": "local",
|
|
63
|
-
"dataSource": "push",
|
|
64
|
-
"adminUI": {
|
|
65
|
-
"config": "json"
|
|
66
|
-
},
|
|
67
|
-
"dependencies": [
|
|
68
|
-
{
|
|
69
|
-
"js-controller": ">=6.0.11"
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"web": ">=7.0.3"
|
|
73
|
-
}
|
|
74
|
-
],
|
|
75
|
-
"globalDependencies": [
|
|
76
|
-
{
|
|
77
|
-
"admin": ">=7.0.23"
|
|
78
|
-
}
|
|
79
|
-
],
|
|
80
|
-
"messagebox": true,
|
|
81
|
-
"localLinks": {
|
|
82
|
-
"ui": {
|
|
83
|
-
"link": "%web_protocol%://%ip%:%web_port%/cometvisu/",
|
|
84
|
-
"name": "CometVisu",
|
|
85
|
-
"color": "greenLight",
|
|
86
|
-
"order": 10
|
|
87
|
-
}
|
|
88
|
-
},
|
|
89
|
-
"webExtension": "build/lib/web.js"
|
|
2
|
+
"common": {
|
|
3
|
+
"name": "cometvisu",
|
|
4
|
+
"version": "0.0.2",
|
|
5
|
+
"news": {
|
|
6
|
+
"0.0.2": {
|
|
7
|
+
"en": "keywords now contain \"ioBroker\", as the adapter checker asks for\nreleases are published by the workflow through trusted publishing",
|
|
8
|
+
"de": "Keywords enthalten nun „ioBroker“, wie es der Adapter-Checker verlangt\nReleases werden vom Workflow über Trusted Publishing veröffentlicht",
|
|
9
|
+
"ru": "ключевые слова теперь содержат слово «IOBroker», как того требует программа проверки адаптеров\nрелизы публикуются рабочим процессом через доверенную публикацию",
|
|
10
|
+
"pt": "as palavras-chave agora contêm “ioBroker”, como pede\nas versões são publicadas pelo fluxo de trabalho",
|
|
11
|
+
"nl": "trefwoorden bevatten nu „IOBroker”, zoals de adapterchecker vraagt\nreleases worden gepubliceerd door de workflow via Trusted Publishing",
|
|
12
|
+
"fr": "les mots clés contiennent désormais « ioBroker », comme le demande\nles versions sont publiées par le workflow via Trusted Publishing",
|
|
13
|
+
"it": "le parole chiave ora contengono «IOBroker», come chiede\nle release sono pubblicate dal workflow tramite Trusted Publishing",
|
|
14
|
+
"es": "las palabras clave ahora contienen «ioBroker», como pide el adaptador\nlos lanzamientos los publica el flujo de trabajo a través de publicaciones confiables",
|
|
15
|
+
"pl": "słowa kluczowe zawierają teraz „iOBroker”, o co prosi moduł sprawdzania adaptera\nwydania są publikowane przez przepływ pracy za pomocą zaufanego publikowania",
|
|
16
|
+
"uk": "Ключові слова тепер містять «IObroker», як просить перевірка адаптера\nвипуски публікуються робочим процесом через довірену публікацію",
|
|
17
|
+
"zh-cn": "关键字现在包含 “IOBroker”,正如适配器检查器要求的那样\n版本由工作流程通过可信发布发布"
|
|
18
|
+
},
|
|
19
|
+
"0.0.1": {
|
|
20
|
+
"en": "initial release",
|
|
21
|
+
"de": "Erstveröffentlichung",
|
|
22
|
+
"ru": "Начальная версия",
|
|
23
|
+
"pt": "lançamento inicial",
|
|
24
|
+
"nl": "Eerste uitgave",
|
|
25
|
+
"fr": "Première version",
|
|
26
|
+
"it": "Versione iniziale",
|
|
27
|
+
"es": "Versión inicial",
|
|
28
|
+
"pl": "Pierwsze wydanie",
|
|
29
|
+
"uk": "Початкова версія",
|
|
30
|
+
"zh-cn": "首次出版"
|
|
31
|
+
}
|
|
90
32
|
},
|
|
91
|
-
"
|
|
92
|
-
|
|
93
|
-
|
|
33
|
+
"titleLang": {
|
|
34
|
+
"en": "CometVisu",
|
|
35
|
+
"de": "CometVisu",
|
|
36
|
+
"ru": "КометВизу",
|
|
37
|
+
"pt": "CometaVisu",
|
|
38
|
+
"nl": "KomeetVisu",
|
|
39
|
+
"fr": "ComèteVisu",
|
|
40
|
+
"it": "CometaVisu",
|
|
41
|
+
"es": "CometaVisu",
|
|
42
|
+
"pl": "CometVisu",
|
|
43
|
+
"uk": "CometVisu",
|
|
44
|
+
"zh-cn": "彗星维苏"
|
|
94
45
|
},
|
|
95
|
-
"
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
46
|
+
"desc": {
|
|
47
|
+
"en": "Serves the CometVisu visualization through the ioBroker web adapter",
|
|
48
|
+
"de": "Liefert die CometVisu-Visualisierung über den ioBroker-web-Adapter aus",
|
|
49
|
+
"ru": "Предоставляет визуализацию CometVisu через веб-адаптер ioBroker",
|
|
50
|
+
"pt": "Fornece a visualização CometVisu através do adaptador web do ioBroker",
|
|
51
|
+
"nl": "Levert de CometVisu-visualisatie via de ioBroker-webadapter",
|
|
52
|
+
"fr": "Fournit la visualisation CometVisu via l'adaptateur web d'ioBroker",
|
|
53
|
+
"it": "Fornisce la visualizzazione CometVisu tramite l'adattatore web di ioBroker",
|
|
54
|
+
"es": "Sirve la visualización CometVisu a través del adaptador web de ioBroker",
|
|
55
|
+
"pl": "Udostępnia wizualizację CometVisu przez adapter web ioBrokera",
|
|
56
|
+
"uk": "Надає візуалізацію CometVisu через вебадаптер ioBroker",
|
|
57
|
+
"zh-cn": "通过 ioBroker web 适配器提供 CometVisu 可视化界面"
|
|
58
|
+
},
|
|
59
|
+
"authors": [
|
|
60
|
+
"Florian Schirmer <jolt@tuxbox.org>"
|
|
61
|
+
],
|
|
62
|
+
"keywords": [
|
|
63
|
+
"ioBroker",
|
|
64
|
+
"cometvisu",
|
|
65
|
+
"visualization",
|
|
66
|
+
"websocket",
|
|
67
|
+
"web"
|
|
68
|
+
],
|
|
69
|
+
"licenseInformation": {
|
|
70
|
+
"type": "free",
|
|
71
|
+
"license": "MIT"
|
|
72
|
+
},
|
|
73
|
+
"platform": "Javascript/Node.js",
|
|
74
|
+
"icon": "cometvisu.png",
|
|
75
|
+
"enabled": true,
|
|
76
|
+
"extIcon": "https://raw.githubusercontent.com/joltcoke/ioBroker.cometvisu/main/admin/cometvisu.png",
|
|
77
|
+
"readme": "https://github.com/joltcoke/ioBroker.cometvisu/blob/main/README.md",
|
|
78
|
+
"loglevel": "info",
|
|
79
|
+
"tier": 3,
|
|
80
|
+
"mode": "daemon",
|
|
81
|
+
"type": "visualization",
|
|
82
|
+
"compact": true,
|
|
83
|
+
"connectionType": "local",
|
|
84
|
+
"dataSource": "push",
|
|
85
|
+
"adminUI": {
|
|
86
|
+
"config": "json"
|
|
87
|
+
},
|
|
88
|
+
"dependencies": [
|
|
89
|
+
{
|
|
90
|
+
"js-controller": ">=6.0.11"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"web": ">=7.0.3"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"globalDependencies": [
|
|
97
|
+
{
|
|
98
|
+
"admin": ">=7.0.23"
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
"messagebox": true,
|
|
102
|
+
"localLinks": {
|
|
103
|
+
"ui": {
|
|
104
|
+
"link": "%web_protocol%://%ip%:%web_port%/cometvisu/",
|
|
105
|
+
"name": "CometVisu",
|
|
106
|
+
"color": "greenLight",
|
|
107
|
+
"order": 10
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"webExtension": "build/lib/web.js"
|
|
111
|
+
},
|
|
112
|
+
"native": {
|
|
113
|
+
"version": "",
|
|
114
|
+
"webInstance": "web.0"
|
|
115
|
+
},
|
|
116
|
+
"objects": [],
|
|
117
|
+
"instanceObjects": [
|
|
118
|
+
{
|
|
119
|
+
"_id": "files",
|
|
120
|
+
"type": "meta",
|
|
121
|
+
"common": {
|
|
122
|
+
"name": "CometVisu build uploads",
|
|
123
|
+
"type": "meta.user"
|
|
124
|
+
},
|
|
125
|
+
"native": {}
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"_id": "info",
|
|
129
|
+
"type": "channel",
|
|
130
|
+
"common": {
|
|
131
|
+
"name": "Information"
|
|
132
|
+
},
|
|
133
|
+
"native": {}
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"_id": "info.connection",
|
|
137
|
+
"type": "state",
|
|
138
|
+
"common": {
|
|
139
|
+
"role": "indicator.connected",
|
|
140
|
+
"name": "CometVisu build ready",
|
|
141
|
+
"type": "boolean",
|
|
142
|
+
"read": true,
|
|
143
|
+
"write": false,
|
|
144
|
+
"def": false
|
|
145
|
+
},
|
|
146
|
+
"native": {}
|
|
147
|
+
}
|
|
148
|
+
]
|
|
128
149
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iobroker.cometvisu",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Serves the CometVisu visualization through the ioBroker web adapter",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Florian Schirmer",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"homepage": "https://github.com/joltcoke/ioBroker.cometvisu",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"keywords": [
|
|
13
|
+
"ioBroker",
|
|
13
14
|
"cometvisu",
|
|
14
15
|
"visualization",
|
|
15
16
|
"websocket",
|