From 944ca8c1cb7f75dc263ad59e749b1ac71524a253 Mon Sep 17 00:00:00 2001 From: Thomas Germain <12560542+thomasgermain@users.noreply.github.com> Date: Mon, 5 Jun 2023 20:56:27 +0200 Subject: [PATCH] 1.14.0 release (#206) --- custom_components/multimatic/coordinator.py | 3 +- custom_components/multimatic/manifest.json | 4 +- .../multimatic/translations/en.json | 52 +++++++++---------- hacs.json | 2 +- 4 files changed, 30 insertions(+), 31 deletions(-) diff --git a/custom_components/multimatic/coordinator.py b/custom_components/multimatic/coordinator.py index b0cc8f0..143e777 100644 --- a/custom_components/multimatic/coordinator.py +++ b/custom_components/multimatic/coordinator.py @@ -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 diff --git a/custom_components/multimatic/manifest.json b/custom_components/multimatic/manifest.json index cc32e0d..ef35c18 100644 --- a/custom_components/multimatic/manifest.json +++ b/custom_components/multimatic/manifest.json @@ -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" } diff --git a/custom_components/multimatic/translations/en.json b/custom_components/multimatic/translations/en.json index d1bd067..3e0c7bf 100644 --- a/custom_components/multimatic/translations/en.json +++ b/custom_components/multimatic/translations/en.json @@ -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" + } + } } - } } - } } \ No newline at end of file diff --git a/hacs.json b/hacs.json index f7a84a8..5e19990 100644 --- a/hacs.json +++ b/hacs.json @@ -1,5 +1,5 @@ { "name": "multimatic", "render_readme": true, - "homeassistant": "2023.1.0" + "homeassistant": "2023.6.0" }