Skip to content

Commit

Permalink
Fix USB Reset Options (#295)
Browse files Browse the repository at this point in the history
Fixes : #294

(hopefully)
  • Loading branch information
marcus-j-davies authored Dec 30, 2024
1 parent e0373b7 commit 3e29353
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# node-red-contrib-zwave-js Change Log

- 9.1.2

**Bug Fixes**
- Fix Handling USB reset options correctly

- 9.1.1

**Bug Fixes**
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": "9.1.1",
"version": "9.1.2",
"license": "MIT",
"description": "The most powerful, high performing and highly polished Z-Wave node for Node-RED based on Z-Wave JS. If you want a fully featured Z-Wave framework in your Node-RED instance, you have found it.",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion zwave-js/zwave-js.js
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ module.exports = function (RED) {
'[options] [features.softReset]',
'Disabled'
);
DriverOptions.features.softReset = true;
DriverOptions.features.softReset = false;
}

DriverOptions.storage = {};
Expand Down

0 comments on commit 3e29353

Please sign in to comment.