This commit is contained in:
2025-11-03 11:20:07 -07:00
parent 2d764448af
commit a3aa1915d4
14 changed files with 111 additions and 269 deletions

View File

@@ -3,6 +3,8 @@ export class DownloadProgress {
public version: string,
public progress: number,
public failed: boolean,
public queued: boolean
public queued: boolean,
public hash_checking: boolean,
public finishing: boolean
) { }
}

View File

@@ -2,9 +2,8 @@ export interface GameVersion {
id: string
versionName: string
releaseDate: number
downloadUrls: string[]
platforms: string[]
executables: string[]
game: number
place: number
downloadUrl: string
executable: string
sha512sum: string
}

View File

@@ -1,8 +1,6 @@
export class SettingsType {
constructor(
public allowNotifications: boolean = true,
public alwaysShowGamesInSidebar: boolean = true,
public useWineOnUnixWhenNeeded: boolean = false,
public wineOnUnixCommand: string = 'wine %path%'
public alwaysShowGamesInSidebar: boolean = true
) { }
}