diff --git a/src/components/Build.vue b/src/components/Build.vue index ffe6623..bf6ba96 100644 --- a/src/components/Build.vue +++ b/src/components/Build.vue @@ -24,15 +24,47 @@

Automatically compiled builds

- - fas fa-download - Download for fab fa-windows ({{ version }}) - + + + fab fa-windows + + {{ this.version }} + + + + fab fa-linux + + {{ this.version }} + + + + fab fa-apple + + {{ this.version }} +

- OpenAL is required for Ryujinx to work! + OpenAL is required for Ryujinx to work on Windows!

@@ -66,7 +98,7 @@ export default { let _a = await fetch(`https://ci.appveyor.com/api/buildjobs/${jobId}/artifacts`); json = await _a.json(); - this.downloadURL = `https://ci.appveyor.com/api/buildjobs/${jobId}/artifacts/${json[0].fileName}`; + this.downloadURL = `https://ci.appveyor.com/api/buildjobs/${jobId}/artifacts/ryujinx-${this.version}`; } },