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

Commit 944ca8c

Browse files
1.14.0 release (#206)
1 parent f2c43a4 commit 944ca8c

File tree

4 files changed

+30
-31
lines changed

4 files changed

+30
-31
lines changed

custom_components/multimatic/coordinator.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,7 @@ async def set_room_target_temperature(self, entity, target_temp):
229229
if current_mode == OperatingModes.QUICK_VETO:
230230
await self._manager.remove_room_quick_veto(room.id)
231231

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

custom_components/multimatic/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"documentation": "https://github.com/thomasgermain/vaillant-component",
66
"issue_tracker": "https://github.com/thomasgermain/vaillant-component/issues",
77
"requirements": [
8-
"pymultimatic==0.7.0b4"
8+
"pymultimatic==0.7.0"
99
],
1010
"ssdp": [],
1111
"zeroconf": [],
1212
"homekit": {},
1313
"dependencies": [],
1414
"codeowners": ["@thomasgermain"],
15-
"version": "1.14.0b3",
15+
"version": "1.14.0",
1616
"iot_class": "cloud_polling",
1717
"integration_type": "hub"
1818
}
Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
{
2-
"config": {
3-
"step": {
4-
"user": {
5-
"data": {
6-
"password": "Password",
7-
"username": "Username",
8-
"application": "Application",
9-
"serial_number": "Serial number"
2+
"config": {
3+
"abort": {
4+
"already_configured": "Only one configuration is allowed"
105
},
11-
"title": "Connection information (same as multiMATIC or Senso application)"
12-
}
13-
},
14-
"error": {
15-
"cannot_connect": "Failed to connect, please try again",
16-
"invalid_auth": "Invalid authentication",
17-
"unknown": "Unexpected error"
6+
"error": {
7+
"cannot_connect": "Failed to connect, please try again",
8+
"invalid_auth": "Invalid authentication",
9+
"unknown": "Unexpected error"
10+
},
11+
"step": {
12+
"user": {
13+
"data": {
14+
"application": "Application",
15+
"password": "Password",
16+
"serial_number": "Serial number",
17+
"username": "Username"
18+
},
19+
"title": "Connection information (same as multiMATIC or Senso application)"
20+
}
21+
}
1822
},
19-
"abort": {
20-
"already_configured": "Only one configuration is allowed"
21-
}
22-
},
23-
"options": {
24-
"step": {
25-
"init": {
26-
"data": {
27-
"scan_interval": "Minutes between scans"
23+
"options": {
24+
"step": {
25+
"init": {
26+
"data": {
27+
"scan_interval": "Minutes between scans"
28+
}
29+
}
2830
}
29-
}
3031
}
31-
}
3232
}

hacs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "multimatic",
33
"render_readme": true,
4-
"homeassistant": "2023.1.0"
4+
"homeassistant": "2023.6.0"
55
}

0 commit comments

Comments
 (0)