1.0.3-1.4.9 #3

Merged
Royce59 merged 6 commits from dev into main 2026-02-18 18:37:43 +00:00
3 changed files with 9 additions and 10 deletions
Showing only changes of commit 67ef2b7ea7 - Show all commits

View File

@@ -20,7 +20,8 @@ export function UpdateAlert(props : UpdateAlertProps) {
updateStatus, updateStatus,
downloadLastApplicationUpdate, downloadLastApplicationUpdate,
restartAppForUpdateApply, restartAppForUpdateApply,
checkForUpdates checkForUpdates,
updateServer
} = useUpdater(); } = useUpdater();
useEffect(() => { useEffect(() => {
@@ -34,7 +35,7 @@ export function UpdateAlert(props : UpdateAlertProps) {
<Button h={45} leftSection={ <Button h={45} leftSection={
<IconRefresh size={15}/> <IconRefresh size={15}/>
} onClick={() => { } onClick={() => {
window.shell.openExternal(kernelUpdateUrl); window.shell.openExternal(updateServer + kernelUpdateUrl);
}} fullWidth variant={'gradient'} gradient={{ from: 'red', to: 'orange', deg: 233 }} radius={radius}> }} fullWidth variant={'gradient'} gradient={{ from: 'red', to: 'orange', deg: 233 }} radius={radius}>
Kernel update required Kernel update required
</Button> </Button>

View File

@@ -39,6 +39,7 @@ export interface UpdateContextValue {
checkForUpdates: () => void; checkForUpdates: () => void;
downloadLastApplicationUpdate: () => void; downloadLastApplicationUpdate: () => void;
restartAppForUpdateApply: () => void; restartAppForUpdateApply: () => void;
updateServer: string | null;
} }
export const UpdateProviderContext = createContext<UpdateContextValue | null>(null); export const UpdateProviderContext = createContext<UpdateContextValue | null>(null);
@@ -167,7 +168,8 @@ export function UpdateProvider(props: UpdateProviderProps) {
kernelUpdateUrl, kernelUpdateUrl,
checkForUpdates, checkForUpdates,
downloadLastApplicationUpdate, downloadLastApplicationUpdate,
restartAppForUpdateApply restartAppForUpdateApply,
updateServer: updateServerRef.current
}}> }}>
{props.children} {props.children}
</UpdateProviderContext.Provider> </UpdateProviderContext.Provider>

View File

@@ -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 CORE_MIN_REQUIRED_VERSION = "1.4.9";
export const RELEASE_NOTICE = ` export const RELEASE_NOTICE = `
**Update v1.0.2** :emoji_1f631: **Update v1.0.3** :emoji_1f631:
- Support multiple file downloads - Fix kernel update alert
- Fix fallback after boot loading
- Fix corss-chat reading messages
- Support sync attachments on other devices
- Fix UI bugs
`; `;