From 637155e3f9ed3d6023c52d5691a5300910c0c34a Mon Sep 17 00:00:00 2001 From: Claude Gelinas Date: Sun, 8 Dec 2024 19:15:25 -0500 Subject: [PATCH 1/4] Add swing modes reference --- custom_components/sinope/climate.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/custom_components/sinope/climate.py b/custom_components/sinope/climate.py index 431abc3..e6fbf50 100644 --- a/custom_components/sinope/climate.py +++ b/custom_components/sinope/climate.py @@ -629,6 +629,26 @@ def is_on(self): return True return False + @property + def swing_mode(self) -> str | None: + """Return the fan vertical swing setting.""" + return None + + @property + def swing_modes(self) -> list[str] | None: + """Return availables vertical swing modes.""" + return None + + @property + def swing_horizontal_mode(self) -> str | None: + """Return the fan swing setting.""" + return None + + @property + def swing_horizontal_modes(self) -> list[str] | None: + """Return available horizontal swing modes""" + return None + def turn_on(self): """Turn the thermostat to HVACMode.heat.""" self._client.set_mode(self._server, self._id, self._type, SINOPE_MODE_AUTO) From 779ec22668ce844ef04df05e34f815fb6686ade6 Mon Sep 17 00:00:00 2001 From: Claude Gelinas Date: Sun, 8 Dec 2024 20:54:19 -0500 Subject: [PATCH 2/4] Push version to 1.7.1 --- custom_components.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components.json b/custom_components.json index 01f7eda..90353a1 100644 --- a/custom_components.json +++ b/custom_components.json @@ -1,6 +1,6 @@ { "sinope": { - "version": "1.7.0", + "version": "1.7.1", "local_location": "/custom_components/sinope/__init__.py", "remote_location": "https://github.com/claudegel/sinope-gt125/tree/master/custom_components/__init__.py", "visit_repo": "https://github.com/claudegel/sinope-gt125", From b6064270ed1e79bb6c023eee1dcf29bbdfbf5438 Mon Sep 17 00:00:00 2001 From: Claude Gelinas Date: Sun, 8 Dec 2024 20:55:04 -0500 Subject: [PATCH 3/4] Push version to 1.7.1 --- custom_components/sinope/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/sinope/manifest.json b/custom_components/sinope/manifest.json index 0d824b8..54234ea 100644 --- a/custom_components/sinope/manifest.json +++ b/custom_components/sinope/manifest.json @@ -5,5 +5,5 @@ "dependencies": [], "codeowners": ["@claudegel"], "requirements": ["crc8==0.1.0"], - "version": "1.7.0" + "version": "1.7.1" } From 6bb408aa9d75bbe821664f2e505df9ca36f0980a Mon Sep 17 00:00:00 2001 From: Claude Gelinas Date: Sun, 8 Dec 2024 20:55:37 -0500 Subject: [PATCH 4/4] Push version to 1.7.1 --- custom_components/sinope/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/sinope/__init__.py b/custom_components/sinope/__init__.py index 568aa45..22a1734 100644 --- a/custom_components/sinope/__init__.py +++ b/custom_components/sinope/__init__.py @@ -43,7 +43,7 @@ #REQUIREMENTS = ['PY_Sinope==0.1.7'] REQUIREMENTS = ['crc8==0.1.0'] -VERSION = '1.7.0' +VERSION = '1.7.1' DATA_DOMAIN = 'data_' + DOMAIN