Bump version, update changelog and readme

This commit is contained in:
Ivan Habunek 2020-08-07 16:37:37 +02:00
parent 8222df3670
commit f456d04de6
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
3 changed files with 23 additions and 1 deletions

View File

@ -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)
------------------

View File

@ -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
--------

View File

@ -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',