feat: update GE-Proton and add ARM64 Linux support

This commit is contained in:
neoapps-dev
2026-09-01 15:39:45 +03:00
parent bc38f1c8e7
commit 8d42cac897
6 changed files with 41 additions and 11 deletions
+4 -4
View File
@@ -61,7 +61,7 @@ const SettingsView = memo(function SettingsView() {
runnerDownloadProgress,
downloadRunner,
} = useGame();
const { isLinux, isMac, isAndroid } = usePlatform();
const { isLinux, isMac, isAndroid, arch } = usePlatform();
const [focusIndex, setFocusIndex] = useState<number | null>(null);
const [currentSubMenu, setCurrentSubMenu] = useState<
| "main"
@@ -535,15 +535,15 @@ const SettingsView = memo(function SettingsView() {
})
: t("settings.downloadRunner"),
type: "button",
textured: true,
onClick: () => {
if (!isRunnerDownloading) {
downloadRunner(
"GE-Proton9-25",
"https://github.com/GloriousEggroll/proton-ge-custom/releases/download/GE-Proton9-25/GE-Proton9-25.tar.gz",
`GE-Proton11-6-${arch}`,
`https://github.com/GloriousEggroll/proton-ge-custom/releases/download/GE-Proton11-6/GE-Proton11-6-${arch}.tar.gz`,
);
}
},
small: true,
});
}