node-red-contrib-knx-ultimate 3.2.7 → 3.2.8
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 +3 -0
- package/nodes/knxUltimate.html +5 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
# CHANGELOG
|
|
8
8
|
|
|
9
|
+
**Version 3.2.8** - October 2024<br/>
|
|
10
|
+
- KNX Node: fixed "read status at startup" field not showing up in very old versions.<br/>
|
|
11
|
+
|
|
9
12
|
**Version 3.2.7** - September 2024<br/>
|
|
10
13
|
- KNX Node: added "echoed" property to the flow's msg output. See help for further infos.<br/>
|
|
11
14
|
|
package/nodes/knxUltimate.html
CHANGED
|
@@ -295,6 +295,9 @@
|
|
|
295
295
|
$(this).autocomplete('search', $(this).val() + 'exactmatch');
|
|
296
296
|
});
|
|
297
297
|
$("#divDatapointSelection").show();
|
|
298
|
+
$("#divNode-input-initialread").show();
|
|
299
|
+
$("#divOutputRBE").show()
|
|
300
|
+
$("#divInputRBE").show()
|
|
298
301
|
} else if ($("#node-input-setTopicType").val() === 'listenAllGA') {
|
|
299
302
|
$("#node-input-topic").hide();
|
|
300
303
|
$("#divDatapointSelection").hide()
|
|
@@ -303,20 +306,12 @@
|
|
|
303
306
|
$("#divInputRBE").hide()
|
|
304
307
|
$("#node-input-inputRBE").val("false")
|
|
305
308
|
$("#divnotifyreadrequestautoreact").hide();
|
|
306
|
-
$("#helpallga").show();
|
|
307
309
|
$("#divTopic").hide()
|
|
310
|
+
$("#divNode-input-initialread").hide();
|
|
308
311
|
|
|
309
312
|
// Call a fake datapoint to load a sample "Universal Node"
|
|
310
313
|
knxUltimateDptsGetHelp("0.000", true); // 15/09/2020 Supergiovane, load sample help
|
|
311
314
|
|
|
312
|
-
if ($("#helpallga").html == "") {
|
|
313
|
-
// There is a ETS csv file, show the init read option
|
|
314
|
-
$("#divNode-input-initialread").show()
|
|
315
|
-
} else {
|
|
316
|
-
// There isn't a ETS csv file, hide and deselect the init read option
|
|
317
|
-
$("#divNode-input-initialread").hide();
|
|
318
|
-
$("#node-input-initialread").val(0);
|
|
319
|
-
}
|
|
320
315
|
} else {
|
|
321
316
|
|
|
322
317
|
// 15/09/2020 Supergiovane, load the help sample of the current datapoint
|
|
@@ -329,7 +324,6 @@
|
|
|
329
324
|
} else {
|
|
330
325
|
$("#divnotifyreadrequestautoreact").hide();
|
|
331
326
|
}
|
|
332
|
-
$("#helpallga").hide()
|
|
333
327
|
$("#divNode-input-initialread").show();
|
|
334
328
|
|
|
335
329
|
$("#node-input-topic").prop('placeholder', $("#node-input-setTopicType").val());
|
|
@@ -342,12 +336,10 @@
|
|
|
342
336
|
// Hide or show the GA and DPT fields if Notify on all Group Addresses is checked
|
|
343
337
|
if (oNodeServer !== undefined && oNodeServer !== null) {
|
|
344
338
|
if (oNodeServer.csv !== undefined && oNodeServer.csv !== "") {
|
|
345
|
-
$("#helpallga").html("");
|
|
346
339
|
// There is a ETS csv file, show the init read option
|
|
347
340
|
$("#divNode-input-initialread").show()
|
|
348
341
|
} else {
|
|
349
342
|
// 25/10/2019 Warn user that the node will node encode/decode datagram, if Listen All GA's if the config node doesn't contain the csv
|
|
350
|
-
$("#helpallga").html("<i> " + node._("knxUltimate.advanced.noETSWarning") + " </i>");
|
|
351
343
|
if ($("#node-input-setTopicType").val() === 'listenAllGA') {
|
|
352
344
|
// There isn't a ETS csv file, hide and deselect the init read option
|
|
353
345
|
$("#divNode-input-initialread").hide();
|
|
@@ -362,7 +354,6 @@
|
|
|
362
354
|
$("#divDatapointSelection").show()
|
|
363
355
|
$("#divOutputRBE").show()
|
|
364
356
|
$("#divInputRBE").show()
|
|
365
|
-
$("#helpallga").hide()
|
|
366
357
|
$("#divNode-input-initialread").show()
|
|
367
358
|
}
|
|
368
359
|
|
|
@@ -438,8 +429,7 @@
|
|
|
438
429
|
}
|
|
439
430
|
// $("#node-input-listenallga").prop("checked", false)
|
|
440
431
|
// $("#divOutputRBE").show()
|
|
441
|
-
// $("#divInputRBE").show()
|
|
442
|
-
//$("#helpallga").show()
|
|
432
|
+
// $("#divInputRBE").show()
|
|
443
433
|
}
|
|
444
434
|
|
|
445
435
|
// 15/09/2020 Supergiovane, Detele the sample help editor
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"engines": {
|
|
4
4
|
"node": ">=16.0.0"
|
|
5
5
|
},
|
|
6
|
-
"version": "3.2.
|
|
6
|
+
"version": "3.2.8",
|
|
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",
|