iobroker.zigbee 1.10.11 → 1.10.12
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 -0
- 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 +14 -14
- package/lib/zigbeecontroller.js +11 -50
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -136,6 +136,9 @@ You can thank the authors by these links:
|
|
|
136
136
|
|
|
137
137
|
-----------------------------------------------------------------------------------------------------
|
|
138
138
|
## Changelog
|
|
139
|
+
### 1.10.12 (2024-11-03)
|
|
140
|
+
* (asgothian) corr Channel Scan
|
|
141
|
+
|
|
139
142
|
### 1.10.11 (2024-11-02)
|
|
140
143
|
* BREAKING CHANGE
|
|
141
144
|
*
|
|
@@ -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) {
|