diff options
author | Alex Shnitman <alexta69@gmail.com> | 2021-03-04 11:10:39 +0200 |
---|---|---|
committer | Alex Shnitman <alexta69@gmail.com> | 2021-03-04 11:10:39 +0200 |
commit | 52d8d64cb5355df319d6b70805044681ec8f4e22 (patch) | |
tree | 8a16d0d6a14e096ba7fcf4a1fd98b56419e1b636 /ui/src | |
parent | upgrade dependencies (diff) | |
download | metube-52d8d64cb5355df319d6b70805044681ec8f4e22.tar.gz metube-52d8d64cb5355df319d6b70805044681ec8f4e22.tar.bz2 metube-52d8d64cb5355df319d6b70805044681ec8f4e22.zip |
add audio-only download (closes #20)
Diffstat (limited to 'ui/src')
-rw-r--r-- | ui/src/app/app.component.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/src/app/app.component.ts b/ui/src/app/app.component.ts index 8202b4d..cc8ceb2 100644 --- a/ui/src/app/app.component.ts +++ b/ui/src/app/app.component.ts @@ -16,7 +16,8 @@ export class AppComponent implements AfterViewInit { {id: "1440p", text: "1440p"}, {id: "1080p", text: "1080p"}, {id: "720p", text: "720p"}, - {id: "480p", text: "480p"} + {id: "480p", text: "480p"}, + {id: "audio", text: "Audio only"} ]; quality: string = "best"; addInProgress = false; |