node-red-contrib-knx-ultimate 1.3.48 → 1.3.49

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,10 @@
6
6
 
7
7
  # CHANGELOG
8
8
 
9
+ <p>
10
+ <b>Version 1.3.49</b> - August 2022<br/>
11
+ - Fixed name validation in the Viewer node.<br/>
12
+ </p>
9
13
  <p>
10
14
  <b>Version 1.3.48</b> - August 2022<br/>
11
15
  - Fixed old "new Buffer" call. It's deprecated and may not work with new node.js versions.<br/>
@@ -5,22 +5,22 @@
5
5
  defaults: {
6
6
  //buttonState: {value: true},
7
7
  server: { type: "knxUltimate-config", required: true },
8
- name: { value: "KNXViewer", validate: RED.validators.regex(/^[a-z]+$/i) }
8
+ name: { value: "KNXViewer", required: false }
9
9
  },
10
10
  inputs: 0,
11
11
  outputs: 2,
12
12
  outputLabels: function (i) {
13
- switch (i) {
14
- case 0:
15
- return "Formatted Payload";
16
- break;
17
- case 1:
18
- return "Simple Array";
19
- break;
20
- default:
21
- break;
22
- }
23
- },
13
+ switch (i) {
14
+ case 0:
15
+ return "Formatted Payload";
16
+ break;
17
+ case 1:
18
+ return "Simple Array";
19
+ break;
20
+ default:
21
+ break;
22
+ }
23
+ },
24
24
  icon: "node-eye-icon.svg",
25
25
  label: function () {
26
26
  return (this.name);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-knx-ultimate",
3
- "version": "1.3.48",
3
+ "version": "1.3.49",
4
4
  "description": "Control your KNX intallation via Node-Red! Single Node KNX IN/OUT with optional ETS group address importer. Easy to use and highly configurable.",
5
5
  "dependencies": {
6
6
  "mkdirp": "1.0.4",