node-red-contrib-knx-ultimate 3.2.1 → 3.2.2
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 +2 -0
- package/nodes/knxUltimate-config.js +5 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
# CHANGELOG
|
|
8
8
|
|
|
9
|
+
**Version 3.2.2** - September 2024<br/>
|
|
10
|
+
- KNX engine: Bump to 3.0.2: fixed an issue with the KNX queue.<br/>
|
|
9
11
|
|
|
10
12
|
**Version 3.2.1-beta.0** - September 2024<br/>
|
|
11
13
|
- Rewrote the logger engine and fixed some issues in the KNXUltimate package.<br/>
|
|
@@ -216,7 +216,7 @@ module.exports = (RED) => {
|
|
|
216
216
|
node.exposedGAs = JSON.parse(fs.readFileSync(sFile, "utf8"));
|
|
217
217
|
} catch (err) {
|
|
218
218
|
node.exposedGAs = [];
|
|
219
|
-
if (node.sysLogger !== undefined && node.sysLogger !== null) node.sysLogger.
|
|
219
|
+
if (node.sysLogger !== undefined && node.sysLogger !== null) node.sysLogger.error("KNXUltimate-config: unable to read peristent file " + sFile + " " + err.message);
|
|
220
220
|
}
|
|
221
221
|
}
|
|
222
222
|
|
|
@@ -513,7 +513,8 @@ module.exports = (RED) => {
|
|
|
513
513
|
// localEchoInTunneling: true,
|
|
514
514
|
// localIPAddress: "",
|
|
515
515
|
// jKNXSecureKeyring: node.jKNXSecureKeyring
|
|
516
|
-
// interface: ""
|
|
516
|
+
// interface: "",
|
|
517
|
+
// KNXQueueSendIntervalMilliseconds: Number(node.delaybetweentelegrams)
|
|
517
518
|
// };
|
|
518
519
|
|
|
519
520
|
node.setKnxConnectionProperties = () => {
|
|
@@ -679,7 +680,7 @@ module.exports = (RED) => {
|
|
|
679
680
|
} catch (error) {
|
|
680
681
|
if (node.sysLogger !== undefined && node.sysLogger !== null) node.sysLogger.error("knxUltimate-config: DoInitialReadFromKNXBusOrFile " + error.stack);
|
|
681
682
|
}
|
|
682
|
-
},
|
|
683
|
+
}, 1000); // 17/02/2020 Do initial read of all nodes requesting initial read
|
|
683
684
|
const t = setTimeout(() => {
|
|
684
685
|
// 21/03/2022 fixed possible memory leak. Previously was setTimeout without "let t = ".
|
|
685
686
|
node.setAllClientsStatus("Connected.", "green", "On duty.");
|
|
@@ -1151,7 +1152,7 @@ module.exports = (RED) => {
|
|
|
1151
1152
|
if (node.sysLogger !== undefined && node.sysLogger !== null) node.sysLogger.warn(
|
|
1152
1153
|
"knxUltimate-config: handleTelegramQueue: the KNXEngine is busy or is waiting for a telegram ACK with seqNumner " +
|
|
1153
1154
|
node.knxConnection.getSeqNumber() +
|
|
1154
|
-
". Delay handling queue. YOUR COMPUTER COULD BE TOO SLOW OR BUSY TO KEEP UP
|
|
1155
|
+
". Delay handling queue. YOUR COMPUTER COULD BE TOO SLOW OR BUSY TO KEEP UP ADDED TELEGRAM TO COMMANDQUEUE. Len: 3",
|
|
1155
1156
|
);
|
|
1156
1157
|
}
|
|
1157
1158
|
|
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.2",
|
|
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",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"dns-sync": "0.2.1",
|
|
12
12
|
"eventsource": "2.0.2",
|
|
13
13
|
"js-yaml": "4.1.0",
|
|
14
|
-
"knxultimate": ">=3.0.
|
|
14
|
+
"knxultimate": ">=3.0.2",
|
|
15
15
|
"limiter": "^2.1.0",
|
|
16
16
|
"lodash": "4.17.21",
|
|
17
17
|
"node-color-log": "12.0.1",
|