Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ihabunek committed Sep 2, 2024
1 parent 7a8efb7 commit 2cd618c
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ twitch-dl changelog

<!-- Do not edit. This file is automatically generated from changelog.yaml.-->

### [2.6.0 (2024-08-30)](https://github.com/ihabunek/twitch-dl/releases/tag/2.6.0)

* Add `chat` command for rendering twitch chat as a video which can then be
embedded into a downloaded stream using ffmpeg.

### [2.5.0 (2024-08-30)](https://github.com/ihabunek/twitch-dl/releases/tag/2.5.0)

* Add support for HD video qualities (#163)
Expand Down
6 changes: 6 additions & 0 deletions changelog.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2.6.0:
date: 2024-08-30
changes:
- Add `chat` command for rendering twitch chat as a video which can then be
embedded into a downloaded stream using ffmpeg.

2.5.0:
date: 2024-08-30
changes:
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ twitch-dl changelog

<!-- Do not edit. This file is automatically generated from changelog.yaml.-->

### [2.6.0 (2024-08-30)](https://github.com/ihabunek/twitch-dl/releases/tag/2.6.0)

* Add `chat` command for rendering twitch chat as a video which can then be
embedded into a downloaded stream using ffmpeg.

### [2.5.0 (2024-08-30)](https://github.com/ihabunek/twitch-dl/releases/tag/2.5.0)

* Add support for HD video qualities (#163)
Expand Down
15 changes: 15 additions & 0 deletions docs/commands/chat.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,21 @@ twitch-dl chat [OPTIONS] ID
<td class="code">--pad-y INTEGER</td>
<td>Vertical padding [default: <code>5</code>]</td>
</tr>

<tr>
<td class="code">-o, --output TEXT</td>
<td>Output file name template. See docs for details. [default: <code>chat_{id}.{format}</code>]</td>
</tr>

<tr>
<td class="code">-f, --format TEXT</td>
<td>Video format to convert into, passed to ffmpeg as the target file extension. [default: <code>mp4</code>]</td>
</tr>

<tr>
<td class="code">--overwrite</td>
<td>Overwrite the target file if it already exists without prompting.</td>
</tr>
</tbody>
</table>

Expand Down
2 changes: 1 addition & 1 deletion scripts/generate_changelog
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ print()

for version in data.keys():
date = data[version]["date"]
changes = data[version]["changes"]
changes = data[version].get("changes", [])
print(f"### [{version} ({date})](https://github.com/ihabunek/twitch-dl/releases/tag/{version})")
print()

Expand Down

0 comments on commit 2cd618c

Please sign in to comment.