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
4db4285d9a
commit
d85aeade86
@ -3,10 +3,13 @@ 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.4.0 (TBA)](https://github.com/ihabunek/twitch-dl/releases/tag/2.4.0)
|
### [2.4.0 (2024-08-30)](https://github.com/ihabunek/twitch-dl/releases/tag/2.4.0)
|
||||||
|
|
||||||
* Add `clips --target-dir` option. Use in conjunction with `--download` to
|
* Add `clips --target-dir` option. Use in conjunction with `--download` to
|
||||||
specify target directory.
|
specify target directory.
|
||||||
|
* Fix a crash when downloading clips (#160)
|
||||||
|
* Handle video URLs which contain the channel name (#162)
|
||||||
|
* Don't stop downloading clips if one download fails
|
||||||
|
|
||||||
### [2.3.1 (2024-05-19)](https://github.com/ihabunek/twitch-dl/releases/tag/2.3.1)
|
### [2.3.1 (2024-05-19)](https://github.com/ihabunek/twitch-dl/releases/tag/2.3.1)
|
||||||
|
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
2.4.0:
|
2.4.0:
|
||||||
date: TBA
|
date: 2024-08-30
|
||||||
changes:
|
changes:
|
||||||
- "Add `clips --target-dir` option. Use in conjunction with `--download` to specify target directory."
|
- "Add `clips --target-dir` option. Use in conjunction with `--download` to specify target directory."
|
||||||
- "Fix a crash when downloading clips (#160)"
|
- "Fix a crash when downloading clips (#160)"
|
||||||
|
- "Handle video URLs which contain the channel name (#162)"
|
||||||
|
- "Don't stop downloading clips if one download fails"
|
||||||
|
|
||||||
2.3.1:
|
2.3.1:
|
||||||
date: 2024-05-19
|
date: 2024-05-19
|
||||||
|
@ -3,6 +3,14 @@ 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.4.0 (2024-08-30)](https://github.com/ihabunek/twitch-dl/releases/tag/2.4.0)
|
||||||
|
|
||||||
|
* Add `clips --target-dir` option. Use in conjunction with `--download` to
|
||||||
|
specify target directory.
|
||||||
|
* Fix a crash when downloading clips (#160)
|
||||||
|
* Handle video URLs which contain the channel name (#162)
|
||||||
|
* Don't stop downloading clips if one download fails
|
||||||
|
|
||||||
### [2.3.1 (2024-05-19)](https://github.com/ihabunek/twitch-dl/releases/tag/2.3.1)
|
### [2.3.1 (2024-05-19)](https://github.com/ihabunek/twitch-dl/releases/tag/2.3.1)
|
||||||
|
|
||||||
* Fix fetching access token (#155, thanks @KryptonicDragon)
|
* Fix fetching access token (#155, thanks @KryptonicDragon)
|
||||||
|
@ -43,6 +43,11 @@ twitch-dl clips [OPTIONS] CHANNEL_NAME
|
|||||||
<td>Period from which to return clips Possible values: <code>last_day</code>, <code>last_week</code>, <code>last_month</code>, <code>all_time</code>. [default: <code>all_time</code>]</td>
|
<td>Period from which to return clips Possible values: <code>last_day</code>, <code>last_week</code>, <code>last_month</code>, <code>all_time</code>. [default: <code>all_time</code>]</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td class="code">-t, --target-dir</td>
|
||||||
|
<td>Target directory when downloading clips [default: <code>.</code>]</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class="code">--json</td>
|
<td class="code">--json</td>
|
||||||
<td>Print data as JSON rather than human readable text</td>
|
<td>Print data as JSON rather than human readable text</td>
|
||||||
|
Loading…
Reference in New Issue
Block a user