mirror of
https://github.com/ihabunek/twitch-dl
synced 2024-08-30 18:32:25 +00:00
Bump version, update changelog and readme
This commit is contained in:
parent
8222df3670
commit
f456d04de6
@ -1,6 +1,14 @@
|
|||||||
Twitch Downloader change log
|
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)
|
1.9.0 (2020-06-10)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
14
README.md
14
README.md
@ -62,6 +62,12 @@ twitch-dl download 221837124
|
|||||||
twitch-dl download https://www.twitch.tv/videos/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:
|
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
|
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
|
Man page
|
||||||
--------
|
--------
|
||||||
|
|
||||||
|
2
setup.py
2
setup.py
@ -11,7 +11,7 @@ makes it faster.
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='twitch-dl',
|
name='twitch-dl',
|
||||||
version='1.9.0',
|
version='1.10.0',
|
||||||
description='Twitch downloader',
|
description='Twitch downloader',
|
||||||
long_description=long_description.strip(),
|
long_description=long_description.strip(),
|
||||||
author='Ivan Habunek',
|
author='Ivan Habunek',
|
||||||
|
Loading…
Reference in New Issue
Block a user