iobroker.zigbee 3.1.2 → 3.1.4
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 +14 -1
- package/admin/admin.js +369 -191
- package/admin/index_m.html +30 -6
- package/admin/tab_m.html +31 -11
- package/io-package.json +42 -39
- package/lib/DeviceDebug.js +25 -2
- package/lib/binding.js +7 -7
- package/lib/commands.js +279 -249
- package/lib/developer.js +1 -1
- package/lib/devices.js +2 -2
- package/lib/exclude.js +1 -1
- package/lib/exposes.js +54 -24
- package/lib/groups.js +26 -28
- package/lib/localConfig.js +8 -8
- package/lib/networkmap.js +10 -2
- package/lib/statescontroller.js +134 -90
- package/lib/zbDelayedAction.js +4 -4
- package/lib/zbDeviceAvailability.js +32 -33
- package/lib/zbDeviceConfigure.js +7 -0
- package/lib/zbDeviceEvent.js +39 -6
- package/lib/zigbeecontroller.js +91 -43
- package/main.js +31 -38
- package/package.json +5 -8
- package/lib/tools.js +0 -55
package/README.md
CHANGED
|
@@ -152,10 +152,23 @@ You can thank the authors by these links:
|
|
|
152
152
|
|
|
153
153
|
-----------------------------------------------------------------------------------------------------
|
|
154
154
|
## Changelog
|
|
155
|
+
### 3.1.4 (2025-09-26)
|
|
156
|
+
* (asgothian) Remove extra logging
|
|
157
|
+
* (asgothian) Add extra configurations
|
|
158
|
+
* (asgothian) Do not read states from deactivated devices
|
|
159
|
+
* (asgothian) Ignore deactivated devices for group state updates
|
|
160
|
+
* (asgothian) Change display for deactivated devices in the object tree (gray, no connected icon)
|
|
161
|
+
* (asgothian) more detailed device debug
|
|
162
|
+
* (asgothian) device debug UI improvements
|
|
163
|
+
* (asgothian) Pairing and device Query buttons on router cards
|
|
164
|
+
* (asgothian) ZHC 25.31.0, ZH 6.1.2 or newer
|
|
165
|
+
* (asgothian) Options based on ZHC defined options
|
|
166
|
+
|
|
155
167
|
### 3.1.2 (2025-09-15)
|
|
156
168
|
* (asgothian) Fix pairing bug
|
|
157
169
|
* (asgothian) add ping messages to device debug to verify ping failure reasons
|
|
158
|
-
*
|
|
170
|
+
* (asgothian) Fix bug that blocked group names and renaming
|
|
171
|
+
* (asgothian) removed extra warning message for resolveEntity
|
|
159
172
|
|
|
160
173
|
### 3.1.1 (2025-09-14)
|
|
161
174
|
* (asgothian) ZHC 25.x ZH 6.x
|