aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Change handling of NULL nodes to new yaml.v3 semanticsRené 'Necoro' Neumann2021-06-021-14/+7
|
* Upgrade yaml.v3 dependencyRené 'Necoro' Neumann2021-06-022-3/+3
| | | | | This breaks null handling, due to this commit: https://github.com/go-yaml/yaml/commit/c8046fb8b3d403e9f4565c3ad668393eb4344da6
* Bump github.com/google/go-cmp from 0.5.5 to 0.5.6dependabot[bot]2021-06-022-3/+3
| | | | | | | Bumps [github.com/google/go-cmp](https://github.com/google/go-cmp) from 0.5.5 to 0.5.6. - [Release notes](https://github.com/google/go-cmp/releases) - [Commits](https://github.com/google/go-cmp/compare/v0.5.5...v0.5.6) Signed-off-by: dependabot[bot] <support@github.com>
* Do not try to download already embedded imagesRené 'Necoro' Neumann2021-06-023-40/+57
|
* Replace deprecated module `ioutil`René 'Necoro' Neumann2021-06-021-2/+2
|
* Prepare v1.0.0v1.0.0René 'Necoro' Neumann2021-05-192-2/+7
|
* Upgrade go-imap to 1.1.0René 'Necoro' Neumann2021-05-122-8/+5
|
* Small style improvementRené 'Necoro' Neumann2021-05-111-2/+1
|
* Fix commentsRené 'Necoro' Neumann2021-05-111-8/+6
|
* Update dependenciesRené 'Necoro' Neumann2021-05-112-10/+11
|
* #47 Consume all messages and filter by UIDRené 'Necoro' Neumann2021-05-101-8/+13
| | | | Original bug is probably caused by unilateral messages of the server, notifying the client about flag changes of other mails. Solution: Ignore those
* #47: Exhaust messages to avoid deadlockRené 'Necoro' Neumann2021-05-101-1/+8
|
* Revert "#47: Upgrade to fixed go-imap"René 'Necoro' Neumann2021-05-102-3/+3
| | | | This reverts commit 4635c493e7bb2cfb22c8136f9943e94ce54d0df3.
* #47: Upgrade to fixed go-imapRené 'Necoro' Neumann2021-05-052-3/+3
|
* Upgrade gofeed dependencyRené 'Necoro' Neumann2021-04-232-4/+4
|
* Prepare v0.8.0v0.8.0René 'Necoro' Neumann2021-03-063-3/+5
|
* go mod tidyRené 'Necoro' Neumann2021-03-051-2/+0
|
* Bump github.com/google/go-cmp from 0.5.4 to 0.5.5dependabot[bot]2021-03-052-1/+3
| | | | | | | Bumps [github.com/google/go-cmp](https://github.com/google/go-cmp) from 0.5.4 to 0.5.5. - [Release notes](https://github.com/google/go-cmp/releases) - [Commits](https://github.com/google/go-cmp/compare/v0.5.4...v0.5.5) Signed-off-by: dependabot[bot] <support@github.com>
* RestructureRené 'Necoro' Neumann2021-02-282-54/+49
|
* Update changelogRené 'Necoro' Neumann2021-02-281-0/+2
|
* Set up IMAP connections while fetching and filtering feedsRené 'Necoro' Neumann2021-02-281-9/+17
|
* IMAP: Set a timeout for connectionRené 'Necoro' Neumann2021-02-281-2/+10
|
* Start IMAP connections in the background and use them on the goRené 'Necoro' Neumann2021-02-283-16/+26
|
* Remove obsolete feeds from cache after 180 daysRené 'Necoro' Neumann2021-02-276-2/+34
|
* Do not upgrade the cache in `print-cache`René 'Necoro' Neumann2021-02-273-4/+4
|
* Update changelogRené 'Necoro' Neumann2021-02-271-0/+7
|
* New cache format using gzip compressionRené 'Necoro' Neumann2021-02-273-7/+76
|
* Put storing / loading details into cache implementationRené 'Necoro' Neumann2021-02-272-5/+17
|
* Rename fileRené 'Necoro' Neumann2021-02-271-0/+0
|
* Change from `transformToCurrent` to `transformTo`René 'Necoro' Neumann2021-02-272-5/+10
|
* Filter feeds in cache: Keep at most 1000 obsolete items per feedRené 'Necoro' Neumann2021-02-271-8/+38
|
* Fix remaining use of `state.feeds`René 'Necoro' Neumann2021-02-271-1/+1
|
* Improve output of `print-cache`René 'Necoro' Neumann2021-02-271-2/+16
|
* Fix language errorsRené 'Necoro' Neumann2021-02-271-3/+3
|
* Do not use deprecated gofeed.Item.Author, but Authors insteadRené 'Necoro' Neumann2021-02-272-12/+24
|
* Update gofeedRené 'Necoro' Neumann2021-02-262-3/+3
|
* Improve namingRené 'Necoro' Neumann2021-02-224-11/+14
|
* Split cache and feed packagesRené 'Necoro' Neumann2021-02-2212-303/+329
|
* Prepare v0.7.0v0.7.0René 'Necoro' Neumann2021-02-213-5/+5
|
* Fix signatureRené 'Necoro' Neumann2021-02-212-2/+3
|
* Merge branch 'go-1.16'René 'Necoro' Neumann2021-02-219-79/+85
|\
| * Import 'embed' packageRené 'Necoro' Neumann2021-02-181-0/+1
| |
| * Fix CRLF endingRené 'Necoro' Neumann2021-02-161-57/+57
| |
| * Increment go-version to 1.16René 'Necoro' Neumann2021-02-163-5/+5
| |
| * Use go-embed for templates instead of inline strings.René 'Necoro' Neumann2021-02-166-74/+79
| | | | | | | | They should also use CRLF (cf issue #46).
* | #25 Normalize folder namesRené 'Necoro' Neumann2021-02-212-2/+14
| |
* | Strip whitespace from folder namesRené 'Necoro' Neumann2021-02-212-0/+13
| |
* | Fix order for `Cmp.Diff`René 'Necoro' Neumann2021-02-211-3/+3
| |
* | #25 Check for folder again while lockingRené 'Necoro' Neumann2021-02-211-0/+8
| |
* | Strip `srcset` attributeRené 'Necoro' Neumann2021-02-212-1/+8
| |