From 3e29353a216fbf9070af62eaa5cca232084fe21c Mon Sep 17 00:00:00 2001 From: Marcus Davies <55892693+marcus-j-davies@users.noreply.github.com> Date: Mon, 30 Dec 2024 16:27:16 +0000 Subject: [PATCH] Fix USB Reset Options (#295) Fixes : https://github.com/zwave-js/node-red-contrib-zwave-js/issues/294 (hopefully) --- CHANGELOG.md | 5 +++++ package.json | 2 +- zwave-js/zwave-js.js | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa0068b3..ff998b87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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** diff --git a/package.json b/package.json index a7fd5b07..e17f38e4 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/zwave-js/zwave-js.js b/zwave-js/zwave-js.js index 7640bba4..e4f567f7 100644 --- a/zwave-js/zwave-js.js +++ b/zwave-js/zwave-js.js @@ -348,7 +348,7 @@ module.exports = function (RED) { '[options] [features.softReset]', 'Disabled' ); - DriverOptions.features.softReset = true; + DriverOptions.features.softReset = false; } DriverOptions.storage = {};