Skip to content

Commit 28a8eb1

Browse files
committed
Added link to source code archive
1 parent 9293106 commit 28a8eb1

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

src/App.tsx

+14-6
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ export default function App() {
3030
}
3131
]
3232
}
33-
]
33+
],
34+
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.9/latest.zip'
3435
},
3536
{
3637
text: 'v1.0.8',
@@ -60,7 +61,8 @@ export default function App() {
6061
}
6162
]
6263
}
63-
]
64+
],
65+
url: ''
6466
},
6567
{
6668
text: 'v1.0.7',
@@ -91,7 +93,8 @@ export default function App() {
9193
}
9294
]
9395
}
94-
]
96+
],
97+
url: ''
9598
}
9699
];
97100

@@ -117,9 +120,14 @@ export default function App() {
117120
{detailItems}
118121
</List>
119122
<Space h={'md'} />
120-
<Button component="a" disabled={detail.download == '' || detail.download == null} href={detail.download} radius={'md'} size="sm">
121-
Download
122-
</Button>
123+
<Group>
124+
<Button component="a" disabled={detail.download == '' || detail.download == null} href={detail.download} radius={'md'} size="sm">
125+
Download
126+
</Button>
127+
<Button color="gray" component="a" disabled={item.url == '' || item.url == null} href={item.url} radius={'md'} size="sm">
128+
Source Code
129+
</Button>
130+
</Group>
123131
<Space h={detail.last ? 0 : 'md'} />
124132
</>
125133
);

0 commit comments

Comments
 (0)