From f99f1df87776ea376c2577f8300b6b1957f38e58 Mon Sep 17 00:00:00 2001 From: CaptV0rt3x Date: Fri, 22 May 2020 19:58:51 +0530 Subject: [PATCH] Updated Downloads page --- site/content/download.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/site/content/download.md b/site/content/download.md index f967e49..22497f7 100644 --- a/site/content/download.md +++ b/site/content/download.md @@ -16,7 +16,7 @@ The Canary build of Citra is the same as our nightly builds, with additional fea
The Citra updater provides a easy interface to install, update and manage Citra. Unless you know what you are doing, - this is likely what you are looking for. Citra currently does not support Android or iOS, only desktop x64 systems. + this is likely what you are looking for.

@@ -24,12 +24,13 @@ The Citra updater provides a easy interface to install, update and manage Citra. Autodetected platform: XYZ
- Unknown platform - Citra is only supported on 64-bit versions of Windows, macOS, and Linux. + Unknown platform - Citra is only supported on 64-bit versions of Windows, macOS, Linux, and Android 8 (Oreo) or above. If you are running one of these, choose one of the options below.
Download for Windows x64 Download for Mac x64 Download for Linux x64 +Get it on Google Play
Other platforms | @@ -39,7 +40,7 @@ The Citra updater provides a easy interface to install, update and manage Citra.
-

Citra currently does not support Android or iOS.

+

Citra currently does not support iOS.

Back @@ -88,6 +89,7 @@ links to get you started however:
Windows x64 Installer
Mac x64 Installer
Download for Linux x64
+Download for Android
Nightly Builds
Canary Builds
@@ -164,7 +166,7 @@ links to get you started however:
// Attempt autodetection of their operating system var userAgent = navigator.userAgent.toLowerCase(); - var allPlatforms = ["windows", "mac", "linux"]; + var allPlatforms = ["windows", "mac", "linux", "android"]; var os = undefined; if (userAgent.indexOf("windows") !== -1) { @@ -173,6 +175,8 @@ links to get you started however:
os = "Mac"; } else if (userAgent.indexOf("linux") !== -1 && userAgent.indexOf("android") === -1) { os = "Linux"; + } else if (userAgent.indexOf("android") !== -1) { + os = "Android"; } if (os !== undefined) {