iobroker.zigbee 3.0.5 → 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 +34 -0
- package/admin/admin.js +475 -230
- package/admin/i18n/de/translations.json +16 -16
- package/admin/index_m.html +84 -91
- package/admin/tab_m.html +38 -16
- package/docs/de/readme.md +1 -1
- package/docs/en/readme.md +4 -2
- package/io-package.json +35 -28
- package/lib/DeviceDebug.js +25 -2
- package/lib/binding.js +8 -8
- package/lib/commands.js +386 -326
- package/lib/developer.js +2 -2
- package/lib/devices.js +13 -9
- package/lib/exclude.js +1 -1
- package/lib/exposes.js +56 -24
- package/lib/groups.js +408 -73
- package/lib/localConfig.js +23 -12
- package/lib/networkmap.js +10 -2
- package/lib/states.js +32 -2
- package/lib/statescontroller.js +361 -209
- package/lib/utils.js +7 -5
- package/lib/zbDelayedAction.js +4 -4
- package/lib/zbDeviceAvailability.js +102 -46
- package/lib/zbDeviceConfigure.js +7 -0
- package/lib/zbDeviceEvent.js +40 -7
- package/lib/zigbeecontroller.js +552 -75
- package/main.js +168 -505
- package/package.json +8 -11
- package/lib/tools.js +0 -55
package/README.md
CHANGED
|
@@ -152,6 +152,40 @@ 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
|
+
|
|
167
|
+
### 3.1.2 (2025-09-15)
|
|
168
|
+
* (asgothian) Fix pairing bug
|
|
169
|
+
* (asgothian) add ping messages to device debug to verify ping failure reasons
|
|
170
|
+
* (asgothian) Fix bug that blocked group names and renaming
|
|
171
|
+
* (asgothian) removed extra warning message for resolveEntity
|
|
172
|
+
|
|
173
|
+
### 3.1.1 (2025-09-14)
|
|
174
|
+
* (asgothian) ZHC 25.x ZH 6.x
|
|
175
|
+
* (asgothian) Refactor main/statescontroller/zigbeecontroller
|
|
176
|
+
* (asgothian) Allow groups to trigger member state reads (via state memberupdate)
|
|
177
|
+
* (asgothian) Allow groups to set state based on accumulated member states (via state stateupdate)
|
|
178
|
+
* (asgothian) Trigger state read at device announce (via Settings: Read states at device announce)
|
|
179
|
+
* (asgothian) Trigger state read at adapter start for all pingable devices (via settings: 'try to read all states at adapter start' and 'read delay' (in seconds))
|
|
180
|
+
* (asgothian) Bugfix: Error in automatic restart function
|
|
181
|
+
* (asgothian) Bugfix: Error in device_query blocked certain states from being read
|
|
182
|
+
* (asgothian) Change to device Query: 15 second delay between queries only for automated queries. Manual queries are not affected
|
|
183
|
+
|
|
184
|
+
### 3.1.0 (2025-08-02)
|
|
185
|
+
* (asgothian) ZHC 24.9.0
|
|
186
|
+
* (asgothian) ZH 5.x
|
|
187
|
+
* (asgothian) extend and stop pairing countdown
|
|
188
|
+
|
|
155
189
|
### 3.0.5 (2025-08-27)
|
|
156
190
|
* (asgothian) fix random error where devices are not shown due to illegal groups
|
|
157
191
|
* (asgothian) drop support for node 18
|