diff --git a/CHANGELOG.md b/CHANGELOG.md index d32298c..ffd97eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/custom_components/ge_home/manifest.json b/custom_components/ge_home/manifest.json index 20a0297..12333e7 100644 --- a/custom_components/ge_home/manifest.json +++ b/custom_components/ge_home/manifest.json @@ -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" } diff --git a/custom_components/ge_home/strings.json b/custom_components/ge_home/strings.json index fe1a212..7cfb731 100644 --- a/custom_components/ge_home/strings.json +++ b/custom_components/ge_home/strings.json @@ -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%]" } } }, diff --git a/custom_components/ge_home/translations/en.json b/custom_components/ge_home/translations/en.json index 1184d95..50680ea 100644 --- a/custom_components/ge_home/translations/en.json +++ b/custom_components/ge_home/translations/en.json @@ -5,13 +5,15 @@ "init": { "data": { "username": "Username", - "password": "Password" + "password": "Password", + "region": "Region" } }, "user": { "data": { "username": "Username", - "password": "Password" + "password": "Password", + "region": "Region" } } }, diff --git a/info.md b/info.md index 33beba7..7ff80d2 100644 --- a/info.md +++ b/info.md @@ -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)