mirror of https://github.com/simbaja/ha_gehome.git
parent
ad3762955b
commit
ee63c0e365
|
@ -1,6 +1,13 @@
|
||||||
|
|
||||||
# GE Home Appliances (SmartHQ) Changelog
|
# GE Home Appliances (SmartHQ) Changelog
|
||||||
|
|
||||||
|
## 0.4.x
|
||||||
|
|
||||||
|
- Added support for Window A/C units (@mbrentrowe, @swcrawford1)
|
||||||
|
- Fixed multiple binary sensors (bad conversion from enum) (@steveredden)
|
||||||
|
- Fixed delay time interpretation for laundry (@steveredden, @sweichbr)
|
||||||
|
- Enabled support for appliances without serial numbers
|
||||||
|
|
||||||
## 0.4.1
|
## 0.4.1
|
||||||
|
|
||||||
- Fixed an issue with dryer entities causing an error in HA (@steveredden)
|
- Fixed an issue with dryer entities causing an error in HA (@steveredden)
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"name": "GE Home (SmartHQ)",
|
"name": "GE Home (SmartHQ)",
|
||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"documentation": "https://github.com/simbaja/ha_gehome",
|
"documentation": "https://github.com/simbaja/ha_gehome",
|
||||||
"requirements": ["gehomesdk==0.4.0","magicattr==0.1.5"],
|
"requirements": ["gehomesdk==0.4.2","magicattr==0.1.5"],
|
||||||
"codeowners": ["@simbaja"],
|
"codeowners": ["@simbaja"],
|
||||||
"version": "0.4.0"
|
"version": "0.4.2"
|
||||||
}
|
}
|
||||||
|
|
6
info.md
6
info.md
|
@ -30,6 +30,12 @@ Oven Controls:
|
||||||
|
|
||||||
#### Breaking Changes
|
#### Breaking Changes
|
||||||
|
|
||||||
|
{% if version_installed.split('.') | map('int') < '0.4.0'.split('.') | map('int') %}
|
||||||
|
|
||||||
|
- Laundry support changes will cause entity names to be different, you will need to fix in HA
|
||||||
|
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
#### Changes
|
#### Changes
|
||||||
|
|
||||||
#### Features
|
#### Features
|
||||||
|
|
Loading…
Reference in New Issue