You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[UX] Improve Compatibility layer setup and handling (#761)
* Add compatibility warning for non-native games
* feat: download gptk even if wine is available
* fix: winetricks download on macos
* feat: set gptk as default on mac
* feat: style the warning on install dialog
* fix: lint
* feat: show warning dialog when running a game with compatibility layer
* feat: add method to check if mac is GPTK compatible
* feat: show a warning if system is not compatible with GPTK
* fix: lint
* fix: check for gptk on validWine as well
* fix: show correct dialog when wine not found
* feat: Add isRosettaAvailable function to check for Rosetta availability on macOS
* fix: PR Comments
* fix: pr comments
* fix: lint
---------
Co-authored-by: Flavio F Lima <flavioislima@users.noreply.github.com>
'To be able to run games using the Apple Gaming porting toolkit you need to upgrade your macOS to 14 (Sonoma) or higher. {{newline}} We found Wine on your system, do you want to continue launching using {{foundWine}} ?',
`Rosetta is ${result ? 'available' : 'not available'} on this system.`,
960
+
LogPrefix.Backend
961
+
)
962
+
963
+
if(!result){
964
+
// show a dialog saying that hyperplay wont run without rosetta and add information on how to install it
965
+
awaitdialog.showMessageBox({
966
+
title: i18next.t('box.warning.rosetta.title','Rosetta not found'),
967
+
message: i18next.t(
968
+
'box.warning.rosetta.message',
969
+
'HyperPlay requires Rosetta to run correctly on macOS with Apple Silicon chips. Please install it from the macOS terminal using the following command: "softwareupdate --install-rosetta" and restart HyperPlay. '
970
+
),
971
+
buttons: ['OK'],
972
+
icon: icon
973
+
})
974
+
975
+
logInfo(
976
+
'Rosetta is not available, install it with softwareupdate --install-rosetta from the terminal',
977
+
LogPrefix.Backend
978
+
)
979
+
}
980
+
}
981
+
982
+
exportasyncfunctionisMacSonomaOrHigher(){
983
+
if(!isMac){
984
+
returnfalse
985
+
}
986
+
logInfo('Checking if macOS is Sonoma or higher',LogPrefix.Backend)
0 commit comments