node-red-contrib-knx-ultimate 6.3.1 → 6.3.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
CHANGED
|
@@ -6,10 +6,15 @@
|
|
|
6
6
|
|
|
7
7
|
# CHANGELOG
|
|
8
8
|
|
|
9
|
+
**Version 6.3.2** - August 2026<br/>
|
|
10
|
+
|
|
11
|
+
- Fixed stop issue in dimme-up.<br/>
|
|
12
|
+
|
|
9
13
|
**Version 6.3.1** - August 2026<br/>
|
|
10
14
|
|
|
11
15
|
- Updated dependencies, including the security-fixed jsPDF release.<br/>
|
|
12
16
|
- Replaced `node-color-log` with Winston, shared with the KNXUltimate engine.<br/>
|
|
17
|
+
- **Documentation language navigation**: fixed localized homepage links returning `404` on GitHub Pages because they incorrectly included a trailing slash.<br/>
|
|
13
18
|
|
|
14
19
|
**Version 6.3.0** - August 2026<br/>
|
|
15
20
|
|
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2019 Massimo Saccani
|
|
3
|
+
Copyright (c) 2019 Massimo Saccani (maxsupergiovane@icloud.com)
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -750,7 +750,9 @@ module.exports = function (RED) {
|
|
|
750
750
|
let numStep = 10 // Steps from 0 to 100 by 10
|
|
751
751
|
const extendedConf = {}
|
|
752
752
|
|
|
753
|
-
|
|
753
|
+
// DPT 3.x uses data/step-code 0 for BREAK. The direction bit may be
|
|
754
|
+
// either 0 ($00) or 1 ($08), so it must not be part of this check.
|
|
755
|
+
if (_KNXbrightness_Direction === 0) {
|
|
754
756
|
// STOP DIM
|
|
755
757
|
if (node.timerStepDim !== undefined) clearInterval(node.timerStepDim)
|
|
756
758
|
node.brightnessStep = null
|
|
@@ -835,7 +837,7 @@ module.exports = function (RED) {
|
|
|
835
837
|
// 23/23/2023 after many attempts to use dimming_delta function of the HueApeV2, loosing days of my life, without a decent success, will use the standard dimming calculations
|
|
836
838
|
// i decide to go to the "step brightness" way.
|
|
837
839
|
try {
|
|
838
|
-
if (_KNXbrightness_DirectionTunableWhite === 0
|
|
840
|
+
if (_KNXbrightness_DirectionTunableWhite === 0) {
|
|
839
841
|
// STOP DIM
|
|
840
842
|
if (node.timerStepDimTunableWhite !== undefined) clearInterval(node.timerStepDimTunableWhite)
|
|
841
843
|
node.brightnessStepTunableWhite = null
|
|
@@ -909,7 +911,7 @@ module.exports = function (RED) {
|
|
|
909
911
|
// After many attempts to use dimming_delta function of the HueApiV2, loosing days of my life, without a decent success, will use the standard dimming calculations
|
|
910
912
|
// i decide to go to the "step brightness" way.
|
|
911
913
|
try {
|
|
912
|
-
if (_KNXbrightness_DirectionHSV_H === 0
|
|
914
|
+
if (_KNXbrightness_DirectionHSV_H === 0) {
|
|
913
915
|
// STOP DIM
|
|
914
916
|
if (node.timerStepDimHSV_H !== undefined) clearInterval(node.timerStepDimHSV_H)
|
|
915
917
|
node.deleteHueStateQueue() // Clear dimming queue.
|
|
@@ -997,7 +999,7 @@ module.exports = function (RED) {
|
|
|
997
999
|
// After many attempts to use dimming_delta function of the HueApiV2, loosing days of my life, without a decent success, will use the standard dimming calculations
|
|
998
1000
|
// i decide to go to the "step brightness" way.
|
|
999
1001
|
try {
|
|
1000
|
-
if (_KNXbrightness_DirectionHSV_S === 0
|
|
1002
|
+
if (_KNXbrightness_DirectionHSV_S === 0) {
|
|
1001
1003
|
// STOP DIM
|
|
1002
1004
|
if (node.timerStepDimHSV_S !== undefined) clearInterval(node.timerStepDimHSV_S)
|
|
1003
1005
|
node.deleteHueStateQueue() // Clear dimming queue.
|
|
@@ -753,7 +753,9 @@ module.exports = function (RED) {
|
|
|
753
753
|
let numStep = 10 // Steps from 0 to 100 by 10
|
|
754
754
|
const extendedConf = {}
|
|
755
755
|
|
|
756
|
-
|
|
756
|
+
// DPT 3.x uses data/step-code 0 for BREAK. The direction bit may be
|
|
757
|
+
// either 0 ($00) or 1 ($08), so it must not be part of this check.
|
|
758
|
+
if (_KNXbrightness_Direction === 0) {
|
|
757
759
|
// STOP DIM
|
|
758
760
|
if (node.timerStepDim !== undefined) clearInterval(node.timerStepDim)
|
|
759
761
|
node.brightnessStep = null
|
|
@@ -838,7 +840,7 @@ module.exports = function (RED) {
|
|
|
838
840
|
// 23/23/2023 after many attempts to use dimming_delta function of the HueApeV2, loosing days of my life, without a decent success, will use the standard dimming calculations
|
|
839
841
|
// i decide to go to the "step brightness" way.
|
|
840
842
|
try {
|
|
841
|
-
if (_KNXbrightness_DirectionTunableWhite === 0
|
|
843
|
+
if (_KNXbrightness_DirectionTunableWhite === 0) {
|
|
842
844
|
// STOP DIM
|
|
843
845
|
if (node.timerStepDimTunableWhite !== undefined) clearInterval(node.timerStepDimTunableWhite)
|
|
844
846
|
node.brightnessStepTunableWhite = null
|
|
@@ -912,7 +914,7 @@ module.exports = function (RED) {
|
|
|
912
914
|
// After many attempts to use dimming_delta function of the HueApiV2, loosing days of my life, without a decent success, will use the standard dimming calculations
|
|
913
915
|
// i decide to go to the "step brightness" way.
|
|
914
916
|
try {
|
|
915
|
-
if (_KNXbrightness_DirectionHSV_H === 0
|
|
917
|
+
if (_KNXbrightness_DirectionHSV_H === 0) {
|
|
916
918
|
// STOP DIM
|
|
917
919
|
if (node.timerStepDimHSV_H !== undefined) clearInterval(node.timerStepDimHSV_H)
|
|
918
920
|
node.deleteHueStateQueue() // Clear dimming queue.
|
|
@@ -1000,7 +1002,7 @@ module.exports = function (RED) {
|
|
|
1000
1002
|
// After many attempts to use dimming_delta function of the HueApiV2, loosing days of my life, without a decent success, will use the standard dimming calculations
|
|
1001
1003
|
// i decide to go to the "step brightness" way.
|
|
1002
1004
|
try {
|
|
1003
|
-
if (_KNXbrightness_DirectionHSV_S === 0
|
|
1005
|
+
if (_KNXbrightness_DirectionHSV_S === 0) {
|
|
1004
1006
|
// STOP DIM
|
|
1005
1007
|
if (node.timerStepDimHSV_S !== undefined) clearInterval(node.timerStepDimHSV_S)
|
|
1006
1008
|
node.deleteHueStateQueue() // Clear dimming queue.
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"engines": {
|
|
4
4
|
"node": ">=20.18.1"
|
|
5
5
|
},
|
|
6
|
-
"version": "6.3.
|
|
6
|
+
"version": "6.3.2",
|
|
7
7
|
"description": "KNX Ultimate is the most advanced KNX integration for Node-RED, providing secure KNX/IP communication, routing, ETS project import, Philips Hue, Matter Controller and Matter Bridge (control matter device via KNX and expose KNX GA via Matter), MQTT, diagnostics with AI, virtual devices, and powerful automation nodes. Build professional, reliable, and scalable smart home and building automation projects with minimal effort.",
|
|
8
8
|
"files": [
|
|
9
9
|
"nodes/",
|