aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-12-31Release FreshRSS 1.19.01.19.0Gravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/4093
2021-12-29Update CREDITS.md (#4094)Gravatar maTh
2021-12-29Update creditsGravatar Alexandre Alapetite
2021-12-29Changelog 1.19.0Gravatar Alexandre Alapetite
2021-12-28Partial changelogGravatar Alexandre Alapetite
2021-12-28Fix: loading wheel (#4082)Gravatar maTh
* fix anoym. user * fix global view * Update app/views/helpers/pagination.phtml Co-authored-by: Frans de Jonge <fransdejonge@gmail.com> * Update global_view.js Co-authored-by: Frans de Jonge <fransdejonge@gmail.com>
2021-12-27fix: incorrect translations (#4084)Gravatar Virgil Chen
2021-12-26Improved manual: User Management/User registration (#4083)Gravatar maTh
* Draft 1 of Default User page * Draft1 of User Management page * Update 01_Index.md * Update 12_User_management.md * fix failing pipeline * Apply suggestions from code review Co-authored-by: Frans de Jonge <fransdejonge@gmail.com> Co-authored-by: Frans de Jonge <fransdejonge@gmail.com>
2021-12-24Fix invalid user (#4081)Gravatar Alexandre Alapetite
#fix https://github.com/FreshRSS/FreshRSS/issues/4080 Initialise the default user to be able to display the error page
2021-12-23Correct cron example (#4079)Gravatar 4xfu
The old example was inaccurate. crontab on Debian does not support a user name, but files in /etc/cron.d and /etc/crontab do (see https://manpages.debian.org/bullseye/cron/crontab.5.en.html) According to https://manpages.debian.org/bullseye/cron/cron.8.en.html : In general, the system administrator should not use /etc/cron.d/, but use the standard system crontab /etc/crontab so I propose to append the line to this file
2021-12-21Update UserMailer.php (#4076)Gravatar maTh
2021-12-21Fix: Compressed & Cached JS files (#4075)Gravatar maTh
* Update .htaccess * Explicit MIME type for .js https://developer.mozilla.org/en-US/docs/Learn/Server-side/Configuring_server_MIME_types https://www.iana.org/assignments/media-types/media-types.xhtml Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
2021-12-20Improved: Manual: username+pw for demo login (#4072)Gravatar maTh
* added: username+pw for demo login * fix white spaces
2021-12-20Docker fix missing .htaccess (#4074)Gravatar Alexandre Alapetite
Related to https://github.com/FreshRSS/FreshRSS/issues/4073 In our Docker configuration, `.htaccess` files are included only once at startup. The one for themes was missing.
2021-12-12fever: fix warning of unset array key (#4056)Gravatar Felix Bühler
2021-12-10Update 02_First_steps.md (#4049)Gravatar happymacarts
spelling correction of "available"
2021-12-09fix global view template (#4043)Gravatar maTh
2021-12-07fix normal and reader view (#4040)Gravatar maTh
2021-12-07Fix: global view does not show "no articles to show" alert (#4042)Gravatar maTh
* fix * phpcs fixed * fix JS
2021-12-07fix CSS (#4041)Gravatar maTh
2021-12-07Updated translation (#4038)Gravatar Tibor Repček
I translated strings with "TODO - Translation" comment. ;)
2021-12-06Updated translation (#4036)Gravatar Tibor Repček
I translated strings with "TODO - Translation" comment. ;)
2021-12-06Updated translation (#4035)Gravatar Tibor Repček
I translated strings with "TODO - Translation" comment. ;)
2021-12-06Updated translation (#4034)Gravatar Tibor Repček
I translated strings with "TODO - Translation" comment. ;)
2021-12-06Updated translation (#4033)Gravatar Tibor Repček
I translated strings with "TODO - Translation" comments. ;)
2021-12-06Updated translation (#4032)Gravatar Tibor Repček
I translated string with "TODO - Translation" comment. ;)
2021-12-06Updated translation (#4031)Gravatar Tibor Repček
I translated strings with "TODO - Translation" comment. ;)
2021-12-06Updated translation (#4030)Gravatar Tibor Repček
I translated strings with "TODO - Translate" comment. ;)
2021-12-05Fix reader view header (#4015)Gravatar maTh
* fix the hyperlink underline * add mouse title * improve German mouse titles * fixed whitespaces * use the same title in config/display like in normal/reader view * i18n German: Discard change for this String * delete unused gen.action.mark_favorite
2021-12-05Fix: search in mobile view (#4025)Gravatar maTh
* bring back the search in the nav bar * fix the search input height * line-heigt improved
2021-12-05Add wolfpld to CREDITS. (#4028)Gravatar Bartosz Taudul
2021-12-05Updated japanese translation on 3898 (#4026)Gravatar 312k
2021-12-05Update polish translation. (#4027)Gravatar Bartosz Taudul
2021-12-03Add preventDefault to keydown event handler (#4013)Gravatar Frans de Jonge
* Add preventDefault to keydown event handler Fixes #3946. * review * silence technically correct but missing the picture check Co-authored-by: Frans de Jonge <frans@clevercast.com>
2021-12-03Fix: double main tags (#4014)Gravatar maTh
* replace div with main * include the slider into main * format source * add close icon for the extension slider * replace div with main * Update shortcut.phtml * fixed the nits
2021-12-02Fix some PHPstan errors (#4019)Gravatar Alexandre Alapetite
Fix some wrong variables found by https://github.com/FreshRSS/FreshRSS/issues/4016
2021-12-02Minz request avoid custom methods (#4020)Gravatar Alexandre Alapetite
Take advantage of PHP7+ null-coalescing operator `??` to make code more standard, shorter, and faster instead of custom function with no extra functionality. Allows code to be better tested and fix two PHPstan errors: ``` ------ ----------------------------------------- Line app/Controllers/configureController.php ------ ----------------------------------------- 410 Cannot unset offset 'rid' on string. ------ ----------------------------------------- ------ ------------------------------------ Line lib/Minz/FrontController.php ------ ------------------------------------ 70 Cannot unset offset 'c' on string. 71 Cannot unset offset 'a' on string. ------ ------------------------------------ ``` https://github.com/FreshRSS/FreshRSS/issues/4016
2021-12-02Fix more PHP 8.1 null warnings (#4018)Gravatar Alexandre Alapetite
Follow-up of https://github.com/FreshRSS/FreshRSS/pull/4012
2021-12-01Fix some PHP 8.1 warnings (#4012)Gravatar Alexandre Alapetite
* Fix some PHP 8.1 warnings The proper fix will have to wait till be drop PHP7. #fix https://github.com/FreshRSS/FreshRSS/issues/4010 * Another PHP8.1 fix
2021-12-01Manual update SimplePie (#4011)Gravatar Alexandre Alapetite
* https://github.com/simplepie/simplepie/commit/417a1661b2610448bd8e1835d6d4160a0aff9a97 * https://github.com/simplepie/simplepie/commit/ebdd0643ee927edfcaf40bfd27ab23ce9c975120 * https://github.com/simplepie/simplepie/commit/941412027a46979b4f1d29e53edf91829788d781 * https://github.com/simplepie/simplepie/commit/f58a23730f01f26bbcfe02ff9266e337c241be88
2021-12-01related_tags (#4008)Gravatar maTh
2021-11-30delete overflow-y (#4005)Gravatar maTh
2021-11-30Fix JS error: new-article missed (#3999)Gravatar maTh
2021-11-29Fix #4002: transparent config menu (#4003)Gravatar maTh
* Update template.css * Update template.rtl.css
2021-11-27Docker: Alpine 3.15 (#3996)Gravatar Alexandre Alapetite
Alpine 3.15 with PHP 8.0.13 and Apache 2.4.51 https://alpinelinux.org/posts/Alpine-3.15.0-released.html
2021-11-27typo fix (#3998)Gravatar maTh
2021-11-24Switch category - remember status filter (#3986)Gravatar maTh
* url parameter * fixed phpcs * rename variables
2021-11-24improved HTML (#3989)Gravatar maTh
2021-11-24improved HTML (#3990)Gravatar maTh
2021-11-24Fix typo of 'envelope' and reference De Morgan's laws (#3991)Gravatar xnaas