Skip to content

Commit

Permalink
Updated to v1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodnorwell committed Oct 4, 2024
1 parent f4f6a9e commit b429abd
Showing 1 changed file with 62 additions and 32 deletions.
94 changes: 62 additions & 32 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,68 @@ import classes from './App.module.css';

export default function App() {
const changes = [
{
text: 'v1.0.10',
sha: 'f2e32a9',
isLatest: false,
isUpcoming: true,
details: [
{
system: "Android",
download: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.10/app-mainline-release.apk',
last: false,
items: [
{
primaryText: 'Added some support for QLaunch (Home Menu) and added QLaunch option to Applet launcher submenu',
secondaryText: null
},
{
primaryText: 'Improved accuracy of several IPC interface services',
secondaryText: null
}
]
},
{
system: "Linux",
download: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.10/sudachi-linux-v1.0.10.7z',
last: false,
items: [
{
primaryText: 'Added some support for QLaunch (Home Menu) and added QLaunch option to Tools submenu',
secondaryText: null
},
{
primaryText: 'Improved accuracy of several IPC interface services',
secondaryText: null
},
{
primaryText: 'Improved game library loading by using native C++ directory recursion',
secondaryText: null
}
]
},
{
system: "Windows",
download: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.10/sudachi-windows-v1.0.10.7z',
last: true,
items: [
{
primaryText: 'Added some support for QLaunch (Home Menu) and added QLaunch option to Tools submenu',
secondaryText: null
},
{
primaryText: 'Improved accuracy of several IPC interface services',
secondaryText: null
},
{
primaryText: 'Improved game library loading by using native C++ directory recursion',
secondaryText: null
}
]
}
],
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.10/latest.zip'
},
{
text: 'v1.0.9',
sha: 'e56a8a0',
Expand Down Expand Up @@ -63,38 +125,6 @@ export default function App() {
}
],
url: ''
},
{
text: 'v1.0.7',
sha: 'xxxxxxx',
isLatest: false,
isUpcoming: false,
details: [
{
system: 'Windows',
download: '',
last: true,
items: [
{
primaryText: 'Fixed an issue in Super Bomberman R 2 that caused the game to not boot due to an error in the Friend service',
secondaryText: null
},
{
primaryText: 'Fixed an issue in Animal Well that caused the game to not boot due to the audio core revision number being too low',
secondaryText: null
},
{
primaryText: 'Fixed an issue in Princess Peach: Showtime! that caused the game to run into a black screen',
secondaryText: 'Please be aware this fix is not complete and Princess Peach: Showtime! will still drop to 0fps occasionally'
},
{
primaryText: 'Fixed an issue in Paper Mario: The Thousand Year Door that caused the sewers to be black when using an AMD graphics card',
secondaryText: 'Thank you to Ryujinx for the pointer towards LogicOp'
}
]
}
],
url: ''
}
];

Expand Down

0 comments on commit b429abd

Please sign in to comment.