homebridge-midea-platform 1.2.6-beta.11 → 1.2.6-beta.12

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
@@ -3,6 +3,7 @@
3
3
  # v1.2.6
4
4
  - feat: added support for `Fresh Air Appliance` (fixes #118)
5
5
  - feat: added sleep mode switch for `Air Conditioner` (fixes #128)
6
+ - fix: store and display name of sub-service if it's changed from the Home app (fixed #120)
6
7
 
7
8
  # v1.2.5
8
9
  - fix: getting tokens/key for devices
@@ -348,10 +348,10 @@
348
348
  }
349
349
  },
350
350
  "CE_options": {
351
- "title": "Top Load Washer Options",
351
+ "title": "Fresh Air Appliance Options",
352
352
  "type": "object",
353
353
  "condition": {
354
- "functionBody": "return model.devices && model.devices[arrayIndices].type === 'Top Load Washer';"
354
+ "functionBody": "return model.devices && model.devices[arrayIndices].type === 'Fresh Air Appliance';"
355
355
  },
356
356
  "properties": {
357
357
  "silentMode": {
@@ -5,5 +5,6 @@ If you need support for a device, or a new feature for an existing one, please d
5
5
  2. Do the discovery process through the UI
6
6
  - Here you must your or the default NetHome Plus account (if you don't have your own account in these apps)
7
7
  3. After the discovery ends, there will be table of discovered devices
8
- 4. In the `Model` column, the model of your device will be a button, which you can click to download the lua script for the device.
9
- 5. After downloading the script, open an issue about the feature you need and attach the lua script to it (or open an issue and send me the script in email, it's `kovapatrik@gmail.com`)
8
+ 4. In the `Model` column, the model of your device will be a button, which you can click top initiate fetching the lua file which will be shown in a modal.
9
+ 5. Save the content of the file in a text file with a `.lua` extension. (there is a suggestion for the file name as well, but you can choose any name you like)
10
+ 6. Open an issue about the feature you need and attach the lua script to it (or open an issue and send me the script in email, it's `kovapatrik@gmail.com`)
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "displayName": "Homebridge Midea Platform",
3
3
  "name": "homebridge-midea-platform",
4
4
  "type": "module",
5
- "version": "1.2.6-beta.11",
5
+ "version": "1.2.6-beta.12",
6
6
  "description": "Homebridge plugin for Midea devices",
7
7
  "license": "Apache-2.0",
8
8
  "repository": {