homebridge-flume 3.0.0 → 3.0.2-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 +6 -0
- package/README.md +5 -5
- package/lib/connection/http.js +1 -1
- package/lib/homebridge-ui/public/index.html +0 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -11,8 +11,8 @@ Homebridge plugin to integrate Flume devices into HomeKit
|
|
|
11
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
|
-
[](https://www.npmjs.com/package/homebridge-flume)
|
|
15
|
+
[](https://www.npmjs.com/package/homebridge-flume)
|
|
16
16
|
[](https://discord.com/channels/784827113378676736/784827113378676739)
|
|
17
17
|
[](https://discord.com/channels/432663330281226270/742733745743855627)
|
|
18
18
|
|
|
@@ -24,8 +24,9 @@ Homebridge plugin to integrate Flume devices into HomeKit
|
|
|
24
24
|
|
|
25
25
|
### Prerequisites
|
|
26
26
|
|
|
27
|
-
- To use this plugin, you will need to already have
|
|
28
|
-
-
|
|
27
|
+
- To use this plugin, you will need to already have:
|
|
28
|
+
- [Homebridge](https://homebridge.io): v1.6 or [HOOBS](https://hoobs.org): v4.3 installed - refer to the links for more information and installation instructions.
|
|
29
|
+
- Node: latest version of v16 or v18 - any other major version is not supported.
|
|
29
30
|
|
|
30
31
|
### Setup
|
|
31
32
|
|
|
@@ -33,7 +34,6 @@ Homebridge plugin to integrate Flume devices into HomeKit
|
|
|
33
34
|
- [Configuration](https://github.com/bwp91/homebridge-flume/wiki/Configuration)
|
|
34
35
|
- [Beta Version](https://github.com/bwp91/homebridge-flume/wiki/Beta-Version)
|
|
35
36
|
- [Node Version](https://github.com/bwp91/homebridge-flume/wiki/Node-Version)
|
|
36
|
-
- [Uninstallation](https://github.com/bwp91/homebridge-flume/wiki/Uninstallation)
|
|
37
37
|
|
|
38
38
|
### Help/About
|
|
39
39
|
|
package/lib/connection/http.js
CHANGED
|
@@ -315,7 +315,7 @@ export default class {
|
|
|
315
315
|
}
|
|
316
316
|
|
|
317
317
|
// Log the response if in debug mode
|
|
318
|
-
this.log('[HTTP getLeakInfo()] %s.', JSON.stringify(res.data));
|
|
318
|
+
this.log.debug('[HTTP getLeakInfo()] %s.', JSON.stringify(res.data));
|
|
319
319
|
|
|
320
320
|
// Parse the response
|
|
321
321
|
return res.data.data[0];
|