@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 CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  All notable changes to homebridge-wemo will be documented in this file.
4
4
 
5
- ## 7.0.0 (2024-03-22)
5
+ ## 7.0.0 (2025-03-22)
6
6
 
7
7
  ### Changed
8
8
 
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2022 Ben Potter
3
+ Copyright (c) 2022 - 2025 Ben Potter
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -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.7 || ^20.19.0 || ^22.14.0"
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.1",
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.10.2",
68
- "eslint": "^9.23.0"
67
+ "@antfu/eslint-config": "^4.12.0",
68
+ "eslint": "^9.24.0"
69
69
  }
70
70
  }