diff --git a/src/data/emuData.json b/src/data/emuData.json index 5ff7eb3..73872bf 100644 --- a/src/data/emuData.json +++ b/src/data/emuData.json @@ -213,7 +213,7 @@ "code": "Yuzu", "description": "Yuzu was a Nintendo Switch emulator, it was shutdown after a settlement with Nintendo and it's no longer available to install. Emudeck does not download nor can it guarantee support if you run into any issues.", - "special_configuration": " If you already have your yuzu.AppImage in the /home/deck/Applications folder it will keep working. Same if you are on windows and you have it on your USERFOLDER/EmuDeck/EmulationStation-DE/Emulators/yuzu folder. Firmware: Place keys and firmware place in: Emulation/bios/yuzu.", + "special_configuration": " If you already have your yuzu.AppImage in the /home/deck/Applications folder it will keep working. Same if you are on windows and you have it on your USERFOLDER/EmuDeck/EmulationStation-DE/Emulators/yuzu/yuzu-windows-msvc folder. Firmware: Place keys and firmware place in: Emulation/bios/yuzu.", "bios": ["nswitch"], "systems": "Nintendo Switch", "hotkeys": { diff --git a/src/renderer/components b/src/renderer/components index 7a96a12..00b32d5 160000 --- a/src/renderer/components +++ b/src/renderer/components @@ -1 +1 @@ -Subproject commit 7a96a12a26ac5a9beabb6b80572c27d580c81e4c +Subproject commit 00b32d5c59b85bf4d57754cf088d3a91ffccb469 diff --git a/src/renderer/pages/CloudSyncConfigPage.jsx b/src/renderer/pages/CloudSyncConfigPage.jsx index 471c099..73f49af 100644 --- a/src/renderer/pages/CloudSyncConfigPage.jsx +++ b/src/renderer/pages/CloudSyncConfigPage.jsx @@ -203,7 +203,7 @@ function CloudSyncPageConfig() { const modalData = { active: true, - header: Installing CloudSync, + header: Installing Cloud{CloudSyncType}, css: 'emumodal--xs', body: (
@@ -216,11 +216,7 @@ function CloudSyncPageConfig() { setStatePage({ ...statePage, disableButton: true, modal: modalData }); let cloudFunction; - if (cloudSyncType === 'Sync') { - cloudFunction = 'cloud_sync_install_and_config '; - } else { - cloudFunction = 'cloud_backup_install_and_config'; - } + cloudFunction = 'cloud_sync_install_and_config '; ipcChannel.sendMessage('emudeck', [ `cloud_saves|||${cloudFunction} ${cloudSync}`, @@ -234,7 +230,7 @@ function CloudSyncPageConfig() { // checkHealth(); modalData = { active: true, - header: CloudSync Configured, + header: Cloud{CloudSyncType} Configured, body: ( <>
@@ -283,17 +279,19 @@ function CloudSyncPageConfig() { // 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`; + warningChrome = `Make sure you have Google Chrome installed, Firefox won't work. Once you have Cloud${cloudSyncType} installed you can remove Chrome`; } modalData = { active: true, - header: Error Installing CloudSync, + header: ( + Error Installing Cloud{cloudSyncType} + ), css: 'emumodal--xs', body: ( <>
- There's been an issue installing CloudSync, please try again. - Make sure your credentials are correct. + There's been an issue installing Cloud{cloudSyncType}, please + try again. Make sure your credentials are correct.
{warningChrome} @@ -358,8 +356,8 @@ function CloudSyncPageConfig() { body: (
Make sure you have Google Chrome or any other Chromium browser set - as your default browser to install CloudSync. You can set your old - browser by default once the installation is complete. + as your default browser to install Cloud{cloudSyncType}. You can set + your old browser by default once the installation is complete.
), css: 'emumodal--sm', @@ -382,7 +380,7 @@ function CloudSyncPageConfig() {