node-red-contrib-knx-ultimate 3.3.5 → 3.3.6
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 +4 -1
- package/nodes/knxUltimateAlerter.js +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,10 @@
|
|
|
6
6
|
|
|
7
7
|
# CHANGELOG
|
|
8
8
|
|
|
9
|
-
**Version 3.3.
|
|
9
|
+
**Version 3.3.6** - December 2024<br/>
|
|
10
|
+
- KNX Alerter Node: read status after deploy even of a single node.<br/>
|
|
11
|
+
|
|
12
|
+
**Version 3.3.5** - December 2024<br/>
|
|
10
13
|
- KNX Alerter Node: now the node works even if no ETS file has been imported.<br/>
|
|
11
14
|
|
|
12
15
|
**Version 3.3.3** - November 2024<br/>
|
|
@@ -151,6 +151,8 @@ module.exports = function (RED) {
|
|
|
151
151
|
// 24/04/2021 perform a read on all GA in the rule list. Called both from node.on("input") and knxUltimate-config
|
|
152
152
|
node.initialReadAllDevicesInRules = () => {
|
|
153
153
|
if (node.serverKNX) {
|
|
154
|
+
node.setLocalStatus({ fill: 'grey', shape: 'ring', text: 'Reasy', payload: '', GA: '', dpt: '', devicename: '' });
|
|
155
|
+
|
|
154
156
|
let grpaddr = '';
|
|
155
157
|
for (let i = 0; i < node.rules.length; i++) {
|
|
156
158
|
// rule is { topic: rowRuleTopic, devicename: rowRuleDeviceName, longdevicename: rowRuleLongDeviceName}
|
|
@@ -273,6 +275,7 @@ module.exports = function (RED) {
|
|
|
273
275
|
node.serverKNX.removeClient(node);
|
|
274
276
|
if (node.topic !== '' || node.topicSave !== '') {
|
|
275
277
|
node.serverKNX.addClient(node);
|
|
278
|
+
node.initialReadAllDevicesInRules();
|
|
276
279
|
}
|
|
277
280
|
}
|
|
278
281
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"engines": {
|
|
4
4
|
"node": ">=16.0.0"
|
|
5
5
|
},
|
|
6
|
-
"version": "3.3.
|
|
6
|
+
"version": "3.3.6",
|
|
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",
|