Skip to content

Commit 3dd0e85

Browse files
committed
Update feed customizations #125
1 parent a623e76 commit 3dd0e85

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ vimeo = "{VIMEO_API_TOKEN}"
6868
update_period = "12h" # How often query for updates, examples: "60m", "4h", "2h45m"
6969
quality = "high" # or "low"
7070
format = "video" # or "audio"
71-
# cover_art = "{IMAGE_URL}" # Optional URL address of an image file
71+
# custom = { cover_art = "{IMAGE_URL}}", category = "TV", explicit = true, lang = "en" } # Optional feed customizations
7272
# max_height = "720" # Optional maximal height of video, example: 720, 1080, 1440, 2160, ...
7373
# cron_schedule = "@every 12h" # Optional cron expression format. If set then overwrite 'update_period'. See details below
7474
# filters = { title = "regex for title here" } # Optional Golang regexp format. If set, then only download episodes with matching titles.

pkg/config/config.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ type Feed struct {
3434
MaxHeight int `toml:"max_height"`
3535
// Format to use for this feed
3636
Format model.Format `toml:"format"`
37-
// Custom image to use
38-
CoverArt string `toml:"cover_art"`
3937
// Only download episodes that match this regexp (defaults to matching anything)
4038
Filters Filters `toml:"filters"`
4139
// Clean is a cleanup policy to use for this feed

0 commit comments

Comments
 (0)