Skip to content

Commit

Permalink
Merge pull request #35 from zwave-js/dev
Browse files Browse the repository at this point in the history
3.1.2
  • Loading branch information
marcus-j-davies authored Mar 26, 2021
2 parents b665dc1 + 72ff8a7 commit b378610
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,10 @@ let _Buf_ON = Buffer.from([0x51,0x01,0x01,0x05,0x01])

## Version History

- 3.1.1
- Typo in read me :-|
- 3.1.2
- Fixed missing ```node``` property in messages, when **ZWave Device** nodes are in use.

- 3.1.0
- 3.1.1
- Introduced a new node type of **ZWave Device**
This node works in conjunction with the main **Z-Wave JS Controller** node, allowing for much greater flexibility within your flows.
The node acts as a single ZWave device, allowing it to be placed in different flows.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-red-contrib-zwave-js",
"version": "3.1.1",
"version": "3.1.2",
"license": "MIT",
"description": "An extremely easy to use, zero dependency and feature rich ZWave node for node-red. Based on ZWave-JS",
"dependencies": {
Expand Down
1 change: 0 additions & 1 deletion zwave-js/zwave-device.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ module.exports = function (RED) {

RED.events.on("zwjs:node:event:" + config.filteredNodeId, processEventMessage)
function processEventMessage(MSG){
delete MSG.payload.node;
node.send(MSG)
}

Expand Down

0 comments on commit b378610

Please sign in to comment.