From 47a843c66934af0a757e954c7765d7e2c63e478c Mon Sep 17 00:00:00 2001 From: refrigerador67 <96502023+refrigerador67@users.noreply.github.com> Date: Tue, 4 Feb 2025 13:38:57 -0300 Subject: [PATCH] Removed popup at latest version when checking updates at startup --- picodulce.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picodulce.py b/picodulce.py index 10f0772..c087900 100644 --- a/picodulce.py +++ b/picodulce.py @@ -1226,7 +1226,7 @@ class PicomcVersionSelector(QWidget): # Download and apply the update self.download_update(remote_version_info) else: - QMessageBox.information(self, "Up to Date", "You already have the latest version!") + print(f"You already have the latest version!") else: logging.error("Failed to read local version information.") QMessageBox.critical(self, "Error", "Failed to check for updates.")