homebridge-midea-platform 1.2.4 → 1.2.5-beta.2
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/.zed/settings.json +12 -0
- package/CHANGELOG.md +4 -0
- package/README.md +8 -1
- package/ac.lua +5150 -0
- package/dist/core/MideaCloud.js +6 -6
- package/dist/core/MideaCloud.js.map +1 -1
- package/homebridge-ui/public/index.html +11 -36
- package/homebridge-ui/server.js +6 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
# v1.2.5
|
|
4
|
+
- fix: getting tokens/key for devices
|
|
5
|
+
- IMPORTANT CHANGE: please read the [README](README.md#important-notice) about the change fetching the tokens
|
|
6
|
+
|
|
3
7
|
# v1.2.4
|
|
4
8
|
- feat: added support for `Humidifiers` (fixes #114)
|
|
5
9
|
- fix: mark accessories as 'Not responding' if the device is presumed offline
|
package/README.md
CHANGED
|
@@ -14,6 +14,13 @@ Pull requests and/or other offers of development assistance gratefully received.
|
|
|
14
14
|
|
|
15
15
|
More information can be found in the [wiki](https://github.com/kovapatrik/homebridge-midea-platform/wiki).
|
|
16
16
|
|
|
17
|
+
## IMPORTANT NOTICE
|
|
18
|
+
- As written by [@wuwentao](https://github.com/wuwentao) in the [midea_ac_lan repository](https://github.com/wuwentao/midea_ac_lan), Midea disabled the token fetching APIs in both Meiju and Midea SmartHome, and now it's only available using the NetHome Plus API.
|
|
19
|
+
- It's expected that the token fetching in NetHome Plus API will be disabled as well.
|
|
20
|
+
- Make sure you save your devices' token and key to be able to usem them in the future.
|
|
21
|
+
- [@wuwentao](https://github.com/wuwentao) also wrote a nice summary about the history of what happened: https://github.com/mill1000/midea-msmart/issues/201#issuecomment-2746782457
|
|
22
|
+
- For these reasons, only NetHome Plus is enabled in the discovery process.
|
|
23
|
+
|
|
17
24
|
## Features
|
|
18
25
|
|
|
19
26
|
Currently supports the following devices:
|
|
@@ -56,7 +63,7 @@ You should use the UI to discover and add devices. More information on the setti
|
|
|
56
63
|
|
|
57
64
|
## License
|
|
58
65
|
|
|
59
|
-
Copyright (c) 2023 [Kovalovszky Patrik](https://github.com/kovapatrik),
|
|
66
|
+
Copyright (c) 2023 [Kovalovszky Patrik](https://github.com/kovapatrik),
|
|
60
67
|
Copyright (c) 2023 [David A. Kerr](https://github.com/dkerr64)
|
|
61
68
|
|
|
62
69
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this program except in compliance with the License. You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
|