- updated versions and documentation

This commit is contained in:
Jack Simbach 2021-12-11 11:06:30 -05:00
parent 52afe3c044
commit 739c272e41
5 changed files with 28 additions and 5 deletions

View File

@ -7,6 +7,7 @@
- Changed the temperatures to always be natively fahrenheit (API appears to always use this system)
- Initial support for Water Softeners (@npentell)
- Initial support for Opal Ice Makers (@mbcomer, @knobunc)
- Updated deprecated icons (@mjmeli, @schmittx)
## 0.5.0

View File

@ -12,9 +12,12 @@ Integration for GE WiFi-enabled appliances into Home Assistant. This integratio
- Dishwasher
- Laundry (Washer/Dryer)
- Whole Home Water Filter
- Whole Home Water Softener
- A/C (Portable, Split, Window)
- Range Hoods
- Range Hood
- Advantium
- Microwave
- Opal Ice Maker
**Forked from Andrew Mark's [repository](https://github.com/ajmarks/ha_components).**

View File

@ -3,7 +3,7 @@
"name": "GE Home (SmartHQ)",
"config_flow": true,
"documentation": "https://github.com/simbaja/ha_gehome",
"requirements": ["gehomesdk==0.4.16","magicattr==0.1.5"],
"requirements": ["gehomesdk==0.4.17","magicattr==0.1.5"],
"codeowners": ["@simbaja"],
"version": "0.5.0"
"version": "0.6.0"
}

View File

@ -1,6 +1,6 @@
{
"name": "GE Home (SmartHQ)",
"homeassistant": "2021.7.1",
"homeassistant": "2021.11.0",
"domains": ["binary_sensor", "sensor", "switch", "water_heater", "select"],
"iot_class": "Cloud Polling"
}

21
info.md
View File

@ -2,12 +2,17 @@
Integration for GE WiFi-enabled appliances into Home Assistant. This integration currently support the following devices:
- Fridge
- Fridge
- Oven
- Dishwasher
- Laundry (Washer/Dryer)
- Whole Home Water Filter
- Whole Home Water Softener
- A/C (Portable, Split, Window)
- Range Hood
- Advantium
- Microwave
- Opal Ice Maker
**Forked from Andrew Mark's [repository](https://github.com/ajmarks/ha_components).**
@ -34,6 +39,11 @@ A/C Controls:
#### Breaking Changes
{% if version_installed.split('.') | map('int') < '0.6.0'.split('.') | map('int') %}
- Changed the sensors to use native value/uom
- Changed the temperatures to always be natively fahrenheit (API appears to always use this system)
{% endif %}
{% 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 (uninstall, reboot, delete leftover entitites, install, reboot)
{% endif %}
@ -46,6 +56,11 @@ A/C Controls:
#### Features
{% if version_installed.split('.') | map('int') < '0.6.0'.split('.') | map('int') %}
- Initial support for Water Softeners (@npentell)
- Initial support for Opal Ice Makers (@mbcomer, @knobunc)
{% endif %}
{% if version_installed.split('.') | map('int') < '0.5.0'.split('.') | map('int') %}
- Support for Oven Hood units (@digitalbites)
- Added extended mode support for ovens
@ -67,6 +82,10 @@ A/C Controls:
#### Bugfixes
{% if version_installed.split('.') | map('int') < '0.6.0'.split('.') | map('int') %}
- Updated deprecated icons (@mjmeli, @schmittx)
{% endif %}
{% if version_installed.split('.') | map('int') < '0.5.0'.split('.') | map('int') %}
- Advantium fixes (@willhayslett)
- Fixed device info when serial not present (@Xe138)