Implement silent update check and installation on launch#140
Merged
LargeModGames merged 2 commits intomainfrom Mar 4, 2026
Merged
Implement silent update check and installation on launch#140LargeModGames merged 2 commits intomainfrom
LargeModGames merged 2 commits intomainfrom
Conversation
…e update prompt handling
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request removes the in-app update prompt and background update check, replacing it with an automatic, silent update mechanism that runs at startup. The update logic has been refactored, and all code and UI related to the previous update prompt has been removed, simplifying the user experience and codebase.
Update mechanism changes:
install_update_silentfunction insrc/cli/update.rsthat checks for, downloads, and installs updates automatically, returning the new version if updated. This function is now used in place of the previous update check functions.SPOTATUI_SKIP_UPDATEenvironment variable is set). If an update is installed, the app restarts itself automatically.Removal of update prompt UI and logic:
UpdatePromptand associated state and handlers insrc/core/app.rs,src/tui/handlers/mod.rs,src/tui/ui/popups.rs, and related files.Refactoring and cleanup:
UpdateInfostruct and related functions that are no longer needed.src/main.rsto remove all references to the old update prompt and background check.These changes streamline the update experience for users and reduce code complexity by removing the manual update prompt and related UI.
Testing