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