feat: Implement asynchronous update check on startup with UI integration

This commit is contained in:
claudi 2026-01-29 08:44:03 +01:00
parent 5b28c931d8
commit 41549848ed
3 changed files with 246 additions and 2 deletions

View file

@ -53,6 +53,9 @@ def main() -> int:
window.show()
logger.info("Main window opened successfully")
# Check for updates on startup (non-blocking, async)
window.check_for_updates_startup()
# Run event loop
return app.exec()