mirror of
https://github.com/emuplace/sudachi.emuplace.app.git
synced 2024-11-23 19:04:32 +01:00
Added link to source code archive
This commit is contained in:
parent
9293106723
commit
28a8eb1370
20
src/App.tsx
20
src/App.tsx
@ -30,7 +30,8 @@ export default function App() {
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
],
|
||||
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.9/latest.zip'
|
||||
},
|
||||
{
|
||||
text: 'v1.0.8',
|
||||
@ -60,7 +61,8 @@ export default function App() {
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
],
|
||||
url: ''
|
||||
},
|
||||
{
|
||||
text: 'v1.0.7',
|
||||
@ -91,7 +93,8 @@ export default function App() {
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
],
|
||||
url: ''
|
||||
}
|
||||
];
|
||||
|
||||
@ -117,9 +120,14 @@ export default function App() {
|
||||
{detailItems}
|
||||
</List>
|
||||
<Space h={'md'} />
|
||||
<Button component="a" disabled={detail.download == '' || detail.download == null} href={detail.download} radius={'md'} size="sm">
|
||||
Download
|
||||
</Button>
|
||||
<Group>
|
||||
<Button component="a" disabled={detail.download == '' || detail.download == null} href={detail.download} radius={'md'} size="sm">
|
||||
Download
|
||||
</Button>
|
||||
<Button color="gray" component="a" disabled={item.url == '' || item.url == null} href={item.url} radius={'md'} size="sm">
|
||||
Source Code
|
||||
</Button>
|
||||
</Group>
|
||||
<Space h={detail.last ? 0 : 'md'} />
|
||||
</>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user