Skip to content

Commit

Permalink
2.1.18 RPCS3_renameFolders
Browse files Browse the repository at this point in the history
  • Loading branch information
dragoonDorise committed Jul 17, 2023
1 parent e0def4e commit 419e1df
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion release/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "EmuDeck",
"version": "2.1.17",
"version": "2.1.18",
"description": "Play all your RetroGames",
"license": "MIT",
"author": {
Expand Down
1 change: 1 addition & 0 deletions src/renderer/pages/EndPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ function EndPage() {
'We will close Steam if its running and load Steam Rom Manager, this will take a few seconds, please wait'
);
ipcChannel.sendMessage('bash', [`taskkill /IM steam.exe /F`]);
ipcChannel.sendMessage('emudeck', [`PS3Folders|||RPCS3_renameFolders`]);
ipcChannel.sendMessage(
'run-app',
`${storagePath}\Emulation\\tools\\srm.exe`
Expand Down
11 changes: 11 additions & 0 deletions src/renderer/pages/WelcomePage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import {
iconJoystick,
iconPackage,
iconDisk,
iconHelp,
} from 'components/utils/images/images';

function WelcomePage() {
Expand Down Expand Up @@ -108,6 +109,7 @@ function WelcomePage() {
alert(
'We will close Steam if its running and load Steam Rom Manager, this will take a few seconds, please wait'
);
ipcChannel.sendMessage('emudeck', [`PS3Folders|||RPCS3_renameFolders`]);
ipcChannel.sendMessage('bash', [`taskkill /IM steam.exe /F`]);
let srmPath;

Expand Down Expand Up @@ -204,6 +206,15 @@ function WelcomePage() {
status: true,
function: () => functions.navigate('/store-front'),
},
{
icon: [iconHelp],
title: 'Help',
description: 'Having problems running EmuDeck?',
button: 'Fix mi issues',
btnCSS: 'btn-simple--1',
status: false,
function: () => functions.navigate('/help'),
},
];

const settingsCards = [
Expand Down

0 comments on commit 419e1df

Please sign in to comment.