aboutsummaryrefslogtreecommitdiffhomepage
path: root/build.html
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2024-03-11 22:41:06 +0300
committerlevlam <levlam@telegram.org>2024-03-11 22:41:06 +0300
commit23c7a6caee1f9ec4c137048359bbd415927f1e22 (patch)
tree9b324ec06e9cd0ba122287987ac36847f784822a /build.html
parentd326e32a84472495337570c115d5a4004d76b03d (diff)
Improve visionOS support.
Diffstat (limited to 'build.html')
-rw-r--r--build.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.html b/build.html
index b45ed8142..b3829c87a 100644
--- a/build.html
+++ b/build.html
@@ -368,10 +368,10 @@ function getSupportedOs(language) {
case 'C#':
return ['Windows (through C++/CLI)', 'Universal Windows Platform (through C++/CX)', 'Windows (.NET Core)', 'Linux (.NET Core)', 'macOS (.NET Core)', 'FreeBSD (.NET Core)'];
case 'Dart':
- return ['Android', 'iOS', 'Windows', 'Linux', 'macOS', 'tvOS', 'watchOS'];
+ return ['Android', 'iOS', 'Windows', 'Linux', 'macOS', 'tvOS', 'visionOS', 'watchOS'];
case 'Swift':
case 'Objective-C':
- return ['Windows', 'Linux', 'macOS', 'iOS', 'tvOS', 'watchOS'];
+ return ['Windows', 'Linux', 'macOS', 'iOS', 'tvOS', 'visionOS', 'watchOS'];
default:
return ['Windows', 'Linux', 'macOS', 'FreeBSD', 'OpenBSD', 'NetBSD'];
}
@@ -474,7 +474,7 @@ function getTarget(language, os) {
if (os.includes('Android')) {
return 'Android';
}
- if (os.includes('iOS') || os.includes('tvOS') || os.includes('watchOS')) {
+ if (os.includes('iOS') || os.includes('tvOS') || os.includes('visionOS') || os.includes('watchOS')) {
return 'iOS';
}