iobroker.zigbee 3.2.5 → 3.3.1-alpha.0
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 +16 -0
- package/admin/admin.js +376 -267
- package/admin/index_m.html +21 -32
- package/admin/tab_m.html +14 -2
- package/io-package.json +31 -31
- package/lib/commands.js +120 -76
- package/lib/exclude.js +1 -1
- package/lib/exposes.js +187 -77
- package/lib/groups.js +28 -15
- package/lib/{devices.js → legacy/devices.js} +27 -3
- package/lib/{states.js → legacy/states.js} +3 -3
- package/lib/localConfig.js +42 -0
- package/lib/models.js +615 -0
- package/lib/networkmap.js +15 -5
- package/lib/statescontroller.js +312 -297
- package/lib/utils.js +3 -4
- package/lib/zbBaseExtension.js +4 -0
- package/lib/zbDeviceAvailability.js +16 -23
- package/lib/zbDeviceConfigure.js +21 -8
- package/lib/zigbeecontroller.js +134 -88
- package/main.js +38 -42
- package/package.json +14 -15
package/README.md
CHANGED
|
@@ -154,6 +154,22 @@ You can thank the authors by these links:
|
|
|
154
154
|
|
|
155
155
|
-----------------------------------------------------------------------------------------------------
|
|
156
156
|
## Changelog
|
|
157
|
+
### 3.3.1-alpha.0 (2025-12-08)
|
|
158
|
+
*
|
|
159
|
+
*
|
|
160
|
+
|
|
161
|
+
### 3.3.0 (2025-12-08)
|
|
162
|
+
* Fix: dynamic model assignment when exposes is function (PTVO, BuschJaeger)
|
|
163
|
+
* Fix: Roles
|
|
164
|
+
* Refactor: Legacy code moved
|
|
165
|
+
* Refactor: Expose creation changed.
|
|
166
|
+
* Refactor: Exposes no longer use states from legacy code
|
|
167
|
+
* Feature: Offer state rebuild function in Settings
|
|
168
|
+
* (mh2134): Additional filters for device display
|
|
169
|
+
* Fix: Orphaned group states detected, marked and deletable
|
|
170
|
+
* Update: ZH 7.x
|
|
171
|
+
* Update: ZHC 25.84.0
|
|
172
|
+
|
|
157
173
|
### 3.2.5 (2025-10-31)
|
|
158
174
|
* (asgothian) changed setState for lasterror
|
|
159
175
|
|