Added latest Windows build

This commit is contained in:
Jarrod Norwell 2024-09-05 04:59:22 +08:00
parent 422881756f
commit c6ea314c46
5 changed files with 899 additions and 479 deletions

View File

@ -1,7 +1,9 @@
index.html,1724249716318,792eb436f752871965842f7108818056819967c9428d4b0e3fe68bd433d0901a
favicon.svg,1724249716138,adc7e10f9bbcf8f9f82633c10dff6adf766bb3b521a127257964852e54d40a7f
assets/index-D2oKlaOf.css,1724249716318,83048111e6b01add7846a3f820c8f5da59902198a7219142c4343e0dac692e3b
assets/index-AEhDgl0z.js,1724249716318,9dd0f358c875aa401c6bc405d7c35d5ce0f95cd642f60e630acc49e5b456bb4f
releases/latest.zip,1724249716138,e5000752bea1ee8915d21a9b4c0bd6b53b61d0f93d4b5af3c05d024c44be5ef2
releases/sudachi-android-v1.0.4.7z,1724249716147,6de6313085506266b5145ffaddf27a16f9342406997ba610dd73ec90d1740836
releases/sudachi-windows-v1.0.4.7z,1724249716192,2f0e2f68e65d3485364a5507ec5f379e1dfdaeefa9c4d74dd08451bb2b9478a5
index.html,1724528489943,a8c8b2eed6931b30ffe733d14aa29a8205b358d6de1048dfe4c19996365eb66b
favicon.svg,1724528487177,adc7e10f9bbcf8f9f82633c10dff6adf766bb3b521a127257964852e54d40a7f
assets/index-D2oKlaOf.css,1724528489943,83048111e6b01add7846a3f820c8f5da59902198a7219142c4343e0dac692e3b
assets/index-BcYBPYQl.js,1724528489943,64f75b546e697ab1680286d041510a17a91eeb2ff559645973993b6ca140cb0e
releases/latest.zip,1724528487257,e5000752bea1ee8915d21a9b4c0bd6b53b61d0f93d4b5af3c05d024c44be5ef2
releases/sudachi-macos-(arm64)-v1.0.4.7z,1724528488517,22149549153dd38762aea5ea0150143b63fd31731531bcff1483c0de842e9ccf
releases/sudachi-ipad-iphone-v1.0.2.7z,1724528487687,9e1399c29d98900ba64e5fd6ab65866884d3d8626b00b0ae0749e6f959316057
releases/sudachi-android-v1.0.4.7z,1724528487677,6de6313085506266b5145ffaddf27a16f9342406997ba610dd73ec90d1740836
releases/sudachi-windows-v1.0.4.7z,1724528489833,2f0e2f68e65d3485364a5507ec5f379e1dfdaeefa9c4d74dd08451bb2b9478a5

1339
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -18,6 +18,13 @@ export default function App() {
{
text: 'Windows',
details: [
{
secondaryText: 'Fixed an issue in Animal Well that caused the game to not boot due to the audio core revision number being too low'
},
{
secondaryText: 'Fixed an issue in Princess Peach: Showtime! that caused the game to run into a black screen',
tertiaryText: 'Please be aware this fix is not complete and Princess Peach: Showtime! will still drop to 0fps occasionally'
},
{
secondaryText: 'Fixed an issue in Paper Mario: The Thousand Year Door that caused the sewers to be black when using an AMD graphics card',
tertiaryText: 'Thank you to Ryujinx for the pointer towards LogicOp'
@ -32,7 +39,7 @@ export default function App() {
<Text>
{detail.secondaryText}
</Text>
<Text c={'dimmed'} size="sm" hidden={detail.tertiaryText == ''}>
<Text c={'dimmed'} size="sm" hidden={detail.tertiaryText == '' || detail.tertiaryText == null}>
{detail.tertiaryText}
</Text>
</List.Item>
@ -53,7 +60,7 @@ export default function App() {
const [opened, setOpened] = useState(false);
return (
<MantineProvider theme={theme} forceColorScheme="dark">
<MantineProvider theme={theme}>
<Container>
<Flex align={'center'} justify={'center'} h={'100vh'}>
<Stack>
@ -64,22 +71,22 @@ export default function App() {
Sudachi, a Nintendo Switch emulator
</Title>
<Text c={'dimmed'} ta={'center'}>
Sudachi will still receive updates but not as frequent, the plan is to add an Artic Base type feature similar to Pablo's Citra fork, move over to LibHac (for Windows) and update the UI entirely
Nintendo Switch emulation without the iffy bits and support for more games
</Text>
<Flex align={'center'} justify={'center'}>
<Group ta={'center'}>
<Button color="green" component="a" href="/releases/sudachi-android-v1.0.4.7z" radius={'xl'} variant="filled">Android</Button>
<Button color="green" radius={'xl'} variant="filled" disabled>Android</Button>
<Menu opened={opened} onChange={setOpened}>
<Menu.Target>
<Button radius={'xl'} variant="filled">Apple</Button>
<Button radius={'xl'} variant="filled" disabled>Apple</Button>
</Menu.Target>
<Menu.Dropdown>
<Menu.Label>iOS, iPadOS</Menu.Label>
<Menu.Item leftSection={<IconDeviceTablet style={{ width: rem(14), height: rem(14) }} />} disabled>
<Menu.Item leftSection={<IconDeviceTablet style={{ width: rem(14), height: rem(14) }} />}>
iPad
</Menu.Item>
<Menu.Item leftSection={<IconDeviceMobile style={{ width: rem(14), height: rem(14) }} />} disabled>
<Menu.Item leftSection={<IconDeviceMobile style={{ width: rem(14), height: rem(14) }} />}>
iPhone
</Menu.Item>
<Menu.Divider />
@ -98,7 +105,7 @@ export default function App() {
</Menu.Dropdown>
</Menu>
<Button color="orange" radius={'xl'} variant="filled" disabled>Linux</Button>
<Button color="blue" component="a" href="/releases/sudachi-windows-v1.0.4.7z" radius={'xl'} variant="filled">Windows</Button>
<Button color="blue" component="a" href="/releases/sudachi-windows-v1.0.5.7z" radius={'xl'} variant="filled">Windows</Button>
<Button color="gray" component="a" href="/releases/latest.zip" radius={'xl'} variant="filled">Source Code</Button>
</Group>
</Flex>