diff options
author | siddharth <s@ricketyspace.net> | 2022-04-17 02:45:14 -0400 |
---|---|---|
committer | siddharth <s@ricketyspace.net> | 2022-04-17 02:45:14 -0400 |
commit | 4378da09b14aa4d3795dca9c9a1cac6c4d43f8bb (patch) | |
tree | 78e9a11f1e4d70bc70d6c9ce44dce8cf2423fdc1 /fern.go | |
parent | a0ebdaf4d3bc0702a8534f1a46afa9a178099583 (diff) |
fern: update doc
Diffstat (limited to 'fern.go')
-rw-r--r-- | fern.go | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 |