diff --git a/components/Settings/Crunchyroll.vue b/components/Settings/Crunchyroll.vue index 8271da6..6c349ec 100644 --- a/components/Settings/Crunchyroll.vue +++ b/components/Settings/Crunchyroll.vue @@ -26,13 +26,13 @@ - - - - - - - + + + + + +
Fallback to non-drm stream if no widevine key provided
diff --git a/components/Settings/Main.vue b/components/Settings/Main.vue index 5ba6781..d848b62 100644 --- a/components/Settings/Main.vue +++ b/components/Settings/Main.vue @@ -113,7 +113,8 @@ const locales = ref>([ { locale: 'th-TH', name: 'TH' }, { locale: 'vi-VN', name: 'VI' }, { locale: 'id-ID', name: 'ID' }, - { locale: 'ko-KR', name: 'KO' } + { locale: 'ko-KR', name: 'KO' }, + { locale: 'zh-CN', name: 'CN' }, ]) const selectedVideoQuality = ref() diff --git a/pages/addanime.vue b/pages/addanime.vue index 94df0f7..7c9f297 100644 --- a/pages/addanime.vue +++ b/pages/addanime.vue @@ -387,7 +387,8 @@ const locales = ref>([ { locale: 'th-TH', name: 'TH' }, { locale: 'vi-VN', name: 'VI' }, { locale: 'id-ID', name: 'ID' }, - { locale: 'ko-KR', name: 'KO' } + { locale: 'ko-KR', name: 'KO' }, + { locale: 'zh-CN', name: 'CN' }, ]) const isProduction = process.env.NODE_ENV !== 'development' diff --git a/src/api/routes/crunchyroll/crunchyroll.service.ts b/src/api/routes/crunchyroll/crunchyroll.service.ts index ede9bcd..87b4d41 100644 --- a/src/api/routes/crunchyroll/crunchyroll.service.ts +++ b/src/api/routes/crunchyroll/crunchyroll.service.ts @@ -372,38 +372,38 @@ export async function crunchyGetPlaylist(q: string, geo: string | undefined) { name: 'Edge', url: `/web/edge/play` }, + // { + // id: 7, + // name: 'Safari', + // url: `/web/safari/play` + // }, { id: 7, - name: 'Safari', - url: `/web/safari/play` - }, - { - id: 8, name: 'Chrome', url: `/web/chrome/play` }, { - id: 9, + id: 8, name: 'Web Fallback', url: `/web/fallback/play` }, + // { + // id: 10, + // name: 'Iphone', + // url: `/ios/iphone/play` + // }, + // { + // id: 11, + // name: 'Ipad', + // url: `/ios/ipad/play` + // }, { - id: 10, - name: 'Iphone', - url: `/ios/iphone/play` - }, - { - id: 11, - name: 'Ipad', - url: `/ios/ipad/play` - }, - { - id: 12, + id: 9, name: 'Android', url: `/android/phone/play` }, { - id: 13, + id: 10, name: 'Samsung TV', url: `/tv/samsung/play` }