node-red-contrib-knx-ultimate 2.1.2 → 2.1.3

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
@@ -6,6 +6,10 @@
6
6
 
7
7
  # CHANGELOG
8
8
 
9
+ <p>
10
+ <b>Version 2.1.3</b> - June 2023<br/>
11
+ - Bugfix.<br/>
12
+ </p>
9
13
  <p>
10
14
  <b>Version 2.1.2</b> - June 2023<br/>
11
15
  - NEW: Hue Hue Light node, added BLINK option.<br/>
@@ -54,8 +54,8 @@ class classHUE extends EventEmitter {
54
54
  for (let index = 0; index < events.length; index++) {
55
55
  const oEvento = events[index]
56
56
  if (oEvento.type === 'update') {
57
- for (let index = 0; index < oEvento.data.length; index++) {
58
- const element = oEvento.data[index]
57
+ for (let i = 0; i < oEvento.data.length; i++) {
58
+ const element = oEvento.data[i]
59
59
  this.emit('event', element)
60
60
  }
61
61
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "engines": {
4
4
  "node": ">=14.0.0"
5
5
  },
6
- "version": "2.1.2",
6
+ "version": "2.1.3",
7
7
  "description": "Control your KNX intallation via Node-Red! Single Node KNX IN/OUT with optional ETS group address importer. Easy to use and highly configurable. With integrated Philips HUE devices handling.",
8
8
  "dependencies": {
9
9
  "mkdirp": "1.0.4",