node-red-contrib-boolean-logic-ultimate 1.1.6 → 1.1.7
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
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
# CHANGELOG
|
|
5
5
|
|
|
6
6
|
<p>
|
|
7
|
-
<b>Version 1.1.
|
|
8
|
-
- Math node: in SUBTRACT mode, now you must set a msg.topic to start subtracting from.</br>
|
|
7
|
+
<b>Version 1.1.7</b> April 2024<br/>
|
|
8
|
+
- Math node: <b>BREAKING CHANGE</b>: in SUBTRACT mode, now you must set a msg.topic to start subtracting from.</br>
|
|
9
9
|
</p>
|
|
10
10
|
<p>
|
|
11
11
|
<b>Version 1.1.5</b> April 2024<br/>
|
|
@@ -122,7 +122,7 @@ module.exports = function (RED) {
|
|
|
122
122
|
} catch (error) {
|
|
123
123
|
setNodeStatus({ fill: "red", shape: "ring", text: error.message });
|
|
124
124
|
}
|
|
125
|
-
setNodeStatus({ fill: "green", shape: "dot", text: "
|
|
125
|
+
setNodeStatus({ fill: "green", shape: "dot", text: node.math + " " + msg.payload });
|
|
126
126
|
node.send(msg);
|
|
127
127
|
});
|
|
128
128
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red-contrib-boolean-logic-ultimate",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
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": {
|