diff --git a/README.md b/README.md index e9049f8..4adad59 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,9 @@ You need to have Go >=1.19 installed. `import [OPML URL or file path]` - Imports feeds from OPML file +`refetch [feed name]` +- delete and refetch given feed(s) or all feeds if no argument is given + `version` - Prints the rssnix version diff --git a/main.go b/main.go index a82383d..bbc6086 100644 --- a/main.go +++ b/main.go @@ -13,7 +13,7 @@ import ( "github.com/urfave/cli/v2" ) -const Version = "0.2.2" +const Version = "0.3.0" func addFeed(name string, url string) error { homePath, err := os.UserHomeDir()