From df70f611a45d537341fa1d43fe15d3ec6d9d392a Mon Sep 17 00:00:00 2001 From: Luke Davis Date: Sat, 11 May 2024 02:46:42 -0400 Subject: [PATCH] Change update interval to 12 hours, now that NVDA 2024.1 has been released for a while. --- addon/globalPlugins/addonUpdater/__init__.py | 2 +- buildVars.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/addon/globalPlugins/addonUpdater/__init__.py b/addon/globalPlugins/addonUpdater/__init__.py index e400b17..9858031 100644 --- a/addon/globalPlugins/addonUpdater/__init__.py +++ b/addon/globalPlugins/addonUpdater/__init__.py @@ -28,7 +28,7 @@ # Overall update check routine was inspired by StationPlaylist Studio add-on (Joseph Lee).) -addonUpdateCheckInterval = 21600 # 6 hours; was 86400 (24 hours) +addonUpdateCheckInterval = 43200 # 12 hours; was 86400 (24 hours) updateChecker = None diff --git a/buildVars.py b/buildVars.py index 80eeb1e..6059a6a 100644 --- a/buildVars.py +++ b/buildVars.py @@ -25,7 +25,7 @@ def _(arg): # Translators: Long description to be shown for this add-on on add-on information from add-ons manager "addon_description": _("""Proof of concept implementation of add-on update feature (NVDA Core issue 3208)"""), # version - "addon_version": "24.2.102", + "addon_version": "24.2.103", # Author(s) "addon_author": "Joseph Lee , Luke Davis ", # URL for the add-on documentation support