@homebridge-plugins/homebridge-ecovacs 7.2.4 → 7.3.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 +10 -0
- package/lib/platform.js +1 -9
- package/lib/utils/lang-en.js +0 -1
- package/package.json +21 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@homebridge-plugins/homebridge-ecovacs` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## v7.3.0 (2026-02-16)
|
|
6
|
+
|
|
7
|
+
### Changes
|
|
8
|
+
|
|
9
|
+
- determine debug mode from `-D` flag
|
|
10
|
+
- updated dependencies
|
|
11
|
+
- updated dependencies + lint rules
|
|
12
|
+
- update workflow action versions
|
|
13
|
+
- fix deprecate past releases script
|
|
14
|
+
|
|
5
15
|
## v7.2.4 (2025-12-05)
|
|
6
16
|
|
|
7
17
|
### Changes
|
package/lib/platform.js
CHANGED
|
@@ -24,7 +24,7 @@ export default class {
|
|
|
24
24
|
try {
|
|
25
25
|
this.api = api
|
|
26
26
|
this.log = log
|
|
27
|
-
this.isBeta =
|
|
27
|
+
this.isBeta = process.argv.includes('-D')
|
|
28
28
|
|
|
29
29
|
// Configuration objects for accessories
|
|
30
30
|
this.deviceConf = {}
|
|
@@ -347,14 +347,6 @@ export default class {
|
|
|
347
347
|
if (this.isBeta) {
|
|
348
348
|
this.log.debug = this.log
|
|
349
349
|
this.log.debugWarn = this.log.warn
|
|
350
|
-
|
|
351
|
-
// Log that using a beta will generate a lot of debug logs
|
|
352
|
-
if (this.isBeta) {
|
|
353
|
-
const divide = '*'.repeat(platformLang.beta.length + 1) // don't forget the full stop (+1!)
|
|
354
|
-
this.log.warn(divide)
|
|
355
|
-
this.log.warn(`${platformLang.beta}.`)
|
|
356
|
-
this.log.warn(divide)
|
|
357
|
-
}
|
|
358
350
|
} else {
|
|
359
351
|
this.log.debug = () => {}
|
|
360
352
|
this.log.debugWarn = () => {}
|
package/lib/utils/lang-en.js
CHANGED
|
@@ -2,7 +2,6 @@ export default {
|
|
|
2
2
|
accNotFound: 'accessory not found',
|
|
3
3
|
accNotReady: 'cannot currently be controlled, see plugin startup logs for any error',
|
|
4
4
|
addInfo: 'additional info',
|
|
5
|
-
beta: 'You are using a beta version of the plugin - you will experience more logging than normal',
|
|
6
5
|
airDryingFail: 'sending air drying update failed as',
|
|
7
6
|
cfgDef: 'is not a valid number so using default of',
|
|
8
7
|
cfgDup: 'will be ignored since another entry with this ID already exists',
|
package/package.json
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
"displayName": "Homebridge Ecovacs",
|
|
4
4
|
"alias": "Deebot",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"version": "7.
|
|
7
|
-
"description": "Homebridge plugin to integrate Ecovacs Deebot devices into HomeKit.",
|
|
6
|
+
"version": "7.3.0",
|
|
7
|
+
"description": "Homebridge plugin to integrate Ecovacs Deebot/Yeedi devices into HomeKit.",
|
|
8
8
|
"author": {
|
|
9
9
|
"name": "bwp91",
|
|
10
10
|
"email": "bwp91@icloud.com"
|
|
@@ -62,16 +62,31 @@
|
|
|
62
62
|
"postinstall": "patch-package"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@homebridge/plugin-ui-utils": "^2.
|
|
65
|
+
"@homebridge/plugin-ui-utils": "^2.2.0",
|
|
66
66
|
"ecovacs-deebot": "^0.9.6-beta.12",
|
|
67
67
|
"patch-package": "^8.0.1"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@antfu/eslint-config": "^
|
|
70
|
+
"@antfu/eslint-config": "^7.4.3"
|
|
71
71
|
},
|
|
72
72
|
"overrides": {
|
|
73
|
-
"
|
|
74
|
-
"
|
|
73
|
+
"ecovacs-deebot": {
|
|
74
|
+
"axios": "^1.13.5",
|
|
75
|
+
"canvas": {
|
|
76
|
+
".": "^2.11.1",
|
|
77
|
+
"@mapbox/node-pre-gyp": {
|
|
78
|
+
"tar": "^7.5.9"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"simple-xmpp": {
|
|
82
|
+
"node-xmpp-client": {
|
|
83
|
+
".": "^3.1.11",
|
|
84
|
+
"request": {
|
|
85
|
+
"form-data": "^2.5.5",
|
|
86
|
+
"qs": "^6.15.0"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
75
90
|
}
|
|
76
91
|
}
|
|
77
92
|
}
|