aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Import OPML from URLGravatar Peter De Wachter2019-08-15
|
* Add test case for parsing HTML entitiesGravatar Frédéric Guillot2019-08-15
|
* addImageTitle: Fix HTML injectionGravatar Peter De Wachter2019-08-15
| | | | | | | | | | | | This rewrite rule would change this: <img title="<foo>"> to this: <figure><img><figcaption><foo></figcaption></figure> The image title needs to be properly escaped.
* Accept HTML entities when parsing XMLGravatar Peter De Wachter2019-08-15
| | | | | | | Every once in a while, one of my feeds would throw an XML parse error because it used `&nbsp;` or some other HTML entity. I feel Miniflux should be lenient here, and Go already has a handy hook to make this work.
* Update ChangeLog for version 2.0.17Gravatar Frédéric Guillot2019-08-03
|
* Update Docker image to Alpine Linux 3.10.1Gravatar Frédéric Guillot2019-08-03
|
* Add option to disable feedsGravatar Frédéric Guillot2019-07-26
|
* Fix regressions introduced in previous JS refactoringGravatar Jebbs2019-07-25
|
* Ask for confirmation before clicking on mark all as readGravatar Frédéric Guillot2019-07-17
|
* Ask for confirmation before flushing historyGravatar Frédéric Guillot2019-07-17
|
* Refactor confirmation handlerGravatar Frédéric Guillot2019-07-17
|
* Refactoring of Javascript codeGravatar Frédéric Guillot2019-07-17
|
* Require confirmation for marking pages as readGravatar Matías Lang2019-07-17
|
* Add .search margin-rightGravatar Frode Aannevik2019-07-13
|
* Fix syntax errors in man pageGravatar Frédéric Guillot2019-07-10
|
* Sort feed categories before serializationGravatar Ilya Glotov2019-07-05
| | | | | A function is added for feeds and its categories normalization. The test will ensure that the order is right.
* Pass auth header to manifest requestGravatar Pierre Dubouilh2019-07-04
|
* Update Docker image to Alpine Linux 3.10.0Gravatar Frédéric Guillot2019-06-20
|
* Update ChangeLogGravatar Frédéric Guillot2019-06-08
|
* Update vendor folderGravatar Frédéric Guillot2019-06-08
|
* Add option to toggle date/time in log messagesGravatar Frédéric Guillot2019-06-08
|
* Add optional config file parser in addition to environment variablesGravatar Frédéric Guillot2019-06-02
|
* Make HTTP Client timeout and max body size configurableGravatar Frédéric Guillot2019-06-02
|
* Refactor config packageGravatar Frédéric Guillot2019-06-02
| | | | | - Parse configuration only once during startup time - Store configuration values in a global variable
* Flip behavior of j and k keyboard shortcutsGravatar Ben Cohen2019-05-26
|
* Bump pq to v1.1.1 to bring in SCRAM-SHA-256 authentication.Gravatar Aaron Bieber2019-05-16
|
* Remove debug timer from most storage functionsGravatar Frédéric Guillot2019-04-28
|
* Add option to enable/disable keyboard shortcutsGravatar Frédéric Guillot2019-04-28
|
* Update links to the documentationGravatar Frédéric Guillot2019-04-22
|
* Add missing translationGravatar Frédéric Guillot2019-04-05
|
* Improve page reload when showing unread/all entriesGravatar Diego Agulló2019-04-04
| | | | - Show only unread entries = refresh current page - Show all entries = go to next page
* Always display feed entries even when there is a feed errorGravatar Frédéric Guillot2019-04-02
|
* Use loading label instead of saving when submitting login formGravatar Frédéric Guillot2019-03-26
|
* Add support for OPML v1 importGravatar Frédéric Guillot2019-03-26
|
* Add 'allow-popups' to iframe sandbox permissionsGravatar Jeremy Apthorp2019-03-26
|
* Update ChangeLogGravatar Frédéric Guillot2019-03-16
|
* Move Dockerfile to main repoGravatar Frédéric Guillot2019-03-14
|
* Add double tap detection for next/previous page navigationGravatar 3ddysan2019-03-11
|
* Allow users to disable auto-removeGravatar Jacob Wahlgren2019-03-10
| | | Adds ARCHIVE_READ_DAYS="-1"
* Make parser compatible with Go 1.12Gravatar Frédéric Guillot2019-02-28
| | | | See changes in strings.Map(): https://golang.org/doc/go1.12#strings
* Add Golang 1.12 to CIGravatar Frédéric Guillot2019-02-28
|
* Use feed ID instead of user ID to check entry URLs presenceGravatar Frédéric Guillot2019-02-28
|
* Fix typo in stylesheetGravatar Frédéric Guillot2019-02-19
|
* Sort search results by relevanceGravatar Jebbs2019-02-11
|
* Use preferably the published date for Atom feedsGravatar Frédéric Guillot2019-01-29
| | | | YouTube feeds use the published date for the original creation date.
* Add Spanish translationGravatar e.g. pavelka2019-01-23
|
* Rename session cookiesGravatar Frédéric Guillot2019-01-21
|
* Handle the case when application session is expired and not user sessionGravatar Frédéric Guillot2019-01-21
|
* Update ChangeLogGravatar Frédéric Guillot2019-01-13
|
* Only attempt to change password if the confirmation field is filled inGravatar Peter De Wachter2019-01-07
| | | | | | | Firefox autocompletes the password field (but not the password confirmation field) for me. This makes it annoying to use the settings page, because miniflux thinks I'm trying to change my password and complains that the fields don't match.