iobroker.zigbee 1.10.11 → 1.10.13
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 +9 -2
- package/admin/adapter-settings.js +1 -1
- package/admin/admin.js +1 -1
- package/admin/vis-network.min.css +1 -1
- package/io-package.json +27 -27
- package/lib/statescontroller.js +3 -2
- package/lib/zigbeecontroller.js +11 -50
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -9,8 +9,9 @@
|
|
|
9
9
|
[](https://weblate.iobroker.net/engage/adapters/?utm_source=widget)
|
|
10
10
|
[](https://www.npmjs.com/package/iobroker.zigbee)
|
|
11
11
|
|
|
12
|
-
## ioBroker adapter for Zigbee devices via TI
|
|
13
|
-
|
|
12
|
+
## ioBroker adapter for Zigbee devices via TI cc26x2r/cc2538/cc26x2px and deCONZ ConBee/RaspBee.
|
|
13
|
+
### cc2531/cc2530 are obsolet
|
|
14
|
+
|
|
14
15
|
With the Zigbee-coordinator based on Texas Instruments SoC, deCONZ ConBee/RaspBee modules, Silicon Labs EZSP v8 or ZIGate USB-TTL it creates its own zigbee-network, into which zigbee-devices are connected.
|
|
15
16
|
|
|
16
17
|
|
|
@@ -136,6 +137,12 @@ You can thank the authors by these links:
|
|
|
136
137
|
|
|
137
138
|
-----------------------------------------------------------------------------------------------------
|
|
138
139
|
## Changelog
|
|
140
|
+
### 1.10.13 (2024-11-10)
|
|
141
|
+
* (arteck) corr icon download bug (axios)
|
|
142
|
+
|
|
143
|
+
### 1.10.12 (2024-11-03)
|
|
144
|
+
* (asgothian) corr Channel Scan
|
|
145
|
+
|
|
139
146
|
### 1.10.11 (2024-11-02)
|
|
140
147
|
* BREAKING CHANGE
|
|
141
148
|
*
|
|
@@ -55,7 +55,7 @@ $(document).ready(function () {
|
|
|
55
55
|
function loadSystemConfig(callback) {
|
|
56
56
|
socket.emit('getObject', 'system.config', function (err, res) {
|
|
57
57
|
if (!err && res && res.common) {
|
|
58
|
-
|
|
58
|
+
systemLang = res.common.language;
|
|
59
59
|
systemConfig = res;
|
|
60
60
|
}
|
|
61
61
|
socket.emit('getObject', 'system.certificates', function (err, res) {
|