homebridge-flume 1.2.3 → 1.2.6
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 +24 -0
- package/README.md +1 -1
- package/lib/index.js +1 -1
- package/lib/utils/lang-en.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to homebridge-flume will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## 1.2.6 (2022-02-27)
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Bump `axios` to v0.26.0
|
|
10
|
+
- Bump `node` recommended versions to v14.19.0 or v16.14.0
|
|
11
|
+
|
|
12
|
+
## 1.2.5 (2022-01-24)
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Bump `homebridge` recommended version to v1.4.0
|
|
17
|
+
- Bump `axios` to v0.25.0
|
|
18
|
+
|
|
19
|
+
## 1.2.4 (2022-01-13)
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Bump `node` recommended versions to v14.18.3 or v16.13.2
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- Plugin crash for older versions of Homebridge
|
|
28
|
+
|
|
5
29
|
## 1.2.3 (2022-01-03)
|
|
6
30
|
|
|
7
31
|
### Changed
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
Homebridge plugin to integrate Flume devices into HomeKit
|
|
9
9
|
|
|
10
10
|
[](https://github.com/homebridge/homebridge/wiki/Verified-Plugins)
|
|
11
|
-
[](https://plugins.hoobs.org/plugin/homebridge-thermobit)
|
|
11
|
+
[](https://plugins.hoobs.org/plugin/homebridge-thermobit)
|
|
12
12
|
[](https://www.npmjs.com/package/homebridge-flume)
|
|
13
13
|
[](https://github.com/bwp91/homebridge-flume/wiki/Beta-Version)
|
|
14
14
|
[](https://www.npmjs.com/package/homebridge-flume)
|
package/lib/index.js
CHANGED
package/lib/utils/lang-en.js
CHANGED
|
@@ -45,7 +45,7 @@ module.exports = {
|
|
|
45
45
|
'This plugin has been made with ♥ by bwp91 from the UK!',
|
|
46
46
|
'Check out my other Homebridge plugins! https://github.com/bwp91',
|
|
47
47
|
'Have time to give this plugin a review? https://bit.ly/hb-flume-review',
|
|
48
|
-
|
|
48
|
+
'This plugin currently has a 4☆ rating on HOOBS! http://bit.ly/hb-flume-review',
|
|
49
49
|
'Want to see this plugin in your own language? Let me know!'
|
|
50
50
|
]
|
|
51
51
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-flume",
|
|
3
3
|
"alias": "Flume",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.6",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Ben Potter",
|
|
7
7
|
"email": "bwp91@icloud.com"
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"water leak detector"
|
|
24
24
|
],
|
|
25
25
|
"engines": {
|
|
26
|
-
"homebridge": "^1.
|
|
27
|
-
"node": "^14.
|
|
26
|
+
"homebridge": "^1.4.0",
|
|
27
|
+
"node": "^14.19.0 || ^16.14.0"
|
|
28
28
|
},
|
|
29
29
|
"repository": {
|
|
30
30
|
"type": "git",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
],
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@homebridge/plugin-ui-utils": "^0.0.19",
|
|
56
|
-
"axios": "^0.
|
|
56
|
+
"axios": "^0.26.0",
|
|
57
57
|
"jwt-decode": "^3.1.2"
|
|
58
58
|
},
|
|
59
59
|
"prettier": {
|