node-red-contrib-boolean-logic-ultimate 1.1.0 → 1.1.1

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.1</b> October 2023<br/>
8
+ - Math node: FIX: fixed "measurement" and "average" not showing correct results when using the "subtract" option.</br>
9
+ </p>
6
10
  <p>
7
11
  <b>Version 1.1.0</b> September 2023<br/>
8
12
  - NEW: Translator config node. Each boolean logic node can now translate the input payload to a boolean value. For example, you can add "done:true" to the translation table, to convert the input payload "done", to a boolean <i>TRUE</> value.</br>
@@ -79,6 +79,7 @@ module.exports = function (RED) {
79
79
  let values = []
80
80
  for (let row in node.topics) {
81
81
  if (node.topics.hasOwnProperty(row)) {
82
+ ++quantita;
82
83
  values.push(node.topics[row]);
83
84
  }
84
85
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-boolean-logic-ultimate",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
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": {