From 67ef2b7ea7dfc31cb8d55801071f12cbbef09932 Mon Sep 17 00:00:00 2001 From: RoyceDa Date: Wed, 18 Feb 2026 19:20:27 +0200 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BD=D0=B5=D0=BA=D0=BB=D0=B8=D0=BA?= =?UTF-8?q?=D0=B0=D0=B1=D0=B5=D0=BB=D1=8C=D0=BD=D0=BE=D0=B9=20=D0=BA=D0=BD?= =?UTF-8?q?=D0=BE=D0=BF=D0=BA=D0=B8=20kernel=20update?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/components/UpdateAlert/UpdateAlert.tsx | 5 +++-- app/providers/UpdateProvider/UpdateProvider.tsx | 4 +++- app/version.ts | 10 +++------- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/app/components/UpdateAlert/UpdateAlert.tsx b/app/components/UpdateAlert/UpdateAlert.tsx index 6f90f1b..14bb2b1 100644 --- a/app/components/UpdateAlert/UpdateAlert.tsx +++ b/app/components/UpdateAlert/UpdateAlert.tsx @@ -20,7 +20,8 @@ export function UpdateAlert(props : UpdateAlertProps) { updateStatus, downloadLastApplicationUpdate, restartAppForUpdateApply, - checkForUpdates + checkForUpdates, + updateServer } = useUpdater(); useEffect(() => { @@ -34,7 +35,7 @@ export function UpdateAlert(props : UpdateAlertProps) { diff --git a/app/providers/UpdateProvider/UpdateProvider.tsx b/app/providers/UpdateProvider/UpdateProvider.tsx index 3438c26..c9b97d6 100644 --- a/app/providers/UpdateProvider/UpdateProvider.tsx +++ b/app/providers/UpdateProvider/UpdateProvider.tsx @@ -39,6 +39,7 @@ export interface UpdateContextValue { checkForUpdates: () => void; downloadLastApplicationUpdate: () => void; restartAppForUpdateApply: () => void; + updateServer: string | null; } export const UpdateProviderContext = createContext(null); @@ -167,7 +168,8 @@ export function UpdateProvider(props: UpdateProviderProps) { kernelUpdateUrl, checkForUpdates, downloadLastApplicationUpdate, - restartAppForUpdateApply + restartAppForUpdateApply, + updateServer: updateServerRef.current }}> {props.children} diff --git a/app/version.ts b/app/version.ts index 95ebf02..e7b1210 100644 --- a/app/version.ts +++ b/app/version.ts @@ -1,11 +1,7 @@ -export const APP_VERSION = "1.0.2"; +export const APP_VERSION = "1.0.3"; export const CORE_MIN_REQUIRED_VERSION = "1.4.9"; export const RELEASE_NOTICE = ` -**Update v1.0.2** :emoji_1f631: -- Support multiple file downloads -- Fix fallback after boot loading -- Fix corss-chat reading messages -- Support sync attachments on other devices -- Fix UI bugs +**Update v1.0.3** :emoji_1f631: +- Fix kernel update alert `; \ No newline at end of file