node-red-contrib-knx-ultimate 2.1.54 → 2.1.55

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.55</b> - October 2023<br/>
11
+ - HUE Scene: removed non existant scene 0.<br/>
12
+ </p>
9
13
  <p>
10
14
  <b>Version 2.1.54</b> - October 2023<br/>
11
15
  - HUE Scene: NEW: you can now use also the Datapoint 18.001, to recall a scene via a KNX scene pushbutton.<br/>
@@ -42,7 +42,7 @@
42
42
  var oNodeServer = RED.nodes.node($("#node-input-server").val()); // Store the config-node
43
43
  var oNodeServerHue = RED.nodes.node($("#node-input-serverHue").val()); // Store the config-node
44
44
 
45
- for (let index = 0; index < 64; index++) {
45
+ for (let index = 1; index < 64; index++) {
46
46
  $("#node-input-valscene").append($("<option></option>")
47
47
  .attr("value", index)
48
48
  .text("Scene n. " + index)
@@ -186,7 +186,7 @@
186
186
  <br />
187
187
  <br />
188
188
  <p align="center">
189
- <i class="fal fa-star-and-crescent fa-8x"></i>
189
+ <i class="fa fa-star-and-crescent fa-bounce fa-8x"></i>
190
190
  </p>
191
191
  <br />
192
192
  <label for="node-input-server" >
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "engines": {
4
4
  "node": ">=16.0.0"
5
5
  },
6
- "version": "2.1.54",
6
+ "version": "2.1.55",
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
  "binary-parser": "2.2.1",