node-red-contrib-boolean-logic-ultimate 1.0.42 → 1.0.43
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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
[](https://www.paypal.me/techtoday)
|
|
3
3
|
|
|
4
4
|
<p>
|
|
5
|
-
<b>Version 1.0.
|
|
5
|
+
<b>Version 1.0.44</b> February 2022<br/>
|
|
6
6
|
- Boolean Logic Ultimate: Added the "d" indication, in the node's name, when the delay option is enabled.</br>
|
|
7
7
|
- Boolean Logic Ultimate: Refined the UI.</br>
|
|
8
8
|
</p>
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
let filtered = this.filtertrue == "both" ? "" : "f";
|
|
63
63
|
let trigger = "";
|
|
64
64
|
let delayEvaluation = "";
|
|
65
|
-
if (this.delayEvaluation === 0 || this.delayEvaluation === "" || this.delayEvaluation === undefined) {
|
|
65
|
+
if (this.delayEvaluation === 0 || this.delayEvaluation === "0" || this.delayEvaluation === "" || this.delayEvaluation === undefined) {
|
|
66
66
|
delayEvaluation = "";
|
|
67
67
|
} else {
|
|
68
68
|
delayEvaluation = "d(" + this.delayEvaluation + ")";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red-contrib-boolean-logic-ultimate",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.43",
|
|
4
4
|
"description": "A set of Node-RED enhanced boolean logic node, flow interruption node, blinker node, invert node, filter node, with persisten values after reboot and more.",
|
|
5
5
|
"author": "Supergiovane (https://github.com/Supergiovane)",
|
|
6
6
|
"dependencies": {
|