node-red-contrib-homebridge-automation 0.1.4 → 0.1.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/README.md +7 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -31,6 +31,7 @@ The above Node-RED Flow, turns on my 'Outside Office' light when the powder room
|
|
|
31
31
|
* [Mar 9, 2021 - Version 0.0.80](#mar-9-2021---version-0080)
|
|
32
32
|
* [April 23, 2021 - Version 0.0.82](#april-23-2021---version-0082)
|
|
33
33
|
* [Dec 31, 2022 - Version 0.1.3](#dec-31-2022---version-013)
|
|
34
|
+
* [Jan 6, 2023 - Version 0.1.5](#jan-6-2023---version-015)
|
|
34
35
|
* [Backlog / Roadmap](#backlog--roadmap)
|
|
35
36
|
* [Dropped items](#dropped-items)
|
|
36
37
|
* [Installation Steps](#installation-steps)
|
|
@@ -56,7 +57,7 @@ The above Node-RED Flow, turns on my 'Outside Office' light when the powder room
|
|
|
56
57
|
* [To start Node-RED in DEBUG mode, and output Homebridge-Automation debug logs start Node-RED like this.](#to-start-node-red-in-debug-mode-and-output-homebridge-automation-debug-logs-start-node-red-like-this)
|
|
57
58
|
|
|
58
59
|
<!-- Created by https://github.com/ekalinin/github-markdown-toc -->
|
|
59
|
-
<!-- Added by: sgracey, at:
|
|
60
|
+
<!-- Added by: sgracey, at: Fri 6 Jan 2023 09:41:08 EST -->
|
|
60
61
|
|
|
61
62
|
<!--te-->
|
|
62
63
|
|
|
@@ -167,6 +168,10 @@ With a plugin, you can see if it supports Real Time events, by opening the Home
|
|
|
167
168
|
|
|
168
169
|
- Removal of request dependency from hap-node-client
|
|
169
170
|
|
|
171
|
+
### Jan 6, 2023 - Version 0.1.5
|
|
172
|
+
|
|
173
|
+
- Remove support for ipv6
|
|
174
|
+
|
|
170
175
|
# Backlog / Roadmap
|
|
171
176
|
|
|
172
177
|
* [x] - Update Node Information with Homebridge Accessory Details ( hapEndpoint, deviceType, description )
|
|
@@ -194,7 +199,7 @@ This is covered in alot of other places, so I won't cover it here.
|
|
|
194
199
|
|
|
195
200
|
## 2 - Prepare Homebridge for integration with Homebridge-Automation
|
|
196
201
|
|
|
197
|
-
Place your homebridge instances into "INSECURE MODE". This is same as my [Homebridge Alexa](https://github.com/NorthernMan54/homebridge-alexa) plugin, and you just need to follow the [Prepare homebridge for plugin](https://github.com/NorthernMan54/homebridge-alexa#prepare-homebridge-for-plugin-installation) instructions there.
|
|
202
|
+
Place your homebridge instances into "INSECURE MODE". This is same as my [Homebridge Alexa](https://github.com/NorthernMan54/homebridge-alexa) plugin, and you just need to follow the [Prepare homebridge for plugin](https://github.com/NorthernMan54/homebridge-alexa/blob/master/Installation.md#prepare-homebridge-for-plugin-installation) instructions there.
|
|
198
203
|
|
|
199
204
|
## 3 - Install Homebridge-Automation into Node-Red
|
|
200
205
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red-contrib-homebridge-automation",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "NodeRED Automation for HomeBridge",
|
|
5
5
|
"main": "HAP-NodeRed.js",
|
|
6
6
|
"scripts": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"better-queue": ">=3.8.12",
|
|
29
29
|
"debug": "^4.3.4",
|
|
30
|
-
"hap-node-client": ">=0.2.
|
|
30
|
+
"hap-node-client": ">=0.2.2"
|
|
31
31
|
},
|
|
32
32
|
"author": "NorthernMan54",
|
|
33
33
|
"license": "ISC",
|