mirror of
https://github.com/emuplace/sudachi.emuplace.app.git
synced 2025-08-28 15:00:05 +02:00
Compare commits
No commits in common. "main" and "v1.0.8" have entirely different histories.
6 changed files with 5500 additions and 5286 deletions
9154
package-lock.json
generated
9154
package-lock.json
generated
File diff suppressed because it is too large
Load diff
73
package.json
73
package.json
|
@ -1,39 +1,38 @@
|
||||||
{
|
{
|
||||||
"name": "vite-min-template",
|
"name": "vite-min-template",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite dev",
|
"dev": "vite dev",
|
||||||
"build": "tsc && vite build",
|
"build": "tsc && vite build",
|
||||||
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
||||||
"preview": "vite preview",
|
"preview": "vite preview"
|
||||||
"emulate": "npm run build && firebase emulators:start --only hosting"
|
},
|
||||||
},
|
"dependencies": {
|
||||||
"dependencies": {
|
"@mantine/core": "7.11.1",
|
||||||
"@mantine/core": "7.11.1",
|
"@mantine/hooks": "7.11.1",
|
||||||
"@mantine/hooks": "7.11.1",
|
"@mantine/vanilla-extract": "7.11.1",
|
||||||
"@mantine/vanilla-extract": "7.11.1",
|
"@tabler/icons-react": "^3.11.0",
|
||||||
"@tabler/icons-react": "^3.11.0",
|
"@vanilla-extract/css": "^1.15.3",
|
||||||
"@vanilla-extract/css": "^1.15.3",
|
"react": "^18.3.1",
|
||||||
"react": "^18.3.1",
|
"react-dom": "^18.3.1"
|
||||||
"react-dom": "^18.3.1"
|
},
|
||||||
},
|
"devDependencies": {
|
||||||
"devDependencies": {
|
"@types/react": "^18.3.3",
|
||||||
"@types/react": "^18.3.3",
|
"@types/react-dom": "^18.3.0",
|
||||||
"@types/react-dom": "^18.3.0",
|
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
||||||
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
"@typescript-eslint/parser": "^7.13.1",
|
||||||
"@typescript-eslint/parser": "^7.13.1",
|
"@vanilla-extract/vite-plugin": "^4.0.11",
|
||||||
"@vanilla-extract/vite-plugin": "^5.0.7",
|
"@vitejs/plugin-react": "^4.3.1",
|
||||||
"@vitejs/plugin-react": "^4.3.1",
|
"eslint": "^8.57.0",
|
||||||
"eslint": "^8.57.0",
|
"eslint-plugin-react-hooks": "^4.6.2",
|
||||||
"eslint-plugin-react-hooks": "^4.6.2",
|
"eslint-plugin-react-refresh": "^0.4.7",
|
||||||
"eslint-plugin-react-refresh": "^0.4.7",
|
"postcss": "^8.4.38",
|
||||||
"postcss": "^8.4.38",
|
"postcss-preset-mantine": "1.15.0",
|
||||||
"postcss-preset-mantine": "1.15.0",
|
"postcss-simple-vars": "^7.0.1",
|
||||||
"postcss-simple-vars": "^7.0.1",
|
"typescript": "^5.5.2",
|
||||||
"typescript": "^5.5.2",
|
"vite": "^5.3.1"
|
||||||
"vite": "^6.3.5"
|
},
|
||||||
},
|
"packageManager": "yarn@4.3.1"
|
||||||
"packageManager": "yarn@4.3.1"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
.root {
|
.root {
|
||||||
border-radius: var(--mantine-radius-lg);
|
border-radius: var(--mantine-radius-md);
|
||||||
background-color: light-dark(var(--mantine-color-gray-0), var(--mantine-color-dark-6));
|
background-color: light-dark(var(--mantine-color-gray-0), var(--mantine-color-dark-6));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
background-color: var(--mantine-color-body);
|
background-color: var(--mantine-color-body);
|
||||||
border-color: light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-4));
|
border-color: light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-4));
|
||||||
box-shadow: var(--mantine-shadow-md);
|
box-shadow: var(--mantine-shadow-md);
|
||||||
border-radius: var(--mantine-radius-lg);
|
border-radius: var(--mantine-radius-md);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
487
src/App.tsx
487
src/App.tsx
|
@ -1,335 +1,111 @@
|
||||||
import "@mantine/core/styles.css";
|
import "@mantine/core/styles.css";
|
||||||
import {
|
import {
|
||||||
Accordion,
|
Accordion, Anchor, Badge, Button, Container,
|
||||||
Anchor, Badge, Button, Center, Flex,
|
Flex, Group, List, MantineProvider, Menu,
|
||||||
Group,
|
Space, Stack, Text, Title, rem
|
||||||
List,
|
|
||||||
MantineProvider,
|
|
||||||
Space,
|
|
||||||
Stack, Text, Title
|
|
||||||
} from "@mantine/core";
|
} from "@mantine/core";
|
||||||
|
import {
|
||||||
|
IconDeviceMobile,
|
||||||
|
IconDeviceTablet,
|
||||||
|
IconDeviceLaptop,
|
||||||
|
IconCardboards
|
||||||
|
} from '@tabler/icons-react';
|
||||||
|
import { useState } from "react";
|
||||||
import { theme } from "./theme";
|
import { theme } from "./theme";
|
||||||
|
import classes from './App.module.css';
|
||||||
|
|
||||||
export default function App() {
|
export default function App() {
|
||||||
const changes = [
|
const changes = [
|
||||||
{
|
{
|
||||||
text: 'Latest Changes',
|
text: 'v1.0.8',
|
||||||
secondaryText: 'Updated 2nd July 2025',
|
sha: '450b52f',
|
||||||
details: [
|
|
||||||
{
|
|
||||||
header: 'Added',
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
title: 'Added missing functions to IAudioController to include FW 19.0.0+ support',
|
|
||||||
subtitle: ''
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Added missing functions to IParentalControlService to include FW 18.0.0+ support',
|
|
||||||
subtitle: ''
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Added missing functions to IProfile and IProfileEditor to include FW 15.0.0 and 18.0.0+ support',
|
|
||||||
subtitle: ''
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Changed',
|
|
||||||
items: []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Deprecated',
|
|
||||||
items: []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Fixed',
|
|
||||||
items: []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Removed',
|
|
||||||
items: []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Security',
|
|
||||||
items: []
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: 'Older Changes',
|
|
||||||
secondaryText: 'Updated 20th June 2025',
|
|
||||||
details: [
|
|
||||||
{
|
|
||||||
header: 'Added',
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
title: 'Added missing master_key_* identifiers from 0x0B to 0x13 to include FW 18.0.0+ support',
|
|
||||||
subtitle: ''
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Added AliasRegionExtraSize to Kernel, ProgramMetadata and SVC to include FW 18.0.0+ support',
|
|
||||||
subtitle: ''
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Changed',
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
title: 'Rewrote the AppletAE, MM:U and NVMEMP services to improve accuracy',
|
|
||||||
subtitle: ''
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Rewrote the RawNACP structure to improve accuracy and include FW 20.0.0+ support',
|
|
||||||
subtitle: ''
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Deprecated',
|
|
||||||
items: []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Fixed',
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
title: 'Fixed compilation errors and issues with Mbed-TLS',
|
|
||||||
subtitle: ''
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Removed',
|
|
||||||
items: []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Security',
|
|
||||||
items: []
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
const items = changes.map((item) => {
|
|
||||||
return (
|
|
||||||
<Accordion.Item key={item.text} value={item.text}>
|
|
||||||
<Accordion.Control>
|
|
||||||
<Group justify={'space-between'} mr={'sm'}>
|
|
||||||
<Text>
|
|
||||||
{item.text}
|
|
||||||
</Text>
|
|
||||||
<Text c={'dimmed'}>
|
|
||||||
{item.secondaryText}
|
|
||||||
</Text>
|
|
||||||
</Group>
|
|
||||||
</Accordion.Control>
|
|
||||||
<Accordion.Panel mr={'md'}>
|
|
||||||
{
|
|
||||||
item.details.map((detail, index) => (
|
|
||||||
<>
|
|
||||||
<Title order={2}>
|
|
||||||
{detail.header}
|
|
||||||
</Title>
|
|
||||||
<List>
|
|
||||||
{
|
|
||||||
detail.items.length == 0 ? (
|
|
||||||
<Text c={'dimmed'}>Unchanged</Text>
|
|
||||||
) : (
|
|
||||||
detail.items.map((item) => (
|
|
||||||
<List.Item>
|
|
||||||
<Text c={'dimmed'}>
|
|
||||||
{item.title}
|
|
||||||
</Text>
|
|
||||||
</List.Item>
|
|
||||||
))
|
|
||||||
)
|
|
||||||
}
|
|
||||||
</List>
|
|
||||||
<Space h={index == item.details.length - 1 ? 0 : 'md'} />
|
|
||||||
</>
|
|
||||||
))
|
|
||||||
}
|
|
||||||
</Accordion.Panel>
|
|
||||||
</Accordion.Item>
|
|
||||||
)
|
|
||||||
})
|
|
||||||
|
|
||||||
const date = new Date()
|
|
||||||
|
|
||||||
return (
|
|
||||||
<MantineProvider theme={theme} forceColorScheme={date.getHours() >= 7 && date.getHours() <= 19 ? 'light' : 'dark'}>
|
|
||||||
<Flex align={'center'} h={'100vh'} justify={'center'} mx={'md'}>
|
|
||||||
<Stack>
|
|
||||||
<Anchor href='https://twitter.com/getsudachiemu' target={'_blank'}>
|
|
||||||
<Text c={theme.primaryColor} ta={'center'}>
|
|
||||||
@getsudachiemu
|
|
||||||
</Text>
|
|
||||||
</Anchor>
|
|
||||||
<Title order={1} ta={'center'}>
|
|
||||||
Sudachi, a Nintendo Switch emulator
|
|
||||||
</Title>
|
|
||||||
<Center>
|
|
||||||
<Badge variant={'dot'}>
|
|
||||||
#a-new-beginning
|
|
||||||
</Badge>
|
|
||||||
</Center>
|
|
||||||
<Text c={'dimmed'} ta={'center'}>
|
|
||||||
Nintendo Switch emulation focusing on accuracy, performance and support
|
|
||||||
</Text>
|
|
||||||
<Space h={'md'} />
|
|
||||||
<Accordion radius={'lg'} variant={'contained'}>
|
|
||||||
{items}
|
|
||||||
</Accordion>
|
|
||||||
<Space h={'md'} />
|
|
||||||
<Center>
|
|
||||||
<Stack>
|
|
||||||
<Text c={'dimmed'} ta={'center'}>
|
|
||||||
Sudachi is no longer in-development and won't be for some time due to my required commitment to my paid project, Folium<br />For a fork that also provides real, significant changes, check out Eden below
|
|
||||||
</Text>
|
|
||||||
<Flex justify={'center'}>
|
|
||||||
<Button color={'violet'} component={'a'} href={'https://eden-emu.dev'} radius={'xl'} target={'_blank'} variant={'light'}>
|
|
||||||
Check out Eden
|
|
||||||
</Button>
|
|
||||||
</Flex>
|
|
||||||
</Stack>
|
|
||||||
</Center>
|
|
||||||
</Stack>
|
|
||||||
</Flex>
|
|
||||||
</MantineProvider>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
/*export default function App() {
|
|
||||||
const changes = [
|
|
||||||
{
|
|
||||||
version: 'v1.0.15',
|
|
||||||
sha: 'c7431bd',
|
|
||||||
isLatest: true,
|
isLatest: true,
|
||||||
isUpcoming: false,
|
isUpcoming: false,
|
||||||
details: [
|
details: [
|
||||||
{
|
{
|
||||||
title: 'Added support for XCX:DE by stubbing ssl:s',
|
system: "Android",
|
||||||
subtitles: [
|
items: [
|
||||||
'Currently the menu and a small section of the game has been tested'
|
{
|
||||||
|
primaryText: 'Improved memory accuracy and sizing',
|
||||||
|
secondaryText: null
|
||||||
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Changed how MoltenVK is obtained for macOS to get newer versions',
|
system: "Windows",
|
||||||
subtitles: [
|
items: [
|
||||||
'Artifacts are now used which can now be updated more frequently'
|
{
|
||||||
|
primaryText: 'Improved memory accuracy and sizing',
|
||||||
|
secondaryText: null
|
||||||
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Changed from SDL2 to SDL3 bringing over its improvements',
|
|
||||||
subtitles: []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Fixed issues related to caps by reverting the rewrite temporarily',
|
|
||||||
subtitles: []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Fixed several compilation errors on macOS',
|
|
||||||
subtitles: []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Updated vcpkg to the latest version',
|
|
||||||
subtitles: []
|
|
||||||
},
|
|
||||||
],
|
|
||||||
downloads: [
|
|
||||||
{
|
|
||||||
color: 'green',
|
|
||||||
platform: 'Android',
|
|
||||||
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.15/app-mainline-release.apk'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
color: 'orange',
|
|
||||||
platform: 'Linux',
|
|
||||||
url: ''
|
|
||||||
},
|
|
||||||
{
|
|
||||||
color: 'violet',
|
|
||||||
platform: 'macOS',
|
|
||||||
url: ''
|
|
||||||
},
|
|
||||||
{
|
|
||||||
color: 'blue',
|
|
||||||
platform: 'Windows',
|
|
||||||
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.15/sudachi-windows-v1.0.15.7z'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
color: 'gray',
|
|
||||||
platform: 'Source Code',
|
|
||||||
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.15/latest.zip'
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
version: 'v1.0.14',
|
text: 'v1.0.7',
|
||||||
sha: '6178075',
|
sha: 'xxxxxxx',
|
||||||
isLatest: false,
|
isLatest: false,
|
||||||
isUpcoming: false,
|
isUpcoming: false,
|
||||||
details: [
|
details: [
|
||||||
{
|
{
|
||||||
title: 'Added support for booting the initial setup screen via -setup',
|
system: 'Windows',
|
||||||
subtitles: [
|
items: [
|
||||||
'Only available on Linux, macOS and Windows via Terminal or Tools > Open Initial Setup',
|
{
|
||||||
'Only partial support for now, will be improved in the future'
|
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'
|
||||||
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Added several missing functions to allow the initial setup screen to be launched',
|
|
||||||
subtitles: [
|
|
||||||
'Fixes an issue where some newer games would not boot'
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Fixed an issue with mm:u where Get and GetOld would not return after pushing a found session\'s minimum value',
|
|
||||||
subtitles: []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Started rewrite of caps, caps:a and caps:su to improve accuracy',
|
|
||||||
subtitles: []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
downloads: [
|
|
||||||
{
|
|
||||||
color: 'green',
|
|
||||||
platform: 'Android',
|
|
||||||
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.14/app-mainline-release.apk'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
color: 'orange',
|
|
||||||
platform: 'Linux',
|
|
||||||
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.14/sudachi-linux-v1.0.14.7z'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
color: 'violet',
|
|
||||||
platform: 'macOS',
|
|
||||||
url: ''
|
|
||||||
},
|
|
||||||
{
|
|
||||||
color: 'blue',
|
|
||||||
platform: 'Windows',
|
|
||||||
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.14/sudachi-windows-v1.0.14.7z'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
color: 'gray',
|
|
||||||
platform: 'Source Code',
|
|
||||||
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.14/latest.zip'
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
];
|
||||||
|
|
||||||
const items = changes.map((item) => {
|
const items = changes.map((item) => {
|
||||||
|
const listItems = item.details.map((detail, index) => {
|
||||||
|
const detailItems = detail.items.map((item) => (
|
||||||
|
<>
|
||||||
|
<List.Item>
|
||||||
|
<Text>{item.primaryText}</Text>
|
||||||
|
<Text c={'dimmed'} size="sm" hidden={item.secondaryText == '' || item.secondaryText == null}>
|
||||||
|
{item.secondaryText}
|
||||||
|
</Text>
|
||||||
|
</List.Item>
|
||||||
|
</>
|
||||||
|
));
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Title order={3}>
|
||||||
|
{detail.system}
|
||||||
|
</Title>
|
||||||
|
<List>
|
||||||
|
{detailItems}
|
||||||
|
</List>
|
||||||
|
<Space h={index === changes.length ? 0 : 'md'} />
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Accordion.Item key={item.version} value={item.version}>
|
<Accordion.Item key={item.text} value={item.text}>
|
||||||
<Accordion.Control>
|
<Accordion.Control>
|
||||||
<Group justify='space-between' pr={'md'}>
|
<Group justify='space-between' pr={'md'}>
|
||||||
<Group gap={'sm'}>
|
<Group gap={'sm'}>
|
||||||
<Text>
|
<Text>
|
||||||
{item.version}
|
{item.text}
|
||||||
</Text>
|
</Text>
|
||||||
<Text c={'dimmed'}>
|
<Text c={'dimmed'}>
|
||||||
{`(${item.sha})`}
|
{`(${item.sha})`}
|
||||||
|
@ -341,61 +117,78 @@ export default function App() {
|
||||||
</Group>
|
</Group>
|
||||||
</Accordion.Control>
|
</Accordion.Control>
|
||||||
<Accordion.Panel>
|
<Accordion.Panel>
|
||||||
<List>
|
{...listItems}
|
||||||
{item.details.map((detail) => (
|
|
||||||
<List.Item>
|
|
||||||
<Text>
|
|
||||||
{detail.title}
|
|
||||||
</Text>
|
|
||||||
<List>
|
|
||||||
{detail.subtitles.map((subtitle) => (
|
|
||||||
<List.Item>
|
|
||||||
<Text c={'dimmed'} size="sm">
|
|
||||||
{subtitle}
|
|
||||||
</Text>
|
|
||||||
</List.Item>
|
|
||||||
))}
|
|
||||||
</List>
|
|
||||||
</List.Item>
|
|
||||||
))}
|
|
||||||
</List>
|
|
||||||
<Space h={'md'} />
|
|
||||||
<Flex gap={'md'} wrap={'wrap'} justify="flex-start"
|
|
||||||
align="flex-start">
|
|
||||||
{item.downloads.map((download) => (
|
|
||||||
<Button color={download.color} radius={'md'} component="a" disabled={download.url == '' || download.url == null} href={download.url}>
|
|
||||||
{download.platform}
|
|
||||||
</Button>
|
|
||||||
))}
|
|
||||||
</Flex>
|
|
||||||
</Accordion.Panel>
|
</Accordion.Panel>
|
||||||
</Accordion.Item>
|
</Accordion.Item>
|
||||||
)
|
);
|
||||||
})
|
});
|
||||||
|
|
||||||
const date = new Date()
|
const [opened, setOpened] = useState(false);
|
||||||
|
|
||||||
|
const date = new Date();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<MantineProvider theme={theme} forceColorScheme={date.getHours() >= 7 && date.getHours() <= 19 ? "light" : "dark"}>
|
<MantineProvider theme={theme} forceColorScheme={date.getHours() >= 7 && date.getHours() <= 19 ? "light" : "dark"}>
|
||||||
<Container my={'xl'}>
|
<Container>
|
||||||
<Stack>
|
<Flex align={'center'} justify={'center'} h={'100vh'}>
|
||||||
<Anchor href='https://twitter.com/antique_codes' ta={'center'} target='_blank'>
|
<Stack>
|
||||||
@antique_codes
|
<Anchor href='https://twitter.com/antique_codes' ta={'center'} target='_blank'>
|
||||||
</Anchor>
|
@antique_codes
|
||||||
<Title order={1} ta={'center'}>
|
</Anchor>
|
||||||
Sudachi, a Nintendo Switch emulator
|
<Title order={1} ta={'center'}>
|
||||||
</Title>
|
Sudachi, a Nintendo Switch emulator
|
||||||
<Text c={'dimmed'} ta={'center'}>
|
</Title>
|
||||||
Nintendo Switch emulation without the iffy bits and support for more games
|
<Text c={'dimmed'} ta={'center'}>
|
||||||
</Text>
|
Nintendo Switch emulation without the iffy bits and support for more games
|
||||||
<Title order={2}>
|
</Text>
|
||||||
Changes
|
<Flex align={'center'} justify={'center'}>
|
||||||
</Title>
|
<Group ta={'center'}>
|
||||||
<Accordion radius={'lg'} variant="contained">
|
<Button component="a" href="https://drive.google.com/file/d/1L_gb5v22wgxhNAOWasEAIwZm2WRvXKxE/view?usp=sharing" color="green" radius={'xl'} variant="filled">Android</Button>
|
||||||
{items}
|
<Menu opened={opened} onChange={setOpened}>
|
||||||
</Accordion>
|
<Menu.Target>
|
||||||
</Stack>
|
<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) }} />}>
|
||||||
|
iPad
|
||||||
|
</Menu.Item>
|
||||||
|
<Menu.Item leftSection={<IconDeviceMobile style={{ width: rem(14), height: rem(14) }} />}>
|
||||||
|
iPhone
|
||||||
|
</Menu.Item>
|
||||||
|
<Menu.Divider />
|
||||||
|
<Menu.Label>macOS</Menu.Label>
|
||||||
|
<Menu.Item leftSection={<IconDeviceLaptop style={{ width: rem(14), height: rem(14) }} />} disabled>
|
||||||
|
Apple Silicon
|
||||||
|
</Menu.Item>
|
||||||
|
<Menu.Item leftSection={<IconDeviceLaptop style={{ width: rem(14), height: rem(14) }} />} disabled>
|
||||||
|
Intel
|
||||||
|
</Menu.Item>
|
||||||
|
<Menu.Divider />
|
||||||
|
<Menu.Label>visionOS</Menu.Label>
|
||||||
|
<Menu.Item leftSection={<IconCardboards style={{ width: rem(14), height: rem(14) }} />} disabled>
|
||||||
|
Apple Vision Pro
|
||||||
|
</Menu.Item>
|
||||||
|
</Menu.Dropdown>
|
||||||
|
</Menu>
|
||||||
|
<Button color="orange" radius={'xl'} variant="filled" disabled>Linux</Button>
|
||||||
|
<Button color="blue" component="a" href="https://drive.google.com/file/d/1bMWQtBkQwU7_oPjL0NGllOOMVyS_YV4j/view?usp=sharing" radius={'xl'} variant="filled">Windows</Button>
|
||||||
|
<Button color="gray" component="a" href="https://drive.google.com/file/d/149zdnytWES7-2f8SpXuceVBz--xKgp2c/view?usp=sharing" radius={'xl'} variant="filled">Source Code</Button>
|
||||||
|
</Group>
|
||||||
|
</Flex>
|
||||||
|
<Title order={2}>
|
||||||
|
Changes
|
||||||
|
</Title>
|
||||||
|
<Accordion classNames={classes} radius={'md'} variant="contained">
|
||||||
|
{items}
|
||||||
|
</Accordion>
|
||||||
|
<Text c={'red'}>
|
||||||
|
Please backup and delete all folders within the Sudachi directory, this will fix the downloadable content and updates issue
|
||||||
|
</Text>
|
||||||
|
</Stack>
|
||||||
|
</Flex>
|
||||||
</Container>
|
</Container>
|
||||||
</MantineProvider>
|
</MantineProvider>
|
||||||
)
|
);
|
||||||
}*/
|
}
|
||||||
|
|
|
@ -2,6 +2,6 @@ import { createTheme } from "@mantine/core";
|
||||||
import { themeToVars } from "@mantine/vanilla-extract";
|
import { themeToVars } from "@mantine/vanilla-extract";
|
||||||
|
|
||||||
export const theme = createTheme({
|
export const theme = createTheme({
|
||||||
primaryColor: 'green'
|
primaryColor: 'violet'
|
||||||
});
|
});
|
||||||
export const vars = themeToVars(theme);
|
export const vars = themeToVars(theme);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue