node-red-contrib-knx-ultimate 2.3.1 → 2.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 +1 -1
- package/nodes/knxUltimateHueLight.html +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
if ($("#node-input-hueDevice").val() === '') {
|
|
176
176
|
$("#tabs").hide();
|
|
177
177
|
} else {
|
|
178
|
-
$.getJSON("knxUltimateGetLightObject?id=" + $("#node-input-hueDevice").val().split("#")[0] + "
|
|
178
|
+
$.getJSON("knxUltimateGetLightObject?id=" + $("#node-input-hueDevice").val().split("#")[0] + "&" + { _: new Date().getTime() }, (data) => {
|
|
179
179
|
let oLight = data;
|
|
180
180
|
// Check if grouped, to hide/show the "Get current" buttons
|
|
181
181
|
if (oLight.type === "grouped_light") {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"engines": {
|
|
4
4
|
"node": ">=16.0.0"
|
|
5
5
|
},
|
|
6
|
-
"version": "2.3.
|
|
6
|
+
"version": "2.3.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",
|