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

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.56</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/>
@@ -118,8 +118,6 @@ module.exports = (RED) => {
118
118
  // Get all devices and join it with relative rooms, by adding the room name to the device name
119
119
  node.getResources = (_rtype) => {
120
120
  try {
121
- // Api V2
122
-
123
121
  // Returns capitalized string
124
122
  function capStr(s) {
125
123
  if (typeof s !== "string") return "";
@@ -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)
@@ -185,8 +185,8 @@
185
185
  &nbsp<i class="fa fa-youtube"></i></span>&nbsp<a target="_blank" href="https://youtu.be/jjEUI1J8bkA"><u>Youtube sample</u></a>
186
186
  <br />
187
187
  <br />
188
- <p align="center">
189
- <i class="fal fa-star-and-crescent fa-8x"></i>
188
+ <p align="center">
189
+ <i class="fa fa-tv fa-fade 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.56",
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",