mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
feat: External Players - add visionos (Vision Pro) as a platform and moonplayer url scheme
Signed-off-by: Lachezar Lechev <lachezar@ambire.com>
This commit is contained in:
parent
8fb85f9c67
commit
8d18820ca1
1 changed files with 9 additions and 4 deletions
|
|
@ -44,7 +44,7 @@ const EXTERNAL_PLAYERS = [
|
|||
{
|
||||
label: 'EXTERNAL_PLAYER_DISABLED',
|
||||
value: null,
|
||||
platforms: ['ios', 'android', 'windows', 'linux', 'macos'],
|
||||
platforms: ['ios', 'visionos', 'android', 'windows', 'linux', 'macos'],
|
||||
},
|
||||
{
|
||||
label: 'EXTERNAL_PLAYER_ALLOW_CHOOSING',
|
||||
|
|
@ -54,7 +54,7 @@ const EXTERNAL_PLAYERS = [
|
|||
{
|
||||
label: 'VLC',
|
||||
value: 'vlc',
|
||||
platforms: ['ios', 'android'],
|
||||
platforms: ['ios', 'visionos', 'android'],
|
||||
},
|
||||
{
|
||||
label: 'MPV',
|
||||
|
|
@ -79,12 +79,17 @@ const EXTERNAL_PLAYERS = [
|
|||
{
|
||||
label: 'Outplayer',
|
||||
value: 'outplayer',
|
||||
platforms: ['ios'],
|
||||
platforms: ['ios', 'visionos'],
|
||||
},
|
||||
{
|
||||
label: 'Moonplayer',
|
||||
value: 'moonplayer',
|
||||
platforms: ['visionos'],
|
||||
},
|
||||
{
|
||||
label: 'M3U Playlist',
|
||||
value: 'm3u',
|
||||
platforms: ['ios', 'android', 'windows', 'linux', 'macos'],
|
||||
platforms: ['ios', 'visionos', 'android', 'windows', 'linux', 'macos'],
|
||||
},
|
||||
];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue