node-red-contrib-boolean-logic-ultimate 1.1.17 → 1.1.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
 
4
4
  # CHANGELOG
5
5
 
6
+ <p>
7
+ <b>Version 1.1.18</b> September 2024<br/>
8
+ - Impulse node: changed the STOP procedure.</br>
9
+ </p>
6
10
  <p>
7
11
  <b>Version 1.1.17</b> September 2024<br/>
8
12
  - Railway Switcher: fixed an issue caused by fixing an issue for backward compatibility of true/false input msg. The node was emitting 0 and 1 instead of true and false</br>
@@ -90,7 +90,7 @@ module.exports = function (RED) {
90
90
  }
91
91
 
92
92
  this.on('input', function (msg) {
93
-
93
+
94
94
  const utils = require("./utils.js");
95
95
  let sPayload = utils.fetchFromObject(msg, config.payloadPropName || "payload");
96
96
 
@@ -102,8 +102,8 @@ module.exports = function (RED) {
102
102
  avvio();
103
103
 
104
104
  } else if (sPayload === false) {
105
- if (node.timerWait !== null) clearTimeout(node.timerWait);
106
105
  node.isPlaying = false;
106
+ if (node.timerWait !== null) clearTimeout(node.timerWait);
107
107
  node.setNodeStatus({ fill: "red", shape: "dot", text: "Forced stop" });
108
108
  }
109
109
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-boolean-logic-ultimate",
3
- "version": "1.1.17",
3
+ "version": "1.1.18",
4
4
  "description": "A set of Node-RED enhanced boolean logic and utility nodes, flow interruption, blinker, invert, filter, toggle etc.., with persistent values after reboot. Compatible also with Homeassistant values.",
5
5
  "author": "Supergiovane (https://github.com/Supergiovane)",
6
6
  "dependencies": {