node-red-contrib-knx-ultimate 2.0.21 → 2.1.0

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 2.1.0</b> - June 2023<br/>
11
+ - HUE nodes exited the BETA version. You can now start using HUE nodes.<br/>
12
+ </p>
9
13
  <p>
10
14
  <b>Version 2.0.21</b> - June 2023<br/>
11
15
  - HUE: CAUTION POSSIBLE BREAKING CHANGES TO THE HUE NODES. PLEASE BE AWARE THAT HUE NODES ARE STILL IN BETA<br/>
@@ -29,7 +29,7 @@
29
29
  label: function () {
30
30
  return (this.name);
31
31
  },
32
- paletteLabel: "Hue Button (beta)",
32
+ paletteLabel: "Hue Button",
33
33
  // button: {
34
34
  // enabled: function() {
35
35
  // // return whether or not the button is enabled, based on the current
@@ -44,7 +44,7 @@
44
44
  label: function () {
45
45
  return (this.name);
46
46
  },
47
- paletteLabel: "Hue Light (beta)",
47
+ paletteLabel: "Hue Light",
48
48
  // button: {
49
49
  // enabled: function() {
50
50
  // // return whether or not the button is enabled, based on the current
@@ -20,7 +20,7 @@
20
20
  label: function () {
21
21
  return (this.name);
22
22
  },
23
- paletteLabel: "Hue Light Sensor (beta)",
23
+ paletteLabel: "Hue Light Sensor",
24
24
  // button: {
25
25
  // enabled: function() {
26
26
  // // return whether or not the button is enabled, based on the current
@@ -20,7 +20,7 @@
20
20
  label: function () {
21
21
  return (this.name);
22
22
  },
23
- paletteLabel: "Hue Motion (beta)",
23
+ paletteLabel: "Hue Motion",
24
24
  // button: {
25
25
  // enabled: function() {
26
26
  // // return whether or not the button is enabled, based on the current
@@ -163,7 +163,7 @@
163
163
  <br />
164
164
  <br />
165
165
  <p align="center">
166
- <i class="fa-solid fa-person-walking fa-8x"></i>
166
+ <i class="fa-solid fa-person-walking fa-shake fa-8x"></i>
167
167
  </p>
168
168
  <br />
169
169
  <label for="node-input-server" >
@@ -20,7 +20,7 @@
20
20
  label: function () {
21
21
  return (this.name);
22
22
  },
23
- paletteLabel: "Hue Tap Dial (beta)",
23
+ paletteLabel: "Hue Tap Dial",
24
24
  // button: {
25
25
  // enabled: function() {
26
26
  // // return whether or not the button is enabled, based on the current
@@ -20,7 +20,7 @@
20
20
  label: function () {
21
21
  return (this.name);
22
22
  },
23
- paletteLabel: "Hue Temperature Sensor (beta)",
23
+ paletteLabel: "Hue Temperature Sensor",
24
24
  // button: {
25
25
  // enabled: function() {
26
26
  // // return whether or not the button is enabled, based on the current
@@ -136,10 +136,10 @@ class classHUE extends EventEmitter {
136
136
  retArray.push({ name: 'Light Level: ' + linkedDevName + (Room !== undefined ? ', room ' + Room.metadata.name : ''), id: device.id })
137
137
  }
138
138
  if (_rtype === 'temperature') {
139
- retArray.push({ name: 'Temp: ' + linkedDevName + (Room !== undefined ? ', room ' + Room.metadata.name : ''), id: device.id })
139
+ retArray.push({ name: 'Temperature: ' + linkedDevName + (Room !== undefined ? ', room ' + Room.metadata.name : ''), id: device.id })
140
140
  }
141
141
  if (_rtype === 'scene') {
142
- retArray.push({ name: 'Temp: ' + linkedDevName + (Room !== undefined ? ', room ' + Room.metadata.name : ''), id: device.id })
142
+ retArray.push({ name: 'Scene: ' + linkedDevName + (Room !== undefined ? ', room ' + Room.metadata.name : ''), id: device.id })
143
143
  }
144
144
 
145
145
  })
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "engines": {
4
4
  "node": ">=14.0.0"
5
5
  },
6
- "version": "2.0.21",
6
+ "version": "2.1.0",
7
7
  "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. With integrated Philips HUE devices handling.",
8
8
  "dependencies": {
9
9
  "mkdirp": "1.0.4",