summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsiddharth <s@ricketyspace.net>2022-04-17 02:45:14 -0400
committersiddharth <s@ricketyspace.net>2022-04-17 02:45:14 -0400
commit4378da09b14aa4d3795dca9c9a1cac6c4d43f8bb (patch)
tree78e9a11f1e4d70bc70d6c9ce44dce8cf2423fdc1
parenta0ebdaf4d3bc0702a8534f1a46afa9a178099583 (diff)
fern: update doc
-rw-r--r--fern.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/fern.go b/fern.go
index 70e79fb..022a01f 100644
--- a/fern.go
+++ b/fern.go
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: ISC
-// Copyright © 2021 siddharth <s@ricketyspace.net>
+// Copyright © 2022 siddharth <s@ricketyspace.net>
// fern is a simple media feed downloader.
//
@@ -27,7 +27,8 @@
// "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"
-// "last": 5 // The last N items that should be downloaded
+// "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
// }
//
// You may download an example config file for fern from
@@ -52,7 +53,7 @@ import (
"ricketyspace.net/fern/state"
)
-const version = "0.3.0"
+const version = "0.4.0.dev"
var fConf *config.FernConfig
var pState *state.ProcessState