node-red-contrib-knx-ultimate 2.4.2 → 2.4.3
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,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
# CHANGELOG
|
|
8
8
|
|
|
9
|
-
**Version 2.4.
|
|
9
|
+
**Version 2.4.3** - Jan 2024<br/>
|
|
10
10
|
- NEW: Added KNX Datapoint 275.100<br/>
|
|
11
11
|
- HUE Light: fixed https://github.com/Supergiovane/node-red-contrib-knx-ultimate/issues/317<br/>
|
|
12
12
|
- HUE Light: corrected the 7.600 kelvin range https://github.com/Supergiovane/node-red-contrib-knx-ultimate/issues/316<br/>
|
package/nodes/commonFunctions.js
CHANGED
|
@@ -367,7 +367,7 @@ module.exports = function (RED) {
|
|
|
367
367
|
|
|
368
368
|
|
|
369
369
|
// 15/09/2020 Supergiovane, read datapoint help usage
|
|
370
|
-
RED.httpAdmin.get("/knxUltimateDptsGetHelp",
|
|
370
|
+
RED.httpAdmin.get("/knxUltimateDptsGetHelp", (req, res) => {
|
|
371
371
|
const serverId = RED.nodes.getNode(req.query.serverId); // Retrieve node.id of the config node.
|
|
372
372
|
const sDPT = req.query.dpt.split(".")[0]; // Takes only the main type
|
|
373
373
|
let jRet;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"engines": {
|
|
4
4
|
"node": ">=16.0.0"
|
|
5
5
|
},
|
|
6
|
-
"version": "2.4.
|
|
6
|
+
"version": "2.4.3",
|
|
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",
|