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
+
Other platforms |
@@ -39,7 +40,7 @@ The Citra updater provides a easy interface to install, update and manage Citra.
@@ -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) {