Skip to content

Commit dab9fac

Browse files
committed
.
1 parent f3e2a36 commit dab9fac

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# CHANGELOG
88

99

10-
**Version 4.0.18** - October 2025<br/>
10+
**Version 4.0.19** - October 2025<br/>
1111
- Hue Light node: the `Locate` button now runs as a toggle — it starts a bridge identify loop that replays the Hue `identify` command every second, switches the icon to “stop”, and halts immediately when pressed again or automatically after 10 minutes.<br/>
1212
- Hue config node: added identify-session management (start/stop/timeout) so grouped lights fan out the locate pulse to all members without spamming the bridge.<br/>
1313
- Admin API `/KNXUltimateLocateHueDevice`: upgraded to orchestrate the new toggle behaviour, queueing devices per session and surfacing precise success/stop responses for the editor.<br/>

nodes/knxUltimateHueLight.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1558,11 +1558,11 @@
15581558
}
15591559

15601560
if (typeof red !== 'number'
1561-
|| typeof green !== 'number' |
1562-
|| typeof blue !== 'number' |
1563-
|| red > 255 |
1564-
|| green > 255 |
1565-
|| blue > 255 |
1561+
|| typeof green !== 'number'
1562+
|| typeof blue !== 'number'
1563+
|| red > 255
1564+
|| green > 255
1565+
|| blue > 255
15661566
) {
15671567
throw new TypeError('Expected three numbers below 256');
15681568
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"engines": {
44
"node": ">=20.18.1"
55
},
6-
"version": "4.0.18",
6+
"version": "4.0.19",
77
"description": "Control your KNX and KNX Secure 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.",
88
"dependencies": {
99
"binary-parser": "2.2.1",

0 commit comments

Comments
 (0)