Skip to content

Commit

Permalink
release 0.9.0 (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
zlangbert authored Jan 6, 2025
1 parent d4ada4e commit 59baecd
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 57 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,7 @@ wheels/
.ruff_cache

# home assistant
.homeassistant
.homeassistant

# ide
.vscode
38 changes: 19 additions & 19 deletions custom_components/daikinone/icons.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
}
}
}
}
}
8 changes: 5 additions & 3 deletions custom_components/daikinone/manifest.json
Original file line number Diff line number Diff line change
@@ -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"
}
"version": "0.9.0"
}
68 changes: 34 additions & 34 deletions custom_components/daikinone/translations/en.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
}
}
}
}
}

0 comments on commit 59baecd

Please sign in to comment.