mirror of
https://github.com/ihabunek/twitch-dl
synced 2024-08-30 18:32:25 +00:00
Update changelog
This commit is contained in:
parent
8be0aba95d
commit
c8d38b5512
12
CHANGELOG.md
12
CHANGELOG.md
@ -5,12 +5,16 @@ twitch-dl changelog
|
|||||||
|
|
||||||
### [2.0.0 (TBA)](https://github.com/ihabunek/twitch-dl/releases/tag/2.0.0)
|
### [2.0.0 (TBA)](https://github.com/ihabunek/twitch-dl/releases/tag/2.0.0)
|
||||||
|
|
||||||
* Switch from `requests` to `httpx` for making http requests, this enables using
|
This release switches from using `requests` to `httpx` for making http requests,
|
||||||
asyncio for concurrency. No breaking changes.
|
and from threads to `asyncio` for concurrency. This enables easier
|
||||||
* Better progress meter, updates on each chunk downloaded, instead of after each
|
implementation of new features, but has no breaking changes for the CLI.
|
||||||
VOD downloaded.
|
|
||||||
* Add `--rate-limit` option to `download` for limiting maximum bandwith when
|
* Add `--rate-limit` option to `download` for limiting maximum bandwith when
|
||||||
downloading.
|
downloading.
|
||||||
|
* Improved progress meter, updates on each chunk downloaded, instead of each VOD
|
||||||
|
downloaded.
|
||||||
|
* Improved speed estimate, displays recent speed instead of average speed since
|
||||||
|
the start of download.
|
||||||
|
|
||||||
### [1.22.0 (2022-06-25)](https://github.com/ihabunek/twitch-dl/releases/tag/1.22.0)
|
### [1.22.0 (2022-06-25)](https://github.com/ihabunek/twitch-dl/releases/tag/1.22.0)
|
||||||
|
|
||||||
|
@ -1,9 +1,14 @@
|
|||||||
2.0.0:
|
2.0.0:
|
||||||
date: "TBA"
|
date: "TBA"
|
||||||
|
description: |
|
||||||
|
This release switches from using `requests` to `httpx` for making http
|
||||||
|
requests, and from threads to `asyncio` for concurrency. This enables
|
||||||
|
easier implementation of new features, but has no breaking changes for the
|
||||||
|
CLI.
|
||||||
changes:
|
changes:
|
||||||
- "Switch from `requests` to `httpx` for making http requests, this enables using asyncio for concurrency. No breaking changes."
|
|
||||||
- "Better progress meter, updates on each chunk downloaded, instead of after each VOD downloaded."
|
|
||||||
- "Add `--rate-limit` option to `download` for limiting maximum bandwith when downloading."
|
- "Add `--rate-limit` option to `download` for limiting maximum bandwith when downloading."
|
||||||
|
- "Improved progress meter, updates on each chunk downloaded, instead of each VOD downloaded."
|
||||||
|
- "Improved speed estimate, displays recent speed instead of average speed since the start of download."
|
||||||
|
|
||||||
1.22.0:
|
1.22.0:
|
||||||
date: 2022-06-25
|
date: 2022-06-25
|
||||||
|
@ -3,6 +3,21 @@ twitch-dl changelog
|
|||||||
|
|
||||||
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
||||||
|
|
||||||
|
### [2.0.0 (TBA)](https://github.com/ihabunek/twitch-dl/releases/tag/2.0.0)
|
||||||
|
|
||||||
|
This release switches from using `requests` to `httpx` for making http
|
||||||
|
requests, and from threads to `asyncio` for concurrency. This enables
|
||||||
|
easier implementation of new features, but has no breaking changes for the
|
||||||
|
CLI.
|
||||||
|
|
||||||
|
|
||||||
|
* Add `--rate-limit` option to `download` for limiting maximum bandwith when
|
||||||
|
downloading.
|
||||||
|
* Improved progress meter, updates on each chunk downloaded, instead of each VOD
|
||||||
|
downloaded.
|
||||||
|
* Improved speed estimate, displays recent speed instead of average speed since
|
||||||
|
the start of download.
|
||||||
|
|
||||||
### [1.22.0 (2022-06-25)](https://github.com/ihabunek/twitch-dl/releases/tag/1.22.0)
|
### [1.22.0 (2022-06-25)](https://github.com/ihabunek/twitch-dl/releases/tag/1.22.0)
|
||||||
|
|
||||||
* Add support for downloading subscriber-only VODs (#48, thanks @cemiu)
|
* Add support for downloading subscriber-only VODs (#48, thanks @cemiu)
|
||||||
|
Loading…
Reference in New Issue
Block a user