Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: halkeye/ytdl-sub

Tags

2024.10.31

Toggle 2024.10.31's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[FEATURE] Multi-url support for YouTube music presets (jmbannon#1113)

Adds support to specify multiple URLs for the YouTube-based music presets. More info here: https://ytdl-sub.readthedocs.io/en/latest/prebuilt_presets/music.html

2024.10.27.post5

Toggle 2024.10.27.post5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[BUGFIX] Move unescape parsing to separate function (jmbannon#1108)

Fixes jmbannon#1107 
```
FunctionRuntimeException: Runtime error occurred when executing the function %from_json: Invalid control character
```

2024.10.27.post3

Toggle 2024.10.27.post3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[FEATURE] Support newlines and tabs in scripting strings (jmbannon#1105)

Allows the usage of `\n` and `\t` in scripting strings

2024.10.27.post2

Toggle 2024.10.27.post2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[BUGFIX] Custom function ordering (jmbannon#1104)

Fixes a bug where custom functions would throw an error if they were used out-of-order from their definition

2024.10.26

Toggle 2024.10.26's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[BUGFIX] Fix playlists not downloading correctly

Due to url ytdl-options not materializing

2024.10.24.post1

Toggle 2024.10.24.post1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[BUILD] Use yt-dlp new default group (jmbannon#1099)

Seen in https://github.com/yt-dlp/yt-dlp/releases/tag/2024.10.22

2024.10.23

Toggle 2024.10.23's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump yt-dlp from 2024.10.7 to 2024.10.22 (jmbannon#1096)

Bumps [yt-dlp](https://github.com/yt-dlp/yt-dlp) from 2024.10.7 to 2024.10.22.
- [Release notes](https://github.com/yt-dlp/yt-dlp/releases)
- [Changelog](https://github.com/yt-dlp/yt-dlp/blob/master/Changelog.md)
- [Commits](yt-dlp/yt-dlp@2024.10.07...2024.10.22)

---
updated-dependencies:
- dependency-name: yt-dlp
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

2024.10.09

Toggle 2024.10.09's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump yt-dlp from 2024.9.27 to 2024.10.7 (jmbannon#1091)

Bumps [yt-dlp](https://github.com/yt-dlp/yt-dlp) from 2024.9.27 to 2024.10.7.
- [Release notes](https://github.com/yt-dlp/yt-dlp/releases)
- [Changelog](https://github.com/yt-dlp/yt-dlp/blob/master/Changelog.md)
- [Commits](yt-dlp/yt-dlp@2024.09.27...2024.10.07)

---
updated-dependencies:
- dependency-name: yt-dlp
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

2024.10.06

Toggle 2024.10.06's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[FEATURE] Override variable support in ytdl_options (jmbannon#1087)

Adds the ability to use override variables in the [ytdl_options](https://ytdl-sub.readthedocs.io/en/latest/config_reference/plugins.html#ytdl-options) section of the config.

2024.10.05.post1

Toggle 2024.10.05.post1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[FEATURE] Filter Keywords prebuilt preset (jmbannon#1086)

Adds ``Filter Keywords``, a preset that can include or exclude media with any of the listed keywords. Both keywords and title/description are lower-cased before filtering.

Supports the following override variables:

* ``title_include_keywords``
* ``title_exclude_keywords``
* ``description_include_keywords``
* ``description_exclude_keywords``

For best usage, use the `~` tilda subscription mode to set a subscription's list override variables.
Tilda mode allows override variables to be set directly underneath it.

```
Plex TV Show by Date | Filter Keywords:
  
  = Documentaries:
    "~NOVA PBS":
       url: "https://www.youtube.com/@novapbs"
       title_exclude_keywords:
         - "preview"
         - "trailer"  

    "~To Catch a Smuggler":
       url: "https://www.youtube.com/@NatGeo"
       title_include_keywords:
         - "To Catch a Smuggler"
```