From 4ce16095b5aba80ecc09df271390ec1e90e6c3a5 Mon Sep 17 00:00:00 2001 From: Johannes Braun Date: Sun, 20 Mar 2022 20:35:25 +0100 Subject: [PATCH] change requirements for auto update --- apps/nspanel-lovelace-ui/nspanel-lovelace-ui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/nspanel-lovelace-ui/nspanel-lovelace-ui.py b/apps/nspanel-lovelace-ui/nspanel-lovelace-ui.py index c36c97d6..1979f6e9 100644 --- a/apps/nspanel-lovelace-ui/nspanel-lovelace-ui.py +++ b/apps/nspanel-lovelace-ui/nspanel-lovelace-ui.py @@ -35,8 +35,8 @@ class Updater: def check_pre_req(self): # we need to know both versions to continue if self.current_tasmota_driver_version is not None and self.current_display_firmware_version is not None: - # tasmota driver has to be at least version 2 for Update command and panel has to be at version 5 for notify commands - if self.current_tasmota_driver_version >= 2 and self.current_display_firmware_version >= 5: + # tasmota driver has to be at least version 2 for Update command and panel has to be at version 11 for notify commands + if self.current_tasmota_driver_version >= 2 and self.current_display_firmware_version >= 11: return True return False def check_updates(self):