node-red-contrib-knx-ultimate 4.3.12 → 4.3.15
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 +9 -0
- package/README.md +6 -0
- package/package.json +3 -3
- package/resources/htmlUtils.js +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,15 @@
|
|
|
6
6
|
|
|
7
7
|
# CHANGELOG
|
|
8
8
|
|
|
9
|
+
**Version 4.3.15** - May 2026<br/>
|
|
10
|
+
|
|
11
|
+
- FIX: DPT dropdown in editor now remains open when clicking on an already populated datapoint field (no immediate close on mouse button release).<br/>
|
|
12
|
+
- Docs: added GitHub badges **Commit activity** and **Last commit** to the README header.<br/>
|
|
13
|
+
|
|
14
|
+
**Version 4.3.13** - May 2026<br/>
|
|
15
|
+
|
|
16
|
+
- Bump KNX Engine to 5.5.6<br/>
|
|
17
|
+
|
|
9
18
|
**Version 4.3.12** - May 2026<br/>
|
|
10
19
|
|
|
11
20
|
- Docs/help/wiki: refined **KNX DEVICE / KNX Function** wording in all supported languages (**EN/IT/DE/FR/ES/zh-CN**) to state explicitly that `getGAValue(...)` must always be used as **`await getGAValue(...)`**; without `await` the function returns a `Promise`, not the GA value.<br/>
|
package/README.md
CHANGED
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
[![Node.js version][node-version-image]][npm-url]
|
|
8
8
|
[![Node-RED Flow Library][flows-image]][flows-url]
|
|
9
9
|
[![Docs][docs-image]][docs-url]
|
|
10
|
+
[![Commit activity][commit-activity-image]][commit-activity-url]
|
|
11
|
+
[![Last commit][last-commit-image]][last-commit-url]
|
|
10
12
|
[![NPM downloads per month][npm-downloads-month-image]][npm-url]
|
|
11
13
|
[![NPM downloads total][npm-downloads-total-image]][npm-url]
|
|
12
14
|
[![MIT License][license-image]][license-url]
|
|
@@ -49,6 +51,10 @@
|
|
|
49
51
|
[youtube-url]: https://www.youtube.com/channel/UCA9RsLps1IthT7fDSeUbRZw/playlists
|
|
50
52
|
[docs-image]: https://img.shields.io/badge/Docs-GitHub%20Pages-2ea44f
|
|
51
53
|
[docs-url]: https://supergiovane.github.io/node-red-contrib-knx-ultimate/
|
|
54
|
+
[commit-activity-image]: https://img.shields.io/github/commit-activity/m/Supergiovane/node-red-contrib-knx-ultimate?logo=github
|
|
55
|
+
[commit-activity-url]: https://github.com/Supergiovane/node-red-contrib-knx-ultimate/commits/master
|
|
56
|
+
[last-commit-image]: https://img.shields.io/github/last-commit/Supergiovane/node-red-contrib-knx-ultimate?logo=github
|
|
57
|
+
[last-commit-url]: https://github.com/Supergiovane/node-red-contrib-knx-ultimate/commits/master
|
|
52
58
|
[github-image]: https://img.shields.io/badge/GitHub-Repository-000000
|
|
53
59
|
[github-url]: https://github.com/Supergiovane/node-red-contrib-knx-ultimate
|
|
54
60
|
[flows-image]: https://img.shields.io/badge/Node--RED-Flow%20Library-white?logo=nodered&logoColor=8F0000
|
package/package.json
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
"engines": {
|
|
4
4
|
"node": ">=20.18.1"
|
|
5
5
|
},
|
|
6
|
-
"version": "4.3.
|
|
7
|
-
"description": "Control your KNX and KNX Secure intallation via Node-Red! A bunch of KNX nodes, with integrated Philips HUE control, ETS group address importer,
|
|
6
|
+
"version": "4.3.15",
|
|
7
|
+
"description": "Control your KNX and KNX Secure intallation via Node-Red! A bunch of KNX nodes, with integrated Philips HUE control, ETS group address importer, KNX AI for diagnosticsand KNX routing between interfaces. Easy to use and highly configurable.",
|
|
8
8
|
"files": [
|
|
9
9
|
"nodes/",
|
|
10
10
|
"resources/",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dns-sync": "0.2.1",
|
|
20
20
|
"google-translate-tts": "^0.3.0",
|
|
21
21
|
"js-yaml": "4.1.1",
|
|
22
|
-
"knxultimate": "5.5.
|
|
22
|
+
"knxultimate": "5.5.6",
|
|
23
23
|
"lodash": "4.18.1",
|
|
24
24
|
"node-color-log": "12.0.1",
|
|
25
25
|
"ping": "0.4.4",
|
package/resources/htmlUtils.js
CHANGED
|
@@ -216,7 +216,11 @@ window.KNX_makeSelectSearchable = KNX_makeSelectSearchable;
|
|
|
216
216
|
}
|
|
217
217
|
this.element.on('focus.knxAutocomplete click.knxAutocomplete', function () {
|
|
218
218
|
clearTimeout(self._knxAutoTimer)
|
|
219
|
-
|
|
219
|
+
const isDptCombobox = $(this).hasClass('knx-dpt-combobox')
|
|
220
|
+
self._knxAutoTimer = setTimeout(function () {
|
|
221
|
+
// DPT comboboxes must keep the full dropdown open even when an existing value is clicked.
|
|
222
|
+
showAll(isDptCombobox ? '' : undefined)
|
|
223
|
+
}, 0)
|
|
220
224
|
})
|
|
221
225
|
this.element.on('mousedown.knxAutocomplete', function () {
|
|
222
226
|
clearTimeout(self._knxAutoTimer)
|