Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
1.14.0 release (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasgermain authored Jun 5, 2023
1 parent f2c43a4 commit 944ca8c
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 31 deletions.
3 changes: 1 addition & 2 deletions custom_components/multimatic/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,7 @@ async def set_room_target_temperature(self, entity, target_temp):
if current_mode == OperatingModes.QUICK_VETO:
await self._manager.remove_room_quick_veto(room.id)

# Quick Veto for rooms on Multimatic and SensoAPP are in minutes
qveto = QuickVeto(DEFAULT_QUICK_VETO_DURATION, target_temp)
qveto = QuickVeto(self._default_quick_veto_duration(), target_temp)
await self._manager.set_room_quick_veto(room.id, qveto)
room.quick_veto = qveto

Expand Down
4 changes: 2 additions & 2 deletions custom_components/multimatic/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"documentation": "https://github.com/thomasgermain/vaillant-component",
"issue_tracker": "https://github.com/thomasgermain/vaillant-component/issues",
"requirements": [
"pymultimatic==0.7.0b4"
"pymultimatic==0.7.0"
],
"ssdp": [],
"zeroconf": [],
"homekit": {},
"dependencies": [],
"codeowners": ["@thomasgermain"],
"version": "1.14.0b3",
"version": "1.14.0",
"iot_class": "cloud_polling",
"integration_type": "hub"
}
52 changes: 26 additions & 26 deletions custom_components/multimatic/translations/en.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
{
"config": {
"step": {
"user": {
"data": {
"password": "Password",
"username": "Username",
"application": "Application",
"serial_number": "Serial number"
"config": {
"abort": {
"already_configured": "Only one configuration is allowed"
},
"title": "Connection information (same as multiMATIC or Senso application)"
}
},
"error": {
"cannot_connect": "Failed to connect, please try again",
"invalid_auth": "Invalid authentication",
"unknown": "Unexpected error"
"error": {
"cannot_connect": "Failed to connect, please try again",
"invalid_auth": "Invalid authentication",
"unknown": "Unexpected error"
},
"step": {
"user": {
"data": {
"application": "Application",
"password": "Password",
"serial_number": "Serial number",
"username": "Username"
},
"title": "Connection information (same as multiMATIC or Senso application)"
}
}
},
"abort": {
"already_configured": "Only one configuration is allowed"
}
},
"options": {
"step": {
"init": {
"data": {
"scan_interval": "Minutes between scans"
"options": {
"step": {
"init": {
"data": {
"scan_interval": "Minutes between scans"
}
}
}
}
}
}
}
2 changes: 1 addition & 1 deletion hacs.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "multimatic",
"render_readme": true,
"homeassistant": "2023.1.0"
"homeassistant": "2023.6.0"
}

0 comments on commit 944ca8c

Please sign in to comment.