From 43b0939c9e35e9226f8c796cf09ee94dc916ab26 Mon Sep 17 00:00:00 2001 From: reserve85 <111107925+reserve85@users.noreply.github.com> Date: Mon, 12 Feb 2024 13:07:30 +0100 Subject: [PATCH] set min-AHOY Version >= 0.7.29 ## V1.74 ### script * reverted script to support AHOY >= '0.7.29' --- CHANGELOG.md | 4 ++++ HoymilesZeroExport.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42d5be3..73b9cf9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## V1.74 +### script +* reverted script to support AHOY >= '0.7.29' + ## V1.73 ### script * Support of AHOY-DTU Authentication, https://github.com/reserve85/HoymilesZeroExport/issues/132 and https://github.com/lumapu/ahoy/issues/1415 diff --git a/HoymilesZeroExport.py b/HoymilesZeroExport.py index f0b5809..901fea4 100644 --- a/HoymilesZeroExport.py +++ b/HoymilesZeroExport.py @@ -15,7 +15,7 @@ # along with this program. If not, see . __author__ = "Tobias Kraft" -__version__ = "1.73" +__version__ = "1.74" import requests import time @@ -329,7 +329,7 @@ def GetHoymilesAvailable(): raise def CheckAhoyVersion(): - MinVersion = '0.8.78' + MinVersion = '0.7.29' url = f'http://{AHOY_IP}/api/system' ParsedData = requests.get(url, timeout=10).json() AhoyVersion = str((ParsedData["version"]))