Skip to content

Commit 716eeb7

Browse files
Maintenance
1 parent 5ef93ab commit 716eeb7

File tree

3 files changed

+22
-15
lines changed

3 files changed

+22
-15
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# node-red-contrib-zwave-js Change Log
22

3+
4+
- 9.0.3
5+
6+
**Maintenance Release**
7+
- Update dependencies
8+
- Update Node/UI status with regards to Route Rebuilding
9+
310
- 9.0.2
411

512
**Bug Fixes**

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"name": "node-red-contrib-zwave-js",
3-
"version": "9.0.2",
3+
"version": "9.0.3",
44
"license": "MIT",
55
"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.",
66
"dependencies": {
77
"limiter": "^2.1.0",
88
"lodash": "^4.17.21",
99
"winston": "^3.11.0",
1010
"winston-transport": "^4.6.0",
11-
"zwave-js": "^12.1.1"
11+
"zwave-js": "^12.4.0"
1212
},
1313
"devDependencies": {
14-
"eslint": "^8.51.0",
15-
"prettier": "^3.0.3"
14+
"eslint": "^8.55.0",
15+
"prettier": "^3.1.0"
1616
},
1717
"scripts": {
1818
"validate": "node-red-dev validate -o validation_result.json"

zwave-js/zwave-js.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1212,26 +1212,26 @@ module.exports = function (RED) {
12121212
SetFlowNodeStatus({
12131213
fill: 'yellow',
12141214
shape: 'dot',
1215-
text: 'Node Heal Started: ' + Params[0]
1215+
text: 'Rebuild Node Routes Started: ' + Params[0]
12161216
});
1217-
UI.Status('Node Heal Started: ' + Params[0]);
1217+
UI.Status('Rebuild Node Routes Started: ' + Params[0]);
12181218
const HealResponse = await Driver.controller.rebuildNodeRoutes(
12191219
Params[0]
12201220
);
12211221
if (HealResponse) {
12221222
SetFlowNodeStatus({
12231223
fill: 'green',
12241224
shape: 'dot',
1225-
text: 'Node Heal Successful: ' + Params[0]
1225+
text: 'Rebuild Node Routes Successful: ' + Params[0]
12261226
});
1227-
UI.Status('Node Heal Successful: ' + Params[0]);
1227+
UI.Status('Rebuild Node Routes Successful ' + Params[0]);
12281228
} else {
12291229
SetFlowNodeStatus({
12301230
fill: 'red',
12311231
shape: 'dot',
1232-
text: 'Node Heal Unsuccessful: ' + Params[0]
1232+
text: 'Rebuild Node Routes Unsuccessful: ' + Params[0]
12331233
});
1234-
UI.Status('Node Heal Unsuccessful: ' + Params[0]);
1234+
UI.Status('Rebuild Node Routes Unsuccessful: ' + Params[0]);
12351235
}
12361236
Send(
12371237
ReturnNode,
@@ -1248,9 +1248,9 @@ module.exports = function (RED) {
12481248
SetFlowNodeStatus({
12491249
fill: 'yellow',
12501250
shape: 'dot',
1251-
text: 'Network Heal Started.'
1251+
text: 'Route Rebuilding Started.'
12521252
});
1253-
UI.Status('Network Heal Started.');
1253+
UI.Status('Route Rebuilding Started.');
12541254
break;
12551255

12561256
case 'stopRebuildingRoutes':
@@ -1259,9 +1259,9 @@ module.exports = function (RED) {
12591259
SetFlowNodeStatus({
12601260
fill: 'blue',
12611261
shape: 'dot',
1262-
text: 'Network Heal Stopped.'
1262+
text: 'Route Rebuilding Stopped.'
12631263
});
1264-
UI.Status('Network Heal Stopped.');
1264+
UI.Status('Route Rebuilding Stopped.');
12651265
RestoreReadyStatus();
12661266
break;
12671267

@@ -1930,7 +1930,7 @@ module.exports = function (RED) {
19301930
'VALUE_ID_LIST',
19311931
'GET_VALUE_RESPONSE',
19321932
'GET_VALUE_METADATA_RESPONSE',
1933-
"VALUE_TIMESTAMP"
1933+
'VALUE_TIMESTAMP'
19341934
];
19351935

19361936
const TimestampSubjects = [

0 commit comments

Comments
 (0)