Skip to content

Commit

Permalink
Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
slurdge committed May 23, 2020
1 parent f1b50b4 commit c74093c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 14 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
=========

v0.5.0
------

- True HTML messages with templates
- New filter: `lasthours` or `lasthours(X)` which allows to keep only entries that have less than X (default: 24) hours date.
- Add support for go generate.
- Assets are now put in binary form from `asset/` folder.

v0.4.4
-------

Expand Down
28 changes: 15 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,28 @@ A RSS to email, ala rss2email written in Go.
Take one or more RSS feeds and transform them into a proper email format.

The available filters are as follow:

- all: Default, include all entries
- none: Removes all entries
- lasthours: Keep only the entries that are from the X last hours (default 24)
- unseen: Keep only unseen entry
- last: Keep only the last entry
- digest: Make a digest of all entries (optional heading level, default is )
- links: Rewrite relative links src="// and href="// to have an https:// prefix
- replace: Replace a string with another.
Use with an argument like this: replace(myreplace) and define
```
- replace: Replace a string with another. Use with an argument like this: replace(myreplace) and define
```
[replace.myreplace]
from="A string"
to="Another string"
```
from="A string"
to="Another string"
```
in your config file.
- none: Removes all entries
- includelink: Include the link of entries in the digest form
- lebrief: Retrieves the full excerpts for Next INpact's Lebrief
- first: Keep only the first entry
- reverse: Reverse the order of the entries
- random: Keep 1 or more random entries. Use either 'random' or 'random(5)' for example.
- today: Keep only the entries for today
- digest: Make a digest of all entries (optional heading level, default is 1)
- combine: Combine all the entries into one source and use the first entry title as source title. Useful for merge sources
- language: Keep only the specified languages (best effort detection), use like this: language(en,de)
- lebrief: Retrieves the full excerpts for Next INpact's Lebrief
- all: Default, include all entries
- reverse: Reverse the order of the entries
- combine: Combine all the entries into one source and use the first entry title as source title. Useful for merge sources

## Getting started

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var GitCommit string
// MINOR version when you add functionality in a backwards compatible manner, and
// PATCH version when you make backwards compatible bug fixes.
// Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.
const Version = "0.4.4"
const Version = "0.5.0"

// BuildDate returns the date the binary was built
var BuildDate = ""
Expand Down

0 comments on commit c74093c

Please sign in to comment.