Skip to content

Commit

Permalink
3.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Supergiovane committed Sep 27, 2024
1 parent 336657e commit 143aff0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 16 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

# CHANGELOG

**Version 3.2.8** - October 2024<br/>
- KNX Node: fixed "read status at startup" field not showing up in very old versions.<br/>

**Version 3.2.7** - September 2024<br/>
- KNX Node: added "echoed" property to the flow's msg output. See help for further infos.<br/>

Expand Down
20 changes: 5 additions & 15 deletions nodes/knxUltimate.html
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,9 @@
$(this).autocomplete('search', $(this).val() + 'exactmatch');
});
$("#divDatapointSelection").show();
$("#divNode-input-initialread").show();
$("#divOutputRBE").show()
$("#divInputRBE").show()
} else if ($("#node-input-setTopicType").val() === 'listenAllGA') {
$("#node-input-topic").hide();
$("#divDatapointSelection").hide()
Expand All @@ -303,20 +306,12 @@
$("#divInputRBE").hide()
$("#node-input-inputRBE").val("false")
$("#divnotifyreadrequestautoreact").hide();
$("#helpallga").show();
$("#divTopic").hide()
$("#divNode-input-initialread").hide();

// Call a fake datapoint to load a sample "Universal Node"
knxUltimateDptsGetHelp("0.000", true); // 15/09/2020 Supergiovane, load sample help

if ($("#helpallga").html == "") {
// There is a ETS csv file, show the init read option
$("#divNode-input-initialread").show()
} else {
// There isn't a ETS csv file, hide and deselect the init read option
$("#divNode-input-initialread").hide();
$("#node-input-initialread").val(0);
}
} else {

// 15/09/2020 Supergiovane, load the help sample of the current datapoint
Expand All @@ -329,7 +324,6 @@
} else {
$("#divnotifyreadrequestautoreact").hide();
}
$("#helpallga").hide()
$("#divNode-input-initialread").show();

$("#node-input-topic").prop('placeholder', $("#node-input-setTopicType").val());
Expand All @@ -342,12 +336,10 @@
// Hide or show the GA and DPT fields if Notify on all Group Addresses is checked
if (oNodeServer !== undefined && oNodeServer !== null) {
if (oNodeServer.csv !== undefined && oNodeServer.csv !== "") {
$("#helpallga").html("");
// There is a ETS csv file, show the init read option
$("#divNode-input-initialread").show()
} else {
// 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
$("#helpallga").html("<i> " + node._("knxUltimate.advanced.noETSWarning") + " </i>");
if ($("#node-input-setTopicType").val() === 'listenAllGA') {
// There isn't a ETS csv file, hide and deselect the init read option
$("#divNode-input-initialread").hide();
Expand All @@ -362,7 +354,6 @@
$("#divDatapointSelection").show()
$("#divOutputRBE").show()
$("#divInputRBE").show()
$("#helpallga").hide()
$("#divNode-input-initialread").show()
}

Expand Down Expand Up @@ -438,8 +429,7 @@
}
// $("#node-input-listenallga").prop("checked", false)
// $("#divOutputRBE").show()
// $("#divInputRBE").show()
//$("#helpallga").show()
// $("#divInputRBE").show()
}

// 15/09/2020 Supergiovane, Detele the sample help editor
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"engines": {
"node": ">=16.0.0"
},
"version": "3.2.7",
"version": "3.2.8",
"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.",
"dependencies": {
"binary-parser": "2.2.1",
Expand Down

0 comments on commit 143aff0

Please sign in to comment.