Update changelog

This commit is contained in:
Ivan Habunek 2022-08-17 10:57:18 +02:00
parent 8be0aba95d
commit c8d38b5512
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
3 changed files with 30 additions and 6 deletions

View File

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

View File

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

View File

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