homebridge-melcloud-control 4.1.2-beta.36 → 4.1.2-beta.38
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/config.schema.json +1 -4
- package/package.json +1 -1
- package/src/melcloud.js +1 -1
package/config.schema.json
CHANGED
|
@@ -2138,7 +2138,7 @@
|
|
|
2138
2138
|
{
|
|
2139
2139
|
"key": "accounts[].ataDevices",
|
|
2140
2140
|
"type": "tabarray",
|
|
2141
|
-
"title": "{{ value.
|
|
2141
|
+
"title": "{{ value.name }}",
|
|
2142
2142
|
"items": [
|
|
2143
2143
|
{
|
|
2144
2144
|
"key": "accounts[].ataDevices[]",
|
|
@@ -2228,7 +2228,6 @@
|
|
|
2228
2228
|
"expanded": false,
|
|
2229
2229
|
"items": [
|
|
2230
2230
|
{
|
|
2231
|
-
"key": "accounts[].ataDevices[]",
|
|
2232
2231
|
"type": "tabarray",
|
|
2233
2232
|
"title": "{{ value.name }}",
|
|
2234
2233
|
"items": [
|
|
@@ -2375,7 +2374,6 @@
|
|
|
2375
2374
|
"expanded": false,
|
|
2376
2375
|
"items": [
|
|
2377
2376
|
{
|
|
2378
|
-
"key": "accounts[].atwDevices[]",
|
|
2379
2377
|
"type": "tabarray",
|
|
2380
2378
|
"title": "{{ value.name }}",
|
|
2381
2379
|
"items": [
|
|
@@ -2524,7 +2522,6 @@
|
|
|
2524
2522
|
"expanded": false,
|
|
2525
2523
|
"items": [
|
|
2526
2524
|
{
|
|
2527
|
-
"key": "accounts[].atwDevices[]",
|
|
2528
2525
|
"type": "tabarray",
|
|
2529
2526
|
"title": "{{ value.name }}",
|
|
2530
2527
|
"items": [
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "MELCloud Control",
|
|
3
3
|
"name": "homebridge-melcloud-control",
|
|
4
|
-
"version": "4.1.2-beta.
|
|
4
|
+
"version": "4.1.2-beta.38",
|
|
5
5
|
"description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "grzegorz914",
|
package/src/melcloud.js
CHANGED
|
@@ -337,7 +337,7 @@ class MelCloud extends EventEmitter {
|
|
|
337
337
|
let browser;
|
|
338
338
|
try {
|
|
339
339
|
const accountInfo = { State: false, Info: '', ContextKey: null, UseFahrenheit: false };
|
|
340
|
-
|
|
340
|
+
let chromiumPath = await this.functions.ensureChromiumInstalled();
|
|
341
341
|
|
|
342
342
|
// === Fallback to Puppeteer's built-in Chromium ===
|
|
343
343
|
if (!chromiumPath) {
|