Add uploader downloads for Windows macOS Linux
This commit is contained in:
@@ -250,6 +250,41 @@ export default function MobileEventPhotoboothPage() {
|
||||
</Text>
|
||||
</MobileCard>
|
||||
|
||||
<MobileCard space="$2">
|
||||
<Text fontSize="$sm" fontWeight="700" color={text}>
|
||||
{t('photobooth.uploaderDownload.title', 'Fotospiel Uploader App')}
|
||||
</Text>
|
||||
<Text fontSize="$xs" color={muted}>
|
||||
{t(
|
||||
'photobooth.uploaderDownload.description',
|
||||
'Die Fotospiel Uploader App ist verpflichtend, damit Uploads stabil laufen, die Zugangsdaten geschützt bleiben und keine Dateien verloren gehen.'
|
||||
)}
|
||||
</Text>
|
||||
<CTAButton
|
||||
label={t('photobooth.uploaderDownload.actionWindows', 'Uploader herunterladen (Windows)')}
|
||||
onPress={() => {
|
||||
const url = new URL('/downloads/PhotoboothUploader-win-x64.exe', window.location.origin).toString();
|
||||
window.open(url, '_blank', 'noopener,noreferrer');
|
||||
}}
|
||||
/>
|
||||
<CTAButton
|
||||
label={t('photobooth.uploaderDownload.actionMac', 'Uploader herunterladen (macOS)')}
|
||||
tone="ghost"
|
||||
onPress={() => {
|
||||
const url = new URL('/downloads/PhotoboothUploader-macos-x64', window.location.origin).toString();
|
||||
window.open(url, '_blank', 'noopener,noreferrer');
|
||||
}}
|
||||
/>
|
||||
<CTAButton
|
||||
label={t('photobooth.uploaderDownload.actionLinux', 'Uploader herunterladen (Linux)')}
|
||||
tone="ghost"
|
||||
onPress={() => {
|
||||
const url = new URL('/downloads/PhotoboothUploader-linux-x64', window.location.origin).toString();
|
||||
window.open(url, '_blank', 'noopener,noreferrer');
|
||||
}}
|
||||
/>
|
||||
</MobileCard>
|
||||
|
||||
<MobileCard space="$2">
|
||||
<XStack alignItems="center" justifyContent="space-between">
|
||||
<Text fontSize="$sm" fontWeight="700" color={text}>
|
||||
|
||||
Reference in New Issue
Block a user