iobroker.airzone 2.0.2 → 2.0.3
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/LocalApi/System.js +1 -1
- package/LocalApi/Zone.js +1 -1
- package/README.md +3 -0
- package/io-package.json +13 -1
- package/package.json +1 -1
package/LocalApi/System.js
CHANGED
|
@@ -26,7 +26,7 @@ class System {
|
|
|
26
26
|
native: {},
|
|
27
27
|
});
|
|
28
28
|
|
|
29
|
-
await this.adapter.createProperty(this.path, 'mode_raw', '
|
|
29
|
+
await this.adapter.createProperty(this.path, 'mode_raw', 'number', true, true, 'state');
|
|
30
30
|
await this.adapter.createProperty(this.path, 'mode', 'string', true, false, 'text');
|
|
31
31
|
|
|
32
32
|
this.adapter.subscribeState(this.path+'.mode_raw', this, this.reactToModeRawChange);
|
package/LocalApi/Zone.js
CHANGED
|
@@ -42,7 +42,7 @@ class Zone {
|
|
|
42
42
|
await this.adapter.createProperty(this.path, 'is_on', 'boolean', true, false, 'switch.power');
|
|
43
43
|
await this.adapter.createUnitProperty(this.path, 'current_temperature', 'number', 0, 100, unitUnit, true, false, 'value.temperature');
|
|
44
44
|
await this.adapter.createUnitProperty(this.path, 'current_humidity', 'number', 0, 100, '%', true, false, 'value.humidity');
|
|
45
|
-
await this.adapter.createUnitProperty(this.path, 'target_temperature', 'number', this.min_temp, this.max_temp, unitUnit, true, true, '
|
|
45
|
+
await this.adapter.createUnitProperty(this.path, 'target_temperature', 'number', this.min_temp, this.max_temp, unitUnit, true, true, 'value.temperature');
|
|
46
46
|
|
|
47
47
|
// Register callbacks to react on value changes
|
|
48
48
|
this.adapter.subscribeState(this.path+'.target_temperature', this, this.reactToTargetTemperatureChange);
|
package/README.md
CHANGED
|
@@ -11,6 +11,9 @@ Control and monitor airzone devices with ioBroker.
|
|
|
11
11
|
[](https://travis-ci.com/github/SilentPhoenix11/ioBroker.airzone)
|
|
12
12
|
|
|
13
13
|
## Changelog
|
|
14
|
+
### 2.0.3
|
|
15
|
+
* (SilentPhoenix11) Small fixes
|
|
16
|
+
|
|
14
17
|
### 2.0.2
|
|
15
18
|
* (SilentPhoenix11) Small fixes
|
|
16
19
|
|
package/io-package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common":{
|
|
3
3
|
"name":"airzone",
|
|
4
|
-
"version":"2.0.
|
|
4
|
+
"version":"2.0.3",
|
|
5
5
|
"news":{
|
|
6
6
|
"1.0.0":{
|
|
7
7
|
"en": "initial release",
|
|
@@ -98,6 +98,18 @@
|
|
|
98
98
|
"es": "Pequeñas correcciones",
|
|
99
99
|
"pl": "Małe poprawki",
|
|
100
100
|
"zh-cn": "小修正"
|
|
101
|
+
},
|
|
102
|
+
"2.0.3":{
|
|
103
|
+
"en": "Small fixes",
|
|
104
|
+
"de": "Kleine Korrekturen",
|
|
105
|
+
"ru": "Небольшие исправления",
|
|
106
|
+
"pt": "Pequenas correções",
|
|
107
|
+
"nl": "Kleine reparaties",
|
|
108
|
+
"fr": "Petits correctifs",
|
|
109
|
+
"it": "Piccole correzioni",
|
|
110
|
+
"es": "Pequeñas correcciones",
|
|
111
|
+
"pl": "Małe poprawki",
|
|
112
|
+
"zh-cn": "小修正"
|
|
101
113
|
}
|
|
102
114
|
},
|
|
103
115
|
"title":"Airzone Local API",
|