Merge branch 'master' into feature/fileSizes+OversizeWarning

This commit is contained in:
Unifox
2025-02-12 13:17:38 -07:00
committed by GitHub
29 changed files with 3078 additions and 430 deletions
+1
View File
@@ -159,6 +159,7 @@ export interface IpcChannelMapping {
/* ** linux.ipcs ** */
"linux.verify-proton-folder": { request: void, response: boolean };
"linux.get-wine-prefix-path": { request: void, response: string };
/* ** oculus.ipcs ** */
"is-oculus-sideloaded-apps-enabled": { request: void, response: boolean };
+7
View File
@@ -12,3 +12,10 @@ export interface UninstallModsResult {
nbModsToUninstall: number;
nbUninstalledMods: number;
}
export enum ModsGridStatus {
OK = "",
NO_WINEPREFIX = "no-wineprefix",
UNKNOWN = "unknown"
}