homebridge-midea-platform 1.1.0 → 1.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  # Changelog
2
2
 
3
3
  # v1.1.0
4
- ## 2024-06-22
4
+ ## 2024-07-13
5
5
  - BREAKING CHANGE: `Air Conditioner` configuration changed: there is now a possibility to create an accessory which can be used to control the slats on the unit. THe configuration structure has changed. Please check [AC docs](/docs/ac.md) for more information (or just save the configuration again in the plugin settings to get the new structure).
6
6
  - feat: added support for `Fans` (fixes #74)
7
7
  - feat: added feature to turn off the display by default on power on for `Air Conditioners`
package/README.md CHANGED
@@ -24,6 +24,7 @@ Currently supports the following devices:
24
24
  | Dehumidifier | A1 | [link](/docs/a1.md) |
25
25
  | Electric Water Heater | E2 | [link](/docs/e2.md) |
26
26
  | Gas Water Heater | E3 | [link](/docs/e3.md) |
27
+ | Fan | FA | [link](/docs/fa.md) |
27
28
 
28
29
  ### Unsupported Devices
29
30
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "Homebridge Midea Platform",
3
3
  "name": "homebridge-midea-platform",
4
- "version": "1.1.0",
4
+ "version": "1.1.1",
5
5
  "description": "Homebridge plugin for Midea devices",
6
6
  "license": "Apache-2.0",
7
7
  "repository": {
@@ -35,11 +35,16 @@
35
35
  "prepare": "husky install"
36
36
  },
37
37
  "lint-staged": {
38
- "*.ts": ["prettier --write", "eslint --fix"]
38
+ "*.ts": [
39
+ "prettier --write",
40
+ "eslint --fix"
41
+ ]
39
42
  },
40
- "keywords": ["homebridge-plugin"],
43
+ "keywords": [
44
+ "homebridge-plugin"
45
+ ],
41
46
  "dependencies": {
42
- "@homebridge/plugin-ui-utils": "^1.0.0",
47
+ "@homebridge/plugin-ui-utils": "^1.0.3",
43
48
  "axios": "^1.5.0",
44
49
  "fast-xml-parser": "^4.2.7",
45
50
  "lodash": "^4.17.21",