diff --git a/src/renderer/components b/src/renderer/components index c45eee3..b5573d4 160000 --- a/src/renderer/components +++ b/src/renderer/components @@ -1 +1 @@ -Subproject commit c45eee3be62b79a29a27f8a028331a3608b3dbaa +Subproject commit b5573d4998afb51422cbdfbe14738d94705571f4 diff --git a/src/renderer/pages/CloudSyncConfigPage.jsx b/src/renderer/pages/CloudSyncConfigPage.jsx index 7c726bd..c4751d0 100644 --- a/src/renderer/pages/CloudSyncConfigPage.jsx +++ b/src/renderer/pages/CloudSyncConfigPage.jsx @@ -147,6 +147,7 @@ function CloudSyncPageConfig() { active: true, header: Testing CloudSync, body:
Please wait a few minutes while we test your configuration.
, + footer:Everything seems to be in order.
, - css: 'emumodal--sm', - }; - } else if (stdout.includes('nobinary')) { - modalData = { - active: true, - header: Missing CloudSync binary, - body:Please try reinstalling CloudSync.
, + body: , css: 'emumodal--sm', }; - } else if (stdout.includes('noconfig')) { - modalData = { - active: true, - header: ( - CloudSync failure - No config file - ), - body:Please try reinstalling CloudSync
, - css: 'emumodal--sm', - }; - } else if (stdout.includes('noprovider')) { - modalData = { - active: true, - header: ( - - CloudSync failure - No cloud provider found - - ), - body:Please try reinstalling CloudSync
, - css: 'emumodal--sm', - }; - } else if (stdout.includes('upload')) { - modalData = { - active: true, - header: CloudSync failure, - body:{stdout}
, - css: 'emumodal--sm', - }; - } else if (stdout.includes('download')) { + } else { + console.log({ stdout }); modalData = { active: true, header: CloudSync failure, - body:{stdout}
, + body: , css: 'emumodal--sm', }; } @@ -263,7 +231,7 @@ function CloudSyncPageConfig() { console.log({ stdout }); let modalData; if (stdout.includes('true')) { - checkHealth(); + // checkHealth(); modalData = { active: true, header: CloudSync Configured, @@ -312,7 +280,7 @@ function CloudSyncPageConfig() { cloudSyncStatus: true, }); } else { - checkHealth(); + // checkHealth(); let warningChrome; if (system !== 'win32') { warningChrome = `Make sure you have Google Chrome installed, Firefox won't work. Once you have CloudSync installed you can remove Chrome`; diff --git a/src/renderer/pages/GameModePage.jsx b/src/renderer/pages/GameModePage.jsx index 075899f..67742b3 100644 --- a/src/renderer/pages/GameModePage.jsx +++ b/src/renderer/pages/GameModePage.jsx @@ -41,28 +41,10 @@ function GameModePage() { active: true, header: Game Mode enabled, body: ( - <> -- Restart your device to go into Game Mode, Exit Steam to go back to - your Desktop -
-
- Make sure to add exceptions in your antivirus to these files
- before restarting or your computer won't start properly.
-
-
-
- USER\AppData\Roaming\EmuDeck\backend\tools\gamemode\enable.exe
-
-
- USER\AppData\Roaming\EmuDeck\backend\tools\gamemode\disable.exe
-
-
- USER\AppData\Roaming\EmuDeck\backend\tools\gamemode\login.exe
-
-
+ Restart your device to go into Game Mode, Exit Steam to go back to + your Desktop +
), css: 'emumodal--sm', };