iobroker.javascript 5.4.2 → 5.4.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 +4 -5
- package/admin/asset-manifest.json +3 -3
- package/admin/static/js/{main.950f82fc.chunk.js → main.641ff6ac.chunk.js} +2 -2
- package/admin/static/js/{main.950f82fc.chunk.js.map → main.641ff6ac.chunk.js.map} +1 -1
- package/admin/tab.html +1 -1
- package/docs/en/javascript.md +111 -129
- package/io-package.json +13 -13
- package/lib/scheduler.js +10 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,6 +38,10 @@ 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.4.3 (2022-03-17)
|
|
42
|
+
* (Apollon77) Fix handling of month schedules with given date list
|
|
43
|
+
* (Apollon77) Optimize scheduling to make sure to not miss triggers if callbacks would need too long
|
|
44
|
+
|
|
41
45
|
### 5.4.2 (2022-03-15)
|
|
42
46
|
* (Apollon77) Fix automatic start of Rules scripts when starting adapter
|
|
43
47
|
|
|
@@ -54,11 +58,6 @@ And then call `npm run build`.
|
|
|
54
58
|
### 5.3.3 (2022-03-06)
|
|
55
59
|
* (bluefox) Added async functions: createStateAsync, deleteStateAsync
|
|
56
60
|
|
|
57
|
-
### 5.3.2 (2022-03-06)
|
|
58
|
-
* (Apollon77) fix problem that scripts were not starting when scriptsEnabled State was triggered (or startScript was used)
|
|
59
|
-
* (Apollon77) Make sure callbacks on startScript/stopScript work and Async variants also resolve
|
|
60
|
-
* (Apollon77) Make sure startScriptAsync, stopScriptAsync and runScriptAsync resolve in debug mode too
|
|
61
|
-
|
|
62
61
|
## License
|
|
63
62
|
The MIT License (MIT)
|
|
64
63
|
|
|
@@ -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.641ff6ac.chunk.js",
|
|
5
|
+
"main.js.map": "/static/js/main.641ff6ac.chunk.js.map",
|
|
6
6
|
"runtime-main.js": "/static/js/runtime-main.0fde2268.js",
|
|
7
7
|
"runtime-main.js.map": "/static/js/runtime-main.0fde2268.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.d453b3f2.chunk.js",
|
|
21
21
|
"static/css/main.5b5813ce.chunk.css",
|
|
22
|
-
"static/js/main.
|
|
22
|
+
"static/js/main.641ff6ac.chunk.js"
|
|
23
23
|
]
|
|
24
24
|
}
|