diff --git a/release/app/package.json b/release/app/package.json
index 1ecc319..74bfbee 100644
--- a/release/app/package.json
+++ b/release/app/package.json
@@ -1,6 +1,6 @@
{
"name": "EmuDeck",
- "version": "2.2.33",
+ "version": "2.2.34",
"description": "Play all your RetroGames",
"license": "MIT",
"author": {
diff --git a/src/renderer/App.tsx b/src/renderer/App.tsx
index efb6731..29efc7d 100644
--- a/src/renderer/App.tsx
+++ b/src/renderer/App.tsx
@@ -520,8 +520,8 @@ export default function App() {
deckyromlauncher: {
id: 'deckyromlauncher',
status: true,
- name: 'Rom Library',
- desc: 'A separate Rom Library that does not interfiere with your Games Library. All games and artwork are detected automatically.',
+ name: 'Retro Library',
+ desc: 'A separate Retro Library that does not interfiere with your Games Library. All games and artwork are detected automatically.',
},
steam: {
@@ -543,7 +543,7 @@ export default function App() {
multiemulator: 'ra',
dreamcast: 'multiemulator',
},
- controllerLayout: 'bayx',
+ controllerLayout: 'baxy',
revertParsers: false,
resolutions: {
dolphin: '720P',
diff --git a/src/renderer/components b/src/renderer/components
index ddbd009..b118eed 160000
--- a/src/renderer/components
+++ b/src/renderer/components
@@ -1 +1 @@
-Subproject commit ddbd00917426d42041f1cb5844d171c62008b24a
+Subproject commit b118eed95a2870af26c4876660c06a773cf152a2
diff --git a/src/renderer/pages/CloudSyncConfigPage.jsx b/src/renderer/pages/CloudSyncConfigPage.jsx
index 4338c9f..a262a36 100644
--- a/src/renderer/pages/CloudSyncConfigPage.jsx
+++ b/src/renderer/pages/CloudSyncConfigPage.jsx
@@ -159,6 +159,7 @@ function CloudSyncPageConfig() {
ipcChannel.sendMessage('emudeck', [`cloudSyncHealth|||cloudSyncHealth`]);
ipcChannel.once('cloudSyncHealth', (message) => {
+ console.log({ message });
const { stdout } = message;
let modalData;
if (stdout.includes('true')) {
diff --git a/src/renderer/pages/DeckyRomLauncherInstallPage.jsx b/src/renderer/pages/DeckyRomLauncherInstallPage.jsx
index 92044da..5546e3f 100644
--- a/src/renderer/pages/DeckyRomLauncherInstallPage.jsx
+++ b/src/renderer/pages/DeckyRomLauncherInstallPage.jsx
@@ -89,7 +89,7 @@ function DeckyRomLauncherInstallPage() {
const installDeckyRomLauncher = () => {
const modalData = {
active: true,
- header: Installing Rom Library,
+ header: Installing Retro Library,
body:
Please wait while we install the plugin
,
footer: ,
css: 'emumodal--xs',
@@ -111,7 +111,7 @@ function DeckyRomLauncherInstallPage() {
modalData = {
active: true,
header: Success!,
- body: Rom Library Installed
,
+ body: Retro Library Installed
,
css: 'emumodal--xs',
};
@@ -171,7 +171,7 @@ function DeckyRomLauncherInstallPage() {
return (
-
+
{
const modalData = {
active: true,
- header: Installing Rom Library,
+ header: Installing Retro Library,
body: Please wait while we install the plugin
,
footer: ,
css: 'emumodal--xs',
@@ -113,7 +113,7 @@ function DeckyRomLauncherPage() {
modalData = {
active: true,
header: Success!,
- body: Rom Library Installed
,
+ body: Retro Library Installed
,
css: 'emumodal--xs',
};
@@ -158,7 +158,7 @@ function DeckyRomLauncherPage() {
return (
-
+
- `} />
+ `}
+ />
{t('FinishPage.line1')}
diff --git a/src/renderer/pages/FrontendSelectorPage.jsx b/src/renderer/pages/FrontendSelectorPage.jsx
index a7c53be..46e7c3d 100644
--- a/src/renderer/pages/FrontendSelectorPage.jsx
+++ b/src/renderer/pages/FrontendSelectorPage.jsx
@@ -25,7 +25,7 @@ const images = {
function FrontendSelectorPage() {
const { t, i18n } = useTranslation();
const { state, setState } = useContext(GlobalContext);
- const { device, installFrontends, mode, system } = state;
+ const { device, installFrontends, mode, system, branch } = state;
const [statePage, setStatePage] = useState({
disabledNext: false,
@@ -215,7 +215,7 @@ function FrontendSelectorPage() {
}, [installFrontends]);
const nextPage = () => {
- if (installFrontends.deckyromlauncher.status) {
+ if (installFrontends.deckyromlauncher.status && branch != 'main') {
return 'decky-rom-launcher-install';
}
if (installFrontends.pegasus.status && installFrontends.esde.status) {