node-red-contrib-knx-ultimate 2.4.5-beta.4 → 2.4.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 CHANGED
@@ -6,6 +6,27 @@
6
6
 
7
7
  # CHANGELOG
8
8
 
9
+ **Version 2.4.6** - Feb 2024<br/>
10
+ - WARNING: this version uses the Node-Red plugin system; the Node-Red version must be **equals or major than 3.1.1**<br/>
11
+ - Changed the KNX Engine keep alive CONNECTIONSTATUS_REQUEST interval from 60 to 30 secs, to allow some KNX/IP interfaces (not strictly following the KNX standard) to work properly.<br/>
12
+
13
+ **Version 2.4.5** - Feb 2024<br/>
14
+ - WARNING: this version uses the Node-Red plugin system; the Node-Red version must be **equals or major than 3.1.1**<br/>
15
+ - NEW: Added KNX Datapoint 275.100<br/>
16
+ - HUE Light: fixed https://github.com/Supergiovane/node-red-contrib-knx-ultimate/issues/317<br/>
17
+ - HUE Light: corrected the 7.600 kelvin range https://github.com/Supergiovane/node-red-contrib-knx-ultimate/issues/316<br/>
18
+ - HUE Light: blinking effect and color cyle are now stopped, whenever an FALSE KNX telegram is received by the light switching group address.<br/>
19
+ - HUE Light: when the light is off, the dim up sequence starts now with initial brightness = zero.<br/>
20
+ - KNX Engine: moved all HTTP calls to a single js file plugin, loaded at startup, to avoid multi KNX gateway or multi HUE bridges issues.<br/>
21
+ - HUE: Optimized color translation between xyBri and RGB.<br/>
22
+ - NEW: HUE Light node: added the HSV controls.<br/>
23
+ - HUE Light node: stopping the dim sequence, now clears also the HUE bridge queue commands, to allow stopping the dimmer quickly.<br/>
24
+ - HUE Light node: smoother dimming.<br/>
25
+ - Fix the listing of ethernet interfaces in the gateway config window.<br/>
26
+ - HUE: Fixed "read at startup" option, not working for some HUE nodes.<br/>
27
+ - NEW: HUE: added node Zigbee Connectivity.<br/>
28
+ - PLEASE TRY THIS VERSION AND GIVE ME ANY FEEDBACK ABOUT ISSUES YOU FIND. THANKS.<br/>
29
+
9
30
  **Version 2.4.5-beta.4 PUBLIC BETA** - Feb 2024<br/>
10
31
  - Maintenance release.<br/>
11
32
 
@@ -6,6 +6,11 @@
6
6
 
7
7
  # CHANGELOG
8
8
 
9
+ <p>
10
+ <b>Version 1.0.48</b> - February 2024<br/>
11
+ - Maintenance release.<br/>
12
+ </p>
13
+
9
14
  <p>
10
15
  <b>Version 1.0.47</b> - January 2024<br/>
11
16
  - NEW: added DPT 275.100.<br/>
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "knxultimate",
3
3
  "description": "KNX IP protocol implementation for Node. This is the ENGINE of Node-Red KNX-Ultimate node.",
4
- "version": "1.0.47",
4
+ "version": "1.0.48",
5
5
  "engines": {
6
6
  "node": ">=14"
7
7
  },
@@ -54,7 +54,7 @@ exports.KNX_CONSTANTS = {
54
54
  CONNECTIONSTATE_REQUEST_TIMEOUT: 10,
55
55
  DEVICE_CONFIGURATION_REQUEST_TIMEOUT: 10,
56
56
  TUNNELING_REQUEST_TIMEOUT: 1,
57
- CONNECTION_ALIVE_TIME: 60,
57
+ CONNECTION_ALIVE_TIME: 30, // Max is 120secs by standard KNX specs.
58
58
  TUNNEL_LINKLAYER: 0x02,
59
59
  TUNNEL_RAW: 0x04,
60
60
  TUNNEL_BUSMONITOR: 0x80,
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "engines": {
4
4
  "node": ">=16.0.0"
5
5
  },
6
- "version": "2.4.5-beta.4",
6
+ "version": "2.4.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",