homebridge-melcloud-control 4.0.0-beta.506 → 4.0.0-beta.507
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/package.json +1 -1
- package/src/melcloud.js +2 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "MELCloud Control",
|
|
3
3
|
"name": "homebridge-melcloud-control",
|
|
4
|
-
"version": "4.0.0-beta.
|
|
4
|
+
"version": "4.0.0-beta.507",
|
|
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
|
@@ -326,7 +326,7 @@ class MelCloud extends EventEmitter {
|
|
|
326
326
|
|
|
327
327
|
this.emit('warn', `Test 1`);
|
|
328
328
|
browser = await puppeteer.launch({
|
|
329
|
-
headless:
|
|
329
|
+
headless: 'shell',
|
|
330
330
|
executablePath: chromiumPath,
|
|
331
331
|
timeout: 30000,
|
|
332
332
|
args: [
|
|
@@ -334,6 +334,7 @@ class MelCloud extends EventEmitter {
|
|
|
334
334
|
'--disable-setuid-sandbox',
|
|
335
335
|
'--disable-dev-shm-usage',
|
|
336
336
|
'--single-process',
|
|
337
|
+
'--disable-gpu',
|
|
337
338
|
'--no-zygote'
|
|
338
339
|
]
|
|
339
340
|
});
|