Browse Source

Stripped out the date/time in node status

master
Massimo 5 years ago
parent
commit
941cb399f1
5 changed files with 11 additions and 4 deletions
  1. +4
    -0
      CHANGELOG.md
  2. +2
    -1
      boolean-logic-ultimate/BooleanLogicUltimate.js
  3. +2
    -1
      boolean-logic-ultimate/FilterUltimate.js
  4. +2
    -1
      boolean-logic-ultimate/InvertUltimate.js
  5. +1
    -1
      package.json

+ 4
- 0
CHANGELOG.md View File

# node-red-contrib-boolean-logic-ultimate # node-red-contrib-boolean-logic-ultimate
<p> <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/> <b>Version 1.0.5</b><br/>
- Added the Last value change date/time in the status.<br/> - Added the Last value change date/time in the status.<br/>
- Correction in the in-line help<br/> - Correction in the in-line help<br/>

+ 2
- 1
boolean-logic-ultimate/BooleanLogicUltimate.js View File



function setNodeStatus({fill, shape, text}) 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) { function CalculateResult(_operation) {

+ 2
- 1
boolean-logic-ultimate/FilterUltimate.js View File

function setNodeStatus({fill, shape, text}) 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() + ")"})
} }



+ 2
- 1
boolean-logic-ultimate/InvertUltimate.js View File



function setNodeStatus({fill, shape, text}) 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
- 1
package.json View File

{ {
"name": "node-red-contrib-boolean-logic-ultimate", "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", "description": "A set of Node-RED enhanced boolean logic, with persisten values after reboot and more",
"author": "Supergiovane (https://github.com/Supergiovane)", "author": "Supergiovane (https://github.com/Supergiovane)",
"dependencies": { "dependencies": {

Loading…
Cancel
Save