diff --git a/.gitignore b/.gitignore index c35ee3b..69a0657 100644 --- a/.gitignore +++ b/.gitignore @@ -13,4 +13,7 @@ wheels/ .ruff_cache # home assistant -.homeassistant \ No newline at end of file +.homeassistant + +# ide +.vscode diff --git a/custom_components/daikinone/icons.json b/custom_components/daikinone/icons.json index 55dd099..33a0282 100644 --- a/custom_components/daikinone/icons.json +++ b/custom_components/daikinone/icons.json @@ -1,21 +1,21 @@ { - "entity": { - "climate": { - "daikinone_thermostat": { - "state_attributes": { - "preset_mode": { - "state": { - "emergency_heat": "mdi:fire-alert" - } - }, - "fan_mode": { - "state": { - "always_on": "mdi:fan", - "schedule": "mdi:fan-clock" - } - } - } - } - } - } + "entity": { + "climate": { + "daikinone_thermostat": { + "state_attributes": { + "preset_mode": { + "state": { + "emergency_heat": "mdi:fire-alert" + } + }, + "fan_mode": { + "state": { + "always_on": "mdi:fan", + "schedule": "mdi:fan-clock" + } + } + } + } + } + } } diff --git a/custom_components/daikinone/manifest.json b/custom_components/daikinone/manifest.json index a32b2b9..317e0d7 100644 --- a/custom_components/daikinone/manifest.json +++ b/custom_components/daikinone/manifest.json @@ -1,10 +1,12 @@ { "domain": "daikinone", "name": "Daikin One", - "codeowners": ["@zlangbert"], + "codeowners": [ + "@zlangbert" + ], "config_flow": true, "documentation": "https://github.com/zlangbert/ha-daikinone", "iot_class": "cloud_polling", "issue_tracker": "https://github.com/zlangbert/ha-daikinone/issues", - "version": "0.1.0" -} \ No newline at end of file + "version": "0.9.0" +} diff --git a/custom_components/daikinone/translations/en.json b/custom_components/daikinone/translations/en.json index a7fd225..42ec580 100644 --- a/custom_components/daikinone/translations/en.json +++ b/custom_components/daikinone/translations/en.json @@ -1,36 +1,36 @@ { - "config": { - "step": { - "user": { - "title": "Configure Daikin One", - "description": "Enter your Daikin One account credentials.", - "data": { - "email": "Email", - "password": "Password" - } - } - }, - "error": { - "auth_failed": "Authentication failed, please check your credentials and try again. Check the logs for more info." - } - }, - "entity": { - "climate": { - "daikinone_thermostat": { - "state_attributes": { - "preset_mode": { - "state": { - "emergency_heat": "Emergency heat" - } - }, - "fan_mode": { - "state": { - "always_on": "Always on", - "schedule": "Scheduled" - } - } - } - } - } - } + "config": { + "step": { + "user": { + "title": "Configure Daikin One", + "description": "Enter your Daikin One account credentials.", + "data": { + "email": "Email", + "password": "Password" + } + } + }, + "error": { + "auth_failed": "Authentication failed, please check your credentials and try again. Check the logs for more info." + } + }, + "entity": { + "climate": { + "daikinone_thermostat": { + "state_attributes": { + "preset_mode": { + "state": { + "emergency_heat": "Emergency heat" + } + }, + "fan_mode": { + "state": { + "always_on": "Always on", + "schedule": "Scheduled" + } + } + } + } + } + } }