aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Normalize URL query string before executing HTTP requestsGravatar Frédéric Guillot2019-12-26
| | | | | | | - Make sure query strings parameters are encoded - As opposed to the standard library, do not append equal sign for query parameters with empty value - Strip URL fragments like Web browsers
* Improve Dublin Core support for RDF feedsGravatar Frédéric Guillot2019-12-23
|
* Improve Podcast support (iTunes and Google Play feeds)Gravatar Frédéric Guillot2019-12-23
| | | | | - Add support for Google Play XML namespace - Improve existing iTunes namespace implementation
* Add support for Atom 0.3Gravatar Frédéric Guillot2019-12-22
|
* Add support for Atom 'replies' link relationGravatar Frédéric Guillot2019-12-22
| | | | | | | Show comments URL for Atom feeds as per RFC 4685. See https://tools.ietf.org/html/rfc4685#section-4 Note that only the first link with type "text/html" is taken into consideration.
* Return outer HTML when scraping elementsGravatar cinput2019-12-21
|
* Update scraper rule for "Le Monde"Gravatar somini2019-12-19
|
* Filter valid XML characters for UTF-8 XML documents before decodingGravatar Jebbs2019-12-19
| | | This change should reduce "illegal character code" XML errors.
* Trim spaces for RDF entry linksGravatar Frédéric Guillot2019-12-01
|
* Update ChangeLogGravatar Frédéric Guillot2019-12-01
|
* Do no rewrite Youtube description twice in "add_youtube_video" ruleGravatar Frédéric Guillot2019-11-30
| | | | This is already done before in <media:description>.
* Use V to open original link in current tabGravatar Frédéric Guillot2019-11-29
| | | | | - To avoid a breaking change, keep v to open the original link in new tab. - People who prefers to open the link in the current tab should use V.
* Do not expose yet feed counter via APIGravatar Frédéric Guillot2019-11-29
|
* Add the possibility to add rules during feed creationGravatar Frédéric Guillot2019-11-29
|
* Wrap attachments into <details> disclosure elementGravatar Frédéric Guillot2019-11-29
|
* Show attachment size on entry pageGravatar Frédéric Guillot2019-11-29
|
* Add support of media elements for Atom feedsGravatar Frédéric Guillot2019-11-28
|
* Add support of media elements for RSS 2 feedsGravatar Frédéric Guillot2019-11-28
|
* Add rewrite functions: convert_text_link and nl2brGravatar Frédéric Guillot2019-11-28
|
* Update scraper rule for openingsource.orgGravatar Neo Ng2019-11-28
|
* Add Makefile target to build only amd64 Docker imageGravatar Frédéric Guillot2019-11-26
|
* Make sure to remove integration settings when removing a userGravatar Frédéric Guillot2019-11-17
|
* Add API parameter to filter entries by categoryGravatar Frédéric Guillot2019-11-17
|
* Display list of feeds per categoryGravatar Frédéric Guillot2019-11-17
|
* Show the number of read and unread entries for each feedGravatar Frédéric Guillot2019-11-17
|
* Make sure settings menu is consistentGravatar Frédéric Guillot2019-11-17
|
* Remove fixed table-layout for entry contentGravatar Frédéric Guillot2019-11-17
|
* Update autocert lib because ACME v1 is EOLGravatar Frédéric Guillot2019-11-15
|
* Do not lighten blockquote font colorGravatar Vincent Bernat2019-11-15
| | | | | | | | | | | It is confusing to have blockquote content displayed with a lighter font color. Usually, quotes are important to the text while reducing the contrast may hint a user it is not. In my case, I usually skip the content of the blockquote as it was some additional note in the text. Without the color change, the blockquote is still indented differently, with the vertical bar. It should be enough for a user to identify it as a quote.
* Update de_DE translationGravatar benne2019-11-01
|
* Send a response when changing status of removed entries in Fever APIGravatar Jebbs2019-10-31
| | | When a client, like Reeder, tries to mark an item which is removed on Miniflux, the server doesn't response OK. This may terminate the sync process, the PR fixes it.
* Make "v" open link in the current tab on entry pageGravatar Maxim Baz2019-10-30
|
* Add meta tag to disable Google TranslateGravatar Frédéric Guillot2019-10-29
|
* Improve storage moduleGravatar Frédéric Guillot2019-10-29
|
* Show unread counters on feeds pageGravatar Maxim Baz2019-10-29
|
* Improve XML decoder to remove illegal charactersGravatar Tony Wang2019-10-22
|
* Compare Fever token case-insensitivelyGravatar Tony Wang2019-10-21
|
* Fix integration testsGravatar Frédéric Guillot2019-10-21
|
* Make sure integration tests are marked as failed in Github ActionsGravatar Frédéric Guillot2019-10-21
|
* Add new formats to date parserGravatar Tony Wang2019-10-20
|
* Add toast message for some keyboard shortcutsGravatar Jebbs2019-10-06
| | | Add notification message when using keyboard shortcuts: f, s, and m.
* call preventDefault() when the user is trying to enter a keyboard shortcutGravatar Adam Hess2019-10-06
| | | Keyboard shortcuts might conflict with Firefox’s "Find as you type" feature.
* Add missing arm32v7 in loopGravatar Frédéric Guillot2019-09-30
|
* Update ChangeLog for v2.0.18Gravatar Frédéric Guillot2019-09-25
|
* Add CSS tweak and fix typo in variable nameGravatar Frédéric Guillot2019-09-25
|
* Log image proxy URL in debug modeGravatar Frédéric Guillot2019-09-22
|
* Add few CSS teaksGravatar Frédéric Guillot2019-09-22
|
* Add Docker image variant for arm32v7Gravatar Frédéric Guillot2019-09-22
|
* Add theme variantsGravatar Frédéric Guillot2019-09-21
| | | | | | | | | - Use CSS variables instead of inherence - Rename default theme to "Light - Serif" - Rename Black theme to "Dark - Serif" - Rename "Sans-Serif" theme to "Light - Sans Serif" - Add "System" theme that use system preferences: Dark or Light - Add Serif and Sans-Serif variants for each color theme
* Avoid constraint error when having duplicate entriesGravatar Frédéric Guillot2019-09-18
| | | | | | During feed creation, duplicated entries will generate an SQL contraint error. This change ignore the duplicated entry to avoid showing an error.