diff --git a/CHANGELOG.md b/CHANGELOG.md index ad4b3a9..5562395 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Twitch Downloader change log ============================ +1.10.0 (2020-08-07) +------------------- + +* Add `--quality` option to `download` command, allows specifying the video + quality to download. In this case, twitch-dl will require no user input. (#22) +* Fix download of clips which contain numbers in their slug (#24) +* Fix URL to video displayed by `videos` command (it was missing /videos/) + 1.9.0 (2020-06-10) ------------------ diff --git a/README.md b/README.md index 55dfe7e..98fdec2 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,12 @@ twitch-dl download 221837124 twitch-dl download https://www.twitch.tv/videos/221837124 ``` +Specify video quality to download: + +``` +twitch-dl download -q 720p 221837124 +``` + Download a clip by slug or URL: ``` @@ -69,6 +75,14 @@ twitch-dl download VenomousTameWormHumbleLife twitch-dl download https://www.twitch.tv/bananasaurus_rex/clip/VenomousTameWormHumbleLife ``` +Specify clip quality to download: + +``` +twitch-dl download -q 720 VenomousTameWormHumbleLife +``` + +Note that twitch names for clip qualities have no trailing "p". + Man page -------- diff --git a/setup.py b/setup.py index c8d3aca..fd8b82c 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ makes it faster. setup( name='twitch-dl', - version='1.9.0', + version='1.10.0', description='Twitch downloader', long_description=long_description.strip(), author='Ivan Habunek',