summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsiddharth ravikumar <s@ricketyspace.net>2026-04-11 11:43:13 -0400
committersiddharth ravikumar <s@ricketyspace.net>2026-04-11 11:44:06 -0400
commit8658f1c2ce497aaaa1801db37f23d58a49e3aacf (patch)
treee56cbce3a9d856f908e1548565a7abd71fa9dec4
parent0b27206f66fe86592742f9b175fcf37921edf9b1 (diff)
fern.go: update doc blockHEADv0.8.8main
Add about `ignore-titles`
-rw-r--r--LICENSE2
-rw-r--r--fern.go9
-rw-r--r--version/version.go2
3 files changed, 7 insertions, 6 deletions
diff --git a/LICENSE b/LICENSE
index d84fbed..253c834 100644
--- a/LICENSE
+++ b/LICENSE
@@ -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
diff --git a/fern.go b/fern.go
index 2a92711..bbaa6b9 100644
--- a/fern.go
+++ b/fern.go
@@ -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"