iobroker.javascript 5.3.2 → 5.3.3
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/admin/asset-manifest.json +3 -3
- package/admin/static/js/{main.9c6dd193.chunk.js → main.55d1a215.chunk.js} +2 -2
- package/admin/static/js/{main.9c6dd193.chunk.js.map → main.55d1a215.chunk.js.map} +1 -1
- package/admin/tab.html +1 -1
- package/docs/en/javascript.md +17 -1
- package/io-package.json +13 -13
- package/lib/sandbox.js +15 -5
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -38,6 +38,9 @@ And then call `npm run build`.
|
|
|
38
38
|
Placeholder for the next version (at the beginning of the line):
|
|
39
39
|
### __WORK IN PROGRESS__
|
|
40
40
|
-->
|
|
41
|
+
### 5.3.3 (2022-03-06)
|
|
42
|
+
* (bluefox) Added async functions: createStateAsync, deleteStateAsync
|
|
43
|
+
|
|
41
44
|
### 5.3.2 (2022-03-06)
|
|
42
45
|
* (Apollon77) fix problem that scripts were not starting when scriptsEnabled State was triggered (or startScript was used)
|
|
43
46
|
* (Apollon77) Make sure callbacks on startScript/stopScript work and Async variants also resolve
|
|
@@ -57,9 +60,6 @@ And then call `npm run build`.
|
|
|
57
60
|
### 5.2.21 (2022-01-16)
|
|
58
61
|
* (bluefox) Fixed build process
|
|
59
62
|
|
|
60
|
-
### 5.2.19 (2022-01-10)
|
|
61
|
-
* (AlCalzone) Fixed broken dependency
|
|
62
|
-
|
|
63
63
|
## License
|
|
64
64
|
The MIT License (MIT)
|
|
65
65
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"files": {
|
|
3
3
|
"main.css": "/static/css/main.5b5813ce.chunk.css",
|
|
4
|
-
"main.js": "/static/js/main.
|
|
5
|
-
"main.js.map": "/static/js/main.
|
|
4
|
+
"main.js": "/static/js/main.55d1a215.chunk.js",
|
|
5
|
+
"main.js.map": "/static/js/main.55d1a215.chunk.js.map",
|
|
6
6
|
"runtime-main.js": "/static/js/runtime-main.367f9424.js",
|
|
7
7
|
"runtime-main.js.map": "/static/js/runtime-main.367f9424.js.map",
|
|
8
8
|
"static/css/2.a442f2b4.chunk.css": "/static/css/2.a442f2b4.chunk.css",
|
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
"static/css/2.a442f2b4.chunk.css",
|
|
20
20
|
"static/js/2.b35d4219.chunk.js",
|
|
21
21
|
"static/css/main.5b5813ce.chunk.css",
|
|
22
|
-
"static/js/main.
|
|
22
|
+
"static/js/main.55d1a215.chunk.js"
|
|
23
23
|
]
|
|
24
24
|
}
|