Skip to content

Commit

Permalink
Release 2.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jghaanstra committed Mar 4, 2018
1 parent 3be6377 commit 991d654
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
4 changes: 4 additions & 0 deletions APPSTORE.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ For Homey to be able to communicate with devices over the miIO protocol a unique
* Default flow cards for on/off, measure power and meter power capabilities class

## Changelog
### 2018-03-04 -- v2.6.1
* CHANGE: updated device class of Mi Power Plug and Mi Power Strip to "socket" (this require re-pairing of these devices)
* FIX: solved small device naming issue in pair wizard

### 2018-02-18 -- v2.6.0
* NEW: add support for PM2.5 sensor
* NEW: add basic support for WiFi power strips (power load and power consumed are not available for now)
Expand Down
7 changes: 4 additions & 3 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"en": [ "Xiaomi", "Mi", "Mi Home", "miio", "vacuumcleaner", "robot", "yeelight", "yeelights", "purifier", "humidifier", "philips", "eyecare", "powerplug" ],
"nl": [ "Xiaomi", "Mi", "Mi home", "miio", "stofzuiger", "robot", "yeelight", "yeelights", "luchtreiniger", "luchtbevochtiger", "philips", "eyecare", "powerplug" ]
},
"version": "2.6.0",
"version": "2.6.1",
"compatibility": "1.x >=1.5.0",
"author": {
"name": "Jelger Haanstra",
Expand All @@ -25,6 +25,7 @@
"bugs": {
"url": "https://github.com/jghaanstra/com.xiaomi-miio/issues"
},
"athomForumDiscussionId": 3295,
"images": {
"large": "./assets/images/large.jpg",
"small": "./assets/images/small.jpg"
Expand Down Expand Up @@ -547,7 +548,7 @@
"large": "drivers/mi-power-plug/assets/images/large.jpg",
"small": "drivers/mi-power-plug/assets/images/small.jpg"
},
"class": "sensor",
"class": "socket",
"capabilities": [
"onoff"
],
Expand Down Expand Up @@ -609,7 +610,7 @@
"large": "drivers/mi-power-strip/assets/images/large.jpg",
"small": "drivers/mi-power-strip/assets/images/small.jpg"
},
"class": "sensor",
"class": "socket",
"capabilities": [
"onoff",
"measure_power",
Expand Down
2 changes: 1 addition & 1 deletion drivers/air-monitor/pair/start.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
};

Homey.addDevice({
name : 'Mi Air Purifier',
name : 'PM2.5 Air Monitor',
data : device_data,
settings : settings
}, function(error, result) {
Expand Down
2 changes: 1 addition & 1 deletion drivers/mi-power-plug/pair/start.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
};

Homey.addDevice({
name : 'Philips Light Bulb',
name : 'Mi Power Plug',
data : device_data,
settings : settings
}, function(error, result) {
Expand Down
2 changes: 1 addition & 1 deletion drivers/mi-power-strip/pair/start.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
};

Homey.addDevice({
name : 'Philips Light Bulb',
name : 'Mi Power Strip',
data : device_data,
settings : settings
}, function(error, result) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.xiaomi-miio",
"version": "2.6.0",
"version": "2.6.1",
"description": "Xiaomi Mi Home",
"main": "app.js",
"dependencies": {
Expand Down

0 comments on commit 991d654

Please sign in to comment.