소스 검색

Stripped out the date/time in node status

master
Massimo 5 년 전
부모
커밋
941cb399f1
5개의 변경된 파일11개의 추가작업 그리고 4개의 파일을 삭제
  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 파일 보기

# 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 파일 보기



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 파일 보기

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 파일 보기



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 파일 보기

{ {
"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…
취소
저장