From 75734a4d070b92e9b73dda1aab93f5ae1c7a3766 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 13 Oct 2025 21:00:55 -0700 Subject: [PATCH] macos: clarify the "ready to install update" state - The copy is updated to better explain what the user should do next. - The symbol is updated to make it clear the update isn't yet installed. --- macos/Sources/Features/Update/UpdateViewModel.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macos/Sources/Features/Update/UpdateViewModel.swift b/macos/Sources/Features/Update/UpdateViewModel.swift index f0b39ed2d..7a92337cc 100644 --- a/macos/Sources/Features/Update/UpdateViewModel.swift +++ b/macos/Sources/Features/Update/UpdateViewModel.swift @@ -31,7 +31,7 @@ class UpdateViewModel: ObservableObject { case .extracting(let extracting): return String(format: "Preparing: %.0f%%", extracting.progress * 100) case .readyToInstall: - return "Install Update" + return "Ready to Install Update" case .installing: return "Restart to Complete Update" case .notFound: @@ -70,7 +70,7 @@ class UpdateViewModel: ObservableObject { case .extracting: return "shippingbox" case .readyToInstall: - return "checkmark.circle.fill" + return "restart.circle.fill" case .installing: return "power.circle" case .notFound: