iobroker.ebus 3.0.6 → 3.0.7
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 -1
- package/io-package.json +13 -1
- package/main.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ There is a possibillity to poll data which are not polled by ebusd directly. Com
|
|
|
30
30
|
|
|
31
31
|
Another feature is to send any command to ebusd and receive answer to work with e.g. scripts.
|
|
32
32
|
|
|
33
|
-
current supported ebusd-version: 22.
|
|
33
|
+
current supported ebusd-version: 22.3
|
|
34
34
|
|
|
35
35
|
**Attention** with ebusd - version 22.1 config path has been changed to http://cfg.ebusd.eu/. Make sure you change it in your installation of ebusd.
|
|
36
36
|
details see in [changelog](https://github.com/john30/ebusd/blob/master/ChangeLog.md)
|
|
@@ -55,6 +55,9 @@ Attention: command in datapoint ebus.0.cmd is deleted after executing of command
|
|
|
55
55
|
|
|
56
56
|
## Changelog
|
|
57
57
|
|
|
58
|
+
### 3.0.7 (2022-08-20)
|
|
59
|
+
* (René) support ebusd 22.3
|
|
60
|
+
|
|
58
61
|
### 3.0.6 (2022-08-19)
|
|
59
62
|
* (René) bug fix in tooltip in wizard
|
|
60
63
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "ebus",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.7",
|
|
5
5
|
"news": {
|
|
6
|
+
"3.0.7": {
|
|
7
|
+
"en": "support of ebusd 22.3",
|
|
8
|
+
"de": "Unterstützung von ebusd 22.3",
|
|
9
|
+
"ru": "поддержка ebusd 22.3",
|
|
10
|
+
"pt": "suporte de ebusd 22.3",
|
|
11
|
+
"nl": "ondersteuning van ebusd 22.3",
|
|
12
|
+
"fr": "prise en charge d'ebusd 22.3",
|
|
13
|
+
"it": "supporto di ebusd 22.3",
|
|
14
|
+
"es": "soporte de ebusd 22.3",
|
|
15
|
+
"pl": "obsługa ebusd 22.3",
|
|
16
|
+
"zh-cn": "支持 ebusd 22.3"
|
|
17
|
+
},
|
|
6
18
|
"3.0.6": {
|
|
7
19
|
"en": "widget with tooltip",
|
|
8
20
|
"de": "Widget mit Tooltip",
|
package/main.js
CHANGED