- version bump

- doc update
- string fixes
This commit is contained in:
Jack Simbach 2022-12-05 21:41:24 -05:00
parent 3ccf9946f9
commit 8a2ac1aa9a
5 changed files with 15 additions and 4 deletions

View File

@ -1,6 +1,10 @@
# GE Home Appliances (SmartHQ) Changelog
## 0.6.6
- Fixed issue with region setting (EU accounts) [#130]
## 0.6.5
- Added beverage cooler support (@kksligh)

View File

@ -5,5 +5,5 @@
"documentation": "https://github.com/simbaja/ha_gehome",
"requirements": ["gehomesdk==0.5.7","magicattr==0.1.5","slixmpp==1.7.1"],
"codeowners": ["@simbaja"],
"version": "0.6.5"
"version": "0.6.6"
}

View File

@ -4,7 +4,8 @@
"user": {
"data": {
"username": "[%key:common::config_flow::data::username%]",
"password": "[%key:common::config_flow::data::password%]"
"password": "[%key:common::config_flow::data::password%]",
"region": "[%key:common::config_flow::data::region%]"
}
}
},

View File

@ -5,13 +5,15 @@
"init": {
"data": {
"username": "Username",
"password": "Password"
"password": "Password",
"region": "Region"
}
},
"user": {
"data": {
"username": "Username",
"password": "Password"
"password": "Password",
"region": "Region"
}
}
},

View File

@ -104,6 +104,10 @@ A/C Controls:
#### Bugfixes
{% if version_installed.split('.') | map('int') < '0.6.6'.split('.') | map('int') %}
- Fixed region issues after setup
{% endif %}
{% if version_installed.split('.') | map('int') < '0.6.3'.split('.') | map('int') %}
- Updated detection of invalid serial numbers (#89)
- Updated implementation of number entities to fix deprecation warnings (#85)