chore: add file downloading for ezpplauncher files, add ui replacement

This commit is contained in:
2025-07-04 14:56:47 +02:00
parent 41608afae2
commit 7e524debb9
11 changed files with 583 additions and 78 deletions

View File

@@ -119,3 +119,18 @@ export type StreamsResult = {
user_count: number;
}[];
};
export type UpdateFile = {
folder: string;
md5: string;
name: string;
size: number;
url: string;
};
export type UpdateStatus = {
fileName: string;
downloaded: number;
size: number;
progress: number;
};