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 CHANGED
@@ -9,8 +9,9 @@
9
9
  [![Translation status](https://weblate.iobroker.net/widgets/adapters/-/zigbee/svg-badge.svg)](https://weblate.iobroker.net/engage/adapters/?utm_source=widget)
10
10
  [![Downloads](https://img.shields.io/npm/dm/iobroker.zigbee.svg)](https://www.npmjs.com/package/iobroker.zigbee)
11
11
 
12
- ## ioBroker adapter for Zigbee devices via TI cc2531/cc2530/cc26x2r/cc2538 and deCONZ ConBee/RaspBee.
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
- // systemLang = res.common.language || systemLang;
58
+ systemLang = res.common.language;
59
59
  systemConfig = res;
60
60
  }
61
61
  socket.emit('getObject', 'system.certificates', function (err, res) {
package/admin/admin.js CHANGED
@@ -2552,7 +2552,7 @@ function showChannels() {
2552
2552
  }
2553
2553
  }
2554
2554
  });
2555
- showWaitingDialog('Scanning channels - not working yet', 10);
2555
+ showWaitingDialog('Scanning channels', 10);
2556
2556
  }
2557
2557
 
2558
2558
  function onlyOne(devs) {