node-red-contrib-knx-ultimate 3.2.13 → 3.2.14

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,9 @@
6
6
 
7
7
  # CHANGELOG
8
8
 
9
+ **Version 3.2.14** - October 2024<br/>
10
+ - Workarouded bug in node-red 4.0.x not selecting the default server's node.<br/>
11
+
9
12
  **Version 3.2.13** - October 2024<br/>
10
13
  - Revert back from gathering the debug log. It doesn't like me.<br/>
11
14
 
@@ -1158,7 +1158,7 @@ module.exports = (RED) => {
1158
1158
  if (node.sysLogger !== undefined && node.sysLogger !== null) node.sysLogger.warn(
1159
1159
  "handleTelegramQueue: the KNXEngine is busy or is waiting for a telegram ACK with seqNumner " +
1160
1160
  node.knxConnection.getSeqNumber() +
1161
- ". Delay handling queue. YOUR COMPUTER COULD BE TOO SLOW OR BUSY TO KEEP UP ADDED TELEGRAM TO COMMANDQUEUE. Len: 3",
1161
+ ". Delay handling queue. Len: 3",
1162
1162
  );
1163
1163
  }
1164
1164
 
@@ -64,6 +64,13 @@
64
64
 
65
65
 
66
66
  var node = this;
67
+ if ($("#node-input-server").val() === "_ADD_") {
68
+ // Node-Red 4.0.x has a bug not selecting the default server node
69
+ try {
70
+ $("#node-input-server").prop("selectedIndex", 0);
71
+ } catch (error) {
72
+ }
73
+ }
67
74
  var oNodeServer = RED.nodes.node($("#node-input-server").val()); // Store the config-node
68
75
  $("#tabs").tabs();
69
76
 
@@ -136,6 +136,20 @@
136
136
 
137
137
 
138
138
  var node = this;
139
+ if ($("#node-input-server").val() === "_ADD_") {
140
+ // Node-Red 4.0.x has a bug not selecting the default server node
141
+ try {
142
+ $("#node-input-server").prop("selectedIndex", 0);
143
+ } catch (error) {
144
+ }
145
+ }
146
+ if ($("#node-input-serverHue").val() === "_ADD_") {
147
+ // Node-Red 4.0.x has a bug not selecting the default server node
148
+ try {
149
+ $("#node-input-serverHue").prop("selectedIndex", 0);
150
+ } catch (error) {
151
+ }
152
+ }
139
153
 
140
154
  function onEditPrepare() {
141
155
  // TIMER BLINK ####################################################
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "engines": {
4
4
  "node": ">=16.0.0"
5
5
  },
6
- "version": "3.2.13",
6
+ "version": "3.2.14",
7
7
  "description": "Control your KNX intallation via Node-Red! A bunch of KNX nodes, with integrated Philips HUE control and ETS group address importer. Easy to use and highly configurable.",
8
8
  "dependencies": {
9
9
  "binary-parser": "2.2.1",