| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2025-05-28 | Update translations | Tobias Järvelöv | 1 | -3/+23 | |
| 2025-05-28 | Update translation strings | Tobias Järvelöv | 2 | -3/+3 | |
| 2025-05-28 | Hide Install button when error count has been exceeded | Tobias Järvelöv | 1 | -0/+6 | |
| 2025-05-28 | Show Install button when installer is starting or has started | Tobias Järvelöv | 1 | -2/+6 | |
| 2025-05-28 | Do not display Retry upgrade button when error count has been exceeded | Tobias Järvelöv | 1 | -8/+15 | |
| 2025-05-28 | Refactor conditions for when Cancel button should be displayed | Tobias Järvelöv | 1 | -8/+7 | |
| It is easier to check if we have a verified installer path to determine when we should stop displaying Cancel button. | |||||
| 2025-05-28 | Show download progress if a verified installer exists | Tobias Järvelöv | 1 | -1/+5 | |
| 2025-05-28 | Show Upgrade label if installer should be manually started | Tobias Järvelöv | 1 | -2/+8 | |
| 2025-05-28 | Refactor upgrade error message function to return string directly | Tobias Järvelöv | 1 | -29/+27 | |
| Instead of in an array. | |||||
| 2025-05-28 | Handle new AppUpgrade status for when installer has exited | Tobias Järvelöv | 4 | -0/+4 | |
| 2025-05-28 | Add error message for when error count has been exceeded | Tobias Järvelöv | 1 | -0/+10 | |
| 2025-05-28 | Show Manual download button conditionally | Tobias Järvelöv | 1 | -0/+4 | |
| 2025-05-28 | Add hook to return whether to show ManualDownloadButton | Tobias Järvelöv | 2 | -0/+10 | |
| 2025-05-28 | Add hook to return if max error count has been exceeded | Tobias Järvelöv | 2 | -0/+10 | |
| 2025-05-28 | Add Manual download button | Tobias Järvelöv | 6 | -0/+52 | |
| 2025-05-28 | Handle change to useAppUpgradeEvent selector return format | Tobias Järvelöv | 5 | -14/+14 | |
| 2025-05-28 | Handle change to useAppUpgradeError selector return format | Tobias Järvelöv | 9 | -26/+27 | |
| 2025-05-28 | Reset error before attempting to start installer | Tobias Järvelöv | 1 | -0/+1 | |
| 2025-05-28 | Simplify conditions for when to try to start installer | Tobias Järvelöv | 1 | -7/+1 | |
| 2025-05-28 | Add errorCount to AppUpgrade redux | Tobias Järvelöv | 3 | -0/+18 | |
| 2025-05-28 | Update AppUpgrade selectors return value to conform to naming standards | Tobias Järvelöv | 2 | -2/+2 | |
| 2025-05-28 | Rewrite how installer is started and handled | Tobias Järvelöv | 1 | -17/+51 | |
| - Use spawn to detach the process from the main process. - Listen for when installer process exits or has an error and notify the render process accordingly. | |||||
| 2025-05-28 | Add AppUpgradEventStatus for when installer is exited | Tobias Järvelöv | 1 | -0/+5 | |
| 2025-05-28 | Add installer failed value for AppUpgradeError | Tobias Järvelöv | 1 | -1/+2 | |
| 2025-05-28 | Show DownloadProgress for AppUpgrade start installer errors | Tobias Järvelöv | 1 | -1/+5 | |
| 2025-05-28 | Remove extraneous condition in logic to show RetryUpgrade button | Tobias Järvelöv | 1 | -14/+8 | |
| The switch on the appUpgradeError is sufficient | |||||
| 2025-05-28 | Hide CancelButton when installer has started | Tobias Järvelöv | 1 | -3/+8 | |
| 2025-05-28 | Disable Install update button when installer is starting or started | Tobias Järvelöv | 3 | -1/+15 | |
| 2025-05-28 | Update logic for when considering download completed | Tobias Järvelöv | 1 | -1/+1 | |
| If a verified installer path exists but an AppUpgrade event is present, we should let the event be the factor which decides what download percent value to return. | |||||
| 2025-05-28 | Show update percent message only for AppUpgrade download progress event | Tobias Järvelöv | 1 | -4/+1 | |
| 2025-05-28 | Update logic for when update should be installed manually | Tobias Järvelöv | 1 | -4/+1 | |
| When the automatic start fails we should inform the user that they can install the update manually. However when the manual start fails, then we must treat it as an error, and as such this scenario should not inform the user to install the update manually. | |||||
| 2025-05-28 | Improve messages for when time left is less than 5 seconds | Tobias Järvelöv | 1 | -3/+13 | |
| 2025-05-28 | Handle time left potentially being undefined | Tobias Järvelöv | 1 | -15/+19 | |
| 2025-05-28 | Remove fallback to 0 for when timeLeft is not set | Tobias Järvelöv | 1 | -1/+1 | |
| 2025-05-28 | Set timeLeft as optional for AppUpgrade download progress event type | Tobias Järvelöv | 1 | -1/+1 | |
| 2025-05-28 | Add isNumber utility | Tobias Järvelöv | 1 | -0/+4 | |
| 2025-05-28 | Update AppUpgrade error messages | Tobias Järvelöv | 1 | -3/+5 | |
| 2025-05-28 | Improve error handling for executing installer | Tobias Järvelöv | 1 | -4/+3 | |
| 2025-05-28 | Set download initiated before invoking RPC to upgrade | Tobias Järvelöv | 1 | -1/+11 | |
| 2025-05-28 | Handle new AppUpgrade download initiated event type | Tobias Järvelöv | 3 | -0/+3 | |
| 2025-05-28 | Add AppUpgrade download initiated event | Tobias Järvelöv | 1 | -0/+5 | |
| 2025-05-28 | Refactor logic for when to start installer | Tobias Järvelöv | 1 | -4/+4 | |
| Mainly to be easier to read. | |||||
| 2025-05-28 | Add error handling when verifyDaemonOwnership throws | Tobias Järvelöv | 1 | -2/+9 | |
| 2025-05-28 | Remove Animate is present attribute and related css | Oliver | 1 | -8/+6 | |
| 2025-05-28 | Refactor animate component to reduce complexity | Tobias Järvelöv | 9 | -88/+101 | |
| 2025-05-28 | Move animation types to separate file | Oliver | 3 | -12/+12 | |
| 2025-05-28 | Support initial prop and conditionally render Animate | Oliver | 6 | -21/+122 | |
| Initial prop controls whether the animation is triggered on mount. Also makes Animate conditionally render self dependant on present prop. | |||||
| 2025-05-28 | Change animation property for wipe | Oliver | 1 | -4/+4 | |
| 2025-05-28 | Add context to Animate | Oliver | 1 | -0/+33 | |
| 2025-05-28 | Add upgrade indicator to main menu setting button | Oliver | 1 | -1/+22 | |
