Update informations about macOS

This commit is contained in:
Mary 2021-03-07 10:27:55 +01:00
parent 2fc2554aa0
commit 8d32bb2883
4 changed files with 13 additions and 7 deletions

View file

@ -3,7 +3,7 @@ module.exports = {
siteUrl: 'https://ryujinx.org', siteUrl: 'https://ryujinx.org',
titleTemplate: 'Ryujinx - %s', titleTemplate: 'Ryujinx - %s',
metadata: { metadata: {
siteDescription: "Ryujinx is an open source Nintendo Switch emulator written in C# for Windows, Linux and OSX.", siteDescription: "Ryujinx is an open source Nintendo Switch emulator written in C# for Windows, Linux and macOS.",
siteKeywords: [ siteKeywords: [
"ryujinx", "ryujinx",
"switch", "switch",

View file

@ -1,8 +1,8 @@
<template> <template>
<v-tooltip top> <v-tooltip top :disabled="valid">
<template v-slot:activator="{ on }"> <template v-slot:activator="{ on }">
<div v-on="on" class="d-inline-block">
<v-btn <v-btn
v-on="on"
class="mx-2" class="mx-2"
dark dark
:color="`ryu_${color}`" :color="`ryu_${color}`"
@ -10,10 +10,12 @@
rel="noopener" rel="noopener"
:loading="loading" :loading="loading"
:href="href" :href="href"
:disabled="disabled"
@click.once="click" @click.once="click"
> >
<v-icon class="mx-5">fab fa-{{ platform }}</v-icon> <v-icon class="mx-5">fab fa-{{ platform }}</v-icon>
</v-btn> </v-btn>
</div>
</template> </template>
<span>{{ version }}</span> <span>{{ version }}</span>
</v-tooltip> </v-tooltip>
@ -27,7 +29,8 @@ export default {
loading: Boolean, loading: Boolean,
href: String, href: String,
version: String, version: String,
click: Function click: Function,
disabled: Boolean
} }
} }
</script> </script>

View file

@ -40,6 +40,7 @@
:href="`${downloadURL}-win_x64.zip`" :href="`${downloadURL}-win_x64.zip`"
:click="trackDownload" :click="trackDownload"
:loading="isLoading" :loading="isLoading"
:disabled="false"
/> />
<DownloadButton <DownloadButton
@ -49,15 +50,17 @@
:href="`${downloadURL}-linux_x64.tar.gz`" :href="`${downloadURL}-linux_x64.tar.gz`"
:click="trackDownload" :click="trackDownload"
:loading="isLoading" :loading="isLoading"
:disabled="false"
/> />
<DownloadButton <DownloadButton
color="orange" color="orange"
platform="apple" platform="apple"
:version="version" :version="macos_notice"
:href="`${downloadURL}-osx_x64.zip`" :href="`${downloadURL}-osx_x64.zip`"
:click="trackDownload" :click="trackDownload"
:loading="isLoading" :loading="isLoading"
:disabled="true"
/> />
<p class="mt-4"> <p class="mt-4">
@ -109,7 +112,7 @@ export default {
downloadURL: "", downloadURL: "",
isLoading: true, isLoading: true,
version: "Loading ...", version: "Loading ...",
showProfiledBuilds: false, macos_notice: "Currently not supported (Support planned)",
jobId_profiled: "" jobId_profiled: ""
}; };
}, },

View file

@ -113,7 +113,7 @@
</v-card-title> </v-card-title>
<v-card-text <v-card-text
class="text-center" class="text-center"
>Ryujinx is currently available for Windows, Linux, and macOS.</v-card-text> >Ryujinx is currently available for Windows and Linux (macOS support is planned).</v-card-text>
</v-card> </v-card>
</v-col> </v-col>
<v-col cols="12" md="4"> <v-col cols="12" md="4">