Skip to content

Commit

Permalink
Release 2.13.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jghaanstra committed Jan 7, 2020
1 parent 9c95f4a commit d598831
Show file tree
Hide file tree
Showing 16 changed files with 20 additions and 15 deletions.
3 changes: 3 additions & 0 deletions .homeychangelog.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,8 @@
},
"2.13.8": {
"en": "[IMPORTANT] Deprecated support for Yeelights, they will get their own standalone app. Please read the announcement in the support topic on migrating your Yeelights."
},
"2.13.9": {
"en": "Deprecated the driver for the Xiaomi Gateway. Xiaomi changed something resulting in the current implementation not working anymore."
}
}
4 changes: 3 additions & 1 deletion app.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"en": [ "Xiaomi", "Mi", "Mi Home", "miio", "vacuumcleaner", "robot", "purifier", "humidifier", "philips", "eyecare", "powerplug", "gateway" ],
"nl": [ "Xiaomi", "Mi", "Mi home", "miio", "stofzuiger", "robot", "luchtreiniger", "luchtbevochtiger", "philips", "eyecare", "powerplug", "gateway" ]
},
"version": "2.13.8",
"version": "2.13.9",
"compatibility": ">=3.0.0",
"author": {
"name": "Jelger Haanstra",
Expand Down Expand Up @@ -698,6 +698,7 @@
"en": "Gateway",
"nl": "Gateway"
},
"deprecated": true,
"images": {
"large": "drivers/gateway/assets/images/large.jpg",
"small": "drivers/gateway/assets/images/small.jpg"
Expand Down Expand Up @@ -1886,6 +1887,7 @@
},
{
"id": "armGateway",
"deprecated": true,
"title": {
"en": "Set surveillance mode",
"nl": "Stel toezicht modus in"
Expand Down
2 changes: 1 addition & 1 deletion drivers/air-monitor/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class MiAirMonitorDevice extends Homey.Device {
setTimeout(() => {
this.createDevice();
}, 2000);
}, 300000);
}, 3600000);
}
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/dmaker-fan/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class DmakerFanDevice extends Homey.Device {
setTimeout(() => {
this.createDevice();
}, 2000);
}, 300000);
}, 3600000);
}
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/gateway/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class GatewayDevice extends Homey.Device {
setTimeout(() => {
this.createDevice();
}, 2000);
}, 300000);
}, 3600000);
}
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/mi-airpurifier/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class MiAirPurifierDevice extends Homey.Device {
setTimeout(() => {
this.createDevice();
}, 2000);
}, 300000);
}, 3600000);
}
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/mi-humidifier/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class MiHumidifierDevice extends Homey.Device {
setTimeout(() => {
this.createDevice();
}, 2000);
}, 300000);
}, 3600000);
}
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/mi-humidifier2/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class MiHumidifier2Device extends Homey.Device {
setTimeout(() => {
this.createDevice();
}, 2000);
}, 300000);
}, 3600000);
}
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/mi-power-plug/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class PowerPlugDevice extends Homey.Device {
setTimeout(() => {
this.createDevice();
}, 2000);
}, 300000);
}, 3600000);
}
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/mi-power-strip/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class PowerStripDevice extends Homey.Device {
setTimeout(() => {
this.createDevice();
}, 2000);
}, 300000);
}, 3600000);
}
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/mi-robot/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ class MiRobotDevice extends Homey.Device {
setTimeout(() => {
this.createDevice();
}, 2000);
}, 300000);
}, 3600000);
}
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/philips-bulb/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class PhilipsBulbDevice extends Homey.Device {
setTimeout(() => {
this.createDevice();
}, 2000);
}, 300000);
}, 3600000);
}
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/philips-eyecare/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class PhilipsEyecareDevice extends Homey.Device {
setTimeout(() => {
this.createDevice();
}, 2000);
}, 300000);
}, 3600000);
}
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/zhimi-fan/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class ZhiMiFanDevice extends Homey.Device {
setTimeout(() => {
this.createDevice();
}, 2000);
}, 300000);
}, 3600000);
}
}

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.13.8",
"version": "2.13.9",
"description": "Xiaomi Mi Home",
"main": "app.js",
"dependencies": {
Expand Down

0 comments on commit d598831

Please sign in to comment.