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 +1 -0
- package/config.schema.json +2 -2
- package/docs/download_lua.md +3 -2
- package/package.json +1 -1
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
|
package/config.schema.json
CHANGED
|
@@ -348,10 +348,10 @@
|
|
|
348
348
|
}
|
|
349
349
|
},
|
|
350
350
|
"CE_options": {
|
|
351
|
-
"title": "
|
|
351
|
+
"title": "Fresh Air Appliance Options",
|
|
352
352
|
"type": "object",
|
|
353
353
|
"condition": {
|
|
354
|
-
"functionBody": "return model.devices && model.devices[arrayIndices].type === '
|
|
354
|
+
"functionBody": "return model.devices && model.devices[arrayIndices].type === 'Fresh Air Appliance';"
|
|
355
355
|
},
|
|
356
356
|
"properties": {
|
|
357
357
|
"silentMode": {
|
package/docs/download_lua.md
CHANGED
|
@@ -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
|
|
9
|
-
5.
|
|
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