diff options
| author | siddharth ravikumar <s@ricketyspace.net> | 2026-04-11 11:43:13 -0400 |
|---|---|---|
| committer | siddharth ravikumar <s@ricketyspace.net> | 2026-04-11 11:44:06 -0400 |
| commit | 8658f1c2ce497aaaa1801db37f23d58a49e3aacf (patch) | |
| tree | e56cbce3a9d856f908e1548565a7abd71fa9dec4 | |
| parent | 0b27206f66fe86592742f9b175fcf37921edf9b1 (diff) | |
Add about `ignore-titles`
| -rw-r--r-- | LICENSE | 2 | ||||
| -rw-r--r-- | fern.go | 9 | ||||
| -rw-r--r-- | version/version.go | 2 |
3 files changed, 7 insertions, 6 deletions
@@ -1,4 +1,4 @@ -Copyright © 2022 siddharth <s@ricketyspace.net> +Copyright © 2026 siddharth <s@ricketyspace.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the @@ -1,5 +1,5 @@ // SPDX-License-Identifier: ISC -// Copyright © 2022 siddharth <s@ricketyspace.net> +// Copyright © 2026 siddharth <s@ricketyspace.net> // fern is a simple media feed downloader. // @@ -27,9 +27,10 @@ // "id": "media-feed-id", // unique identifier for the media feed // "source": "https://feeds.npr.org/XXXX/rss.xml", // media feed url // "schema": "npr", // must be "youtube" or "npr" or "podcast" -// "last": 5 // the last N items that should be downloaded -// "title-contains": "tiny desk" // optional. if specified, downloads entries with title matching the value of this field -// "ignore-shorts": true // optional. applicable to only youtube feeds. if set, will ignore youtube shorts. +// "last": 5, // the last N items that should be downloaded +// "title-contains": "tiny desk", // optional. if specified, downloads entries with title matching the value of this field +// "ignore-shorts": true, // optional. applicable to only youtube feeds. if set, will ignore youtube shorts. +// "ignore-titles": ["#ad"] // optional. applicable to only youtube feeds. if set, will ignore entries with title containing any of the values (case-insensitive) in this list. // } // // You may download an example config file for fern from diff --git a/version/version.go b/version/version.go index 3089864..73b8e5f 100644 --- a/version/version.go +++ b/version/version.go @@ -3,4 +3,4 @@ package version -const Version = "0.8.7" +const Version = "0.8.8" |
