diff --git a/addon/globalPlugins/versionCollector/__init__.py b/addon/globalPlugins/versionCollector/__init__.py index ff94546..bcae44a 100644 --- a/addon/globalPlugins/versionCollector/__init__.py +++ b/addon/globalPlugins/versionCollector/__init__.py @@ -18,7 +18,7 @@ from scriptHandler import script, getLastScriptRepeatCount from globalCommands import SCRCAT_TOOLS from appModuleHandler import post_appSwitch -from core import postNvdaStartup +from core import postNvdaStartup, callLater as core_callLater #from . import toolsGUI @@ -179,8 +179,8 @@ def onAppSwitch(self) -> None: def collectInitialApp(self) -> None: """Called as a registered extensionPoint, when NVDA first finishes loading.""" log.debug("Collecting the initial app after a delay.") - wx.CallLater(1000, self.onAppSwitch) - postNvdaStartup.unregister(self.collectInitialApp) + core_callLater(1000, self.onAppSwitch) + #postNvdaStartup.unregister(self.collectInitialApp) def addToCacheOrUpdateDate(self, subject: _AppData) -> None: ind = getCacheIndexOf(subject) diff --git a/buildVars.py b/buildVars.py index 35e3362..ab176a4 100644 --- a/buildVars.py +++ b/buildVars.py @@ -26,7 +26,7 @@ def _(arg): "addon_description": _("""Keeps a record of all software names and versions used while running NVDA. Provides a list that can be copied/exported for diagnostics and support."""), # version - "addon_version": "23.00.054", + "addon_version": "23.00.055", # Author(s) "addon_author": "Luke Davis ", # URL for the add-on documentation support