From 65a477f12e3581fb1771019672385ce011a94929 Mon Sep 17 00:00:00 2001 From: brooklyn! Date: Sun, 21 Jun 2026 11:34:45 -0500 Subject: [PATCH] feat(desktop): add Update now button to About panel (#50186) --- apps/desktop/src/app/settings/about-settings.tsx | 14 ++++++++++---- apps/desktop/src/i18n/en.ts | 1 + apps/desktop/src/i18n/ja.ts | 1 + apps/desktop/src/i18n/types.ts | 1 + apps/desktop/src/i18n/zh-hant.ts | 1 + apps/desktop/src/i18n/zh.ts | 1 + apps/desktop/src/store/updates.ts | 14 ++++++++++++++ 7 files changed, 29 insertions(+), 4 deletions(-) diff --git a/apps/desktop/src/app/settings/about-settings.tsx b/apps/desktop/src/app/settings/about-settings.tsx index cef90450ef2..c1d56115d6c 100644 --- a/apps/desktop/src/app/settings/about-settings.tsx +++ b/apps/desktop/src/app/settings/about-settings.tsx @@ -13,7 +13,8 @@ import { $updateStatus, checkUpdates, openUpdatesWindow, - refreshDesktopVersion + refreshDesktopVersion, + startActiveUpdate } from '@/store/updates' import { ListRow, SectionHeading, SettingsContent } from './primitives' @@ -141,9 +142,14 @@ export function AboutSettings() { {behind > 0 && supported && !applying && ( - + <> + + + )}