@homebridge-plugins/homebridge-wemo 7.0.0 → 7.0.1-beta.0
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 -1
- package/LICENSE +1 -1
- package/lib/device/link-hub.js +2 -2
- package/lib/homebridge-ui/public/index.html +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
package/LICENSE
CHANGED
package/lib/device/link-hub.js
CHANGED
|
@@ -40,7 +40,7 @@ export default class {
|
|
|
40
40
|
.end()
|
|
41
41
|
|
|
42
42
|
// Send the update
|
|
43
|
-
return this.platform.httpClient.sendDeviceUpdate(
|
|
43
|
+
return await this.platform.httpClient.sendDeviceUpdate(
|
|
44
44
|
this.accessory,
|
|
45
45
|
'urn:Belkin:service:bridge:1',
|
|
46
46
|
'SetDeviceStatus',
|
|
@@ -51,7 +51,7 @@ export default class {
|
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
async requestDeviceUpdate(deviceId) {
|
|
54
|
-
return this.platform.httpClient.sendDeviceUpdate(
|
|
54
|
+
return await this.platform.httpClient.sendDeviceUpdate(
|
|
55
55
|
this.accessory,
|
|
56
56
|
'urn:Belkin:service:bridge:1',
|
|
57
57
|
'GetDeviceStatus',
|
|
@@ -175,10 +175,10 @@
|
|
|
175
175
|
try {
|
|
176
176
|
const currentConfig = await homebridge.getPluginConfig()
|
|
177
177
|
showIntro = () => {
|
|
178
|
+
homebridge.disableSaveButton?.()
|
|
178
179
|
const introContinue = document.getElementById('introContinue')
|
|
179
180
|
introContinue.addEventListener('click', () => {
|
|
180
181
|
homebridge.showSpinner()
|
|
181
|
-
homebridge.disableSaveButton?.()
|
|
182
182
|
document.getElementById('pageIntro').style.display = 'none'
|
|
183
183
|
document.getElementById('menuWrapper').style.display = 'inline-flex'
|
|
184
184
|
showSettings()
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@homebridge-plugins/homebridge-wemo",
|
|
3
3
|
"alias": "Wemo",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "7.0.0",
|
|
5
|
+
"version": "7.0.1-beta.0",
|
|
6
6
|
"description": "Homebridge plugin to integrate Wemo devices into HomeKit.",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "bwp91",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"homepage": "https://github.com/homebridge-plugins/homebridge-wemo",
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|
|
33
|
-
"url": "https://github.com/homebridge-plugins/homebridge-wemo.git"
|
|
33
|
+
"url": "git+https://github.com/homebridge-plugins/homebridge-wemo.git"
|
|
34
34
|
},
|
|
35
35
|
"bugs": {
|
|
36
36
|
"url": "https://github.com/homebridge-plugins/homebridge-wemo/issues"
|
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
"main": "lib/index.js",
|
|
49
49
|
"engines": {
|
|
50
50
|
"homebridge": "^1.6.0 || ^2.0.0-beta.0",
|
|
51
|
-
"node": "^18.20.
|
|
51
|
+
"node": "^18.20.8 || ^20.19.0 || ^22.14.0"
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"lint": "eslint . --fix",
|
|
55
55
|
"rebuild": "rm -rf package-lock.json && rm -rf node_modules && npm install"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@homebridge/plugin-ui-utils": "^2.0.
|
|
58
|
+
"@homebridge/plugin-ui-utils": "^2.0.2",
|
|
59
59
|
"axios": "^1.8.4",
|
|
60
60
|
"ip": "^2.0.1",
|
|
61
61
|
"node-ssdp": "^4.0.1",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"xmlbuilder": "^15.1.1"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@antfu/eslint-config": "^4.
|
|
68
|
-
"eslint": "^9.
|
|
67
|
+
"@antfu/eslint-config": "^4.12.0",
|
|
68
|
+
"eslint": "^9.24.0"
|
|
69
69
|
}
|
|
70
70
|
}
|