zigbee-herdsman-converters 18.25.0 → 18.25.1
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/CHANGELOG.md +10 -0
- package/devices/lumi.d.ts.map +1 -1
- package/devices/lumi.js +4 -1
- package/devices/lumi.js.map +1 -1
- package/devices/tuya.js +1 -1
- package/devices/tuya.js.map +1 -1
- package/lib/lumi.d.ts.map +1 -1
- package/lib/lumi.js +17 -1
- package/lib/lumi.js.map +1 -1
- package/lib/modernExtend.js +1 -1
- package/lib/modernExtend.js.map +1 -1
- package/lib/ota/zigbeeOTA.d.ts.map +1 -1
- package/lib/ota/zigbeeOTA.js +5 -4
- package/lib/ota/zigbeeOTA.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [18.25.1](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v18.25.0...v18.25.1) (2024-01-31)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **detect:** Detect `_TZ3000_imaccztn` as MHCOZY TYWB 4ch-RF ([#6981](https://github.com/Koenkk/zigbee-herdsman-converters/issues/6981)) ([c46539c](https://github.com/Koenkk/zigbee-herdsman-converters/commit/c46539c152cdd334f7ae6bb6ba201f30eeb3e22b))
|
|
9
|
+
* Fix `Cannot read properties of undefined (reading 'find')` https://github.com/Koenkk/zigbee2mqtt/issues/21123 ([f171433](https://github.com/Koenkk/zigbee-herdsman-converters/commit/f1714330daf860167f0e9c6bc04f2b1336fbfa8d))
|
|
10
|
+
* Fix display of incorrect firmware version for Aqara `ZNCLBL01LM` ([#6983](https://github.com/Koenkk/zigbee-herdsman-converters/issues/6983)) ([2e693cb](https://github.com/Koenkk/zigbee-herdsman-converters/commit/2e693cb16420a5baed051e51862267e457f56ba8))
|
|
11
|
+
* **ignore:** fix c46539c152cdd334f7ae6bb6ba201f30eeb3e22b ([f15f085](https://github.com/Koenkk/zigbee-herdsman-converters/commit/f15f0854f879b98525f779bced24ef4eceb45e0a))
|
|
12
|
+
|
|
3
13
|
## [18.25.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v18.24.0...v18.25.0) (2024-01-30)
|
|
4
14
|
|
|
5
15
|
|
package/devices/lumi.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lumi.d.ts","sourceRoot":"","sources":["../src/devices/lumi.ts"],"names":[],"mappings":"AAwBA,OAAO,EAAC,UAAU,EAA4B,MAAM,cAAc,CAAC;AA8fnE,QAAA,MAAM,WAAW,EAAE,UAAU,
|
|
1
|
+
{"version":3,"file":"lumi.d.ts","sourceRoot":"","sources":["../src/devices/lumi.ts"],"names":[],"mappings":"AAwBA,OAAO,EAAC,UAAU,EAA4B,MAAM,cAAc,CAAC;AA8fnE,QAAA,MAAM,WAAW,EAAE,UAAU,EAs+F5B,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
package/devices/lumi.js
CHANGED
|
@@ -146,7 +146,7 @@ const fzLocal = {
|
|
|
146
146
|
break;
|
|
147
147
|
}
|
|
148
148
|
case 0x00EE: {
|
|
149
|
-
meta.device.meta.
|
|
149
|
+
meta.device.meta.lumiFileVersion = value;
|
|
150
150
|
meta.device.save();
|
|
151
151
|
break;
|
|
152
152
|
}
|
|
@@ -2365,6 +2365,9 @@ const definitions = [
|
|
|
2365
2365
|
],
|
|
2366
2366
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
2367
2367
|
const endpoint = device.getEndpoint(1);
|
|
2368
|
+
// Read correct version to replace version advertised by `genBasic` and `genOta`:
|
|
2369
|
+
// https://github.com/Koenkk/zigbee2mqtt/issues/15745
|
|
2370
|
+
await endpoint.read('manuSpecificLumi', [0x00EE], { manufacturerCode: manufacturerCode });
|
|
2368
2371
|
await endpoint.read('genPowerCfg', ['batteryPercentageRemaining']);
|
|
2369
2372
|
await endpoint.read('manuSpecificLumi', [0x040B], { manufacturerCode: manufacturerCode });
|
|
2370
2373
|
await endpoint.read('manuSpecificLumi', [0x0428], { manufacturerCode: manufacturerCode });
|