@@ -1,5 +1,9 @@ | |||
# node-red-contrib-boolean-logic-ultimate | |||
<p> | |||
<b>Version 1.0.6</b><br/> | |||
- Stripped out the date/time in node status<br/> | |||
</p> | |||
<p> | |||
<b>Version 1.0.5</b><br/> | |||
- Added the Last value change date/time in the status.<br/> | |||
- Correction in the in-line help<br/> |
@@ -163,7 +163,8 @@ module.exports = function(RED) { | |||
function setNodeStatus({fill, shape, text}) | |||
{ | |||
node.status({fill: fill,shape: shape,text: text + " (Last " + new Date().toLocaleString() + ")"}) | |||
var dDate = new Date(); | |||
node.status({fill: fill,shape: shape,text: text + " (" + dDate.getDate() + ", " + dDate.toLocaleTimeString() + ")"}) | |||
} | |||
function CalculateResult(_operation) { |
@@ -35,7 +35,8 @@ module.exports = function(RED) { | |||
function setNodeStatus({fill, shape, text}) | |||
{ | |||
node.status({fill: fill,shape: shape,text: text + " (Last " + new Date().toLocaleString() + ")"}) | |||
var dDate = new Date(); | |||
node.status({fill: fill,shape: shape,text: text + " (" + dDate.getDate() + ", " + dDate.toLocaleTimeString() + ")"}) | |||
} | |||
@@ -40,7 +40,8 @@ module.exports = function(RED) { | |||
function setNodeStatus({fill, shape, text}) | |||
{ | |||
node.status({fill: fill,shape: shape,text: text + " (Last " + new Date().toLocaleString() + ")"}) | |||
var dDate = new Date(); | |||
node.status({fill: fill,shape: shape,text: text + " (" + dDate.getDate() + ", " + dDate.toLocaleTimeString() + ")"}) | |||
} | |||
} |
@@ -1,6 +1,6 @@ | |||
{ | |||
"name": "node-red-contrib-boolean-logic-ultimate", | |||
"version": "1.0.5", | |||
"version": "1.0.6", | |||
"description": "A set of Node-RED enhanced boolean logic, with persisten values after reboot and more", | |||
"author": "Supergiovane (https://github.com/Supergiovane)", | |||
"dependencies": { |