From b4e388409c7bdf39dd26d549ed31a1d93af526e8 Mon Sep 17 00:00:00 2001 From: Alex Shnitman Date: Fri, 4 Oct 2024 08:51:23 +0300 Subject: [PATCH] add 2160p (closes #11) --- ui/src/app/formats.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/src/app/formats.ts b/ui/src/app/formats.ts index b8b1d28..0e283dd 100644 --- a/ui/src/app/formats.ts +++ b/ui/src/app/formats.ts @@ -15,6 +15,7 @@ export const Formats: Format[] = [ text: 'Any', qualities: [ { id: 'best', text: 'Best' }, + { id: '2160', text: '2160p' }, { id: '1440', text: '1440p' }, { id: '1080', text: '1080p' }, { id: '720', text: '720p' }, @@ -28,6 +29,7 @@ export const Formats: Format[] = [ qualities: [ { id: 'best', text: 'Best' }, { id: 'best_ios', text: 'Best (iOS)' }, + { id: '2160', text: '2160p' }, { id: '1440', text: '1440p' }, { id: '1080', text: '1080p' }, { id: '720', text: '720p' },