summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-08-31Merge pull request 'Fix PHP8 empty param warning' (#79) from ↵fox
powerivq/tt-rss:php8compat into master Reviewed-on: https://dev.tt-rss.org/fox/tt-rss/pulls/79
2022-08-31Merge pull request 'Add last_login_update session to single user mode' (#80) ↵fox
from powerivq/tt-rss:last_login into master Reviewed-on: https://dev.tt-rss.org/fox/tt-rss/pulls/80
2022-08-31Add last_login to single user modepowerivq
2022-08-31Fix PHP8 empty param problempowerivq
2022-08-25Translated using Weblate (Galician)xosé m
Currently translated at 100.0% (701 of 701 strings) Translation: Tiny Tiny RSS/messages Translate-URL: https://weblate.tt-rss.org/projects/tt-rss/messages/gl/
2022-08-25Translated using Weblate (Chinese (Traditional))TonyRL
Currently translated at 97.8% (686 of 701 strings) Translation: Tiny Tiny RSS/messages Translate-URL: https://weblate.tt-rss.org/projects/tt-rss/messages/zh_Hant/
2022-08-22update gl translation label (2)Andrew Dolgov
2022-08-22update gl translation labelAndrew Dolgov
2022-08-21enable gl translation (Galician)Andrew Dolgov
2022-08-21Merge branch 'weblate-integration'Andrew Dolgov
2022-08-21Translated using Weblate (Dutch)Patrick Ahles
Currently translated at 100.0% (701 of 701 strings) Translation: Tiny Tiny RSS/messages Translate-URL: https://weblate.tt-rss.org/projects/tt-rss/messages/nl/
2022-08-21Translated using Weblate (Czech)Marek Pavelka
Currently translated at 100.0% (701 of 701 strings) Translation: Tiny Tiny RSS/messages Translate-URL: https://weblate.tt-rss.org/projects/tt-rss/messages/cs/
2022-08-17Merge pull request 'Use PHP 7.4 features' (#77) from ↵fox
wn/tt-rss:feature/php-7.4-stuff into master Reviewed-on: https://dev.tt-rss.org/fox/tt-rss/pulls/77
2022-08-16generate_syndicated_feed: add source section to JSON-formatted outputAndrew Dolgov
2022-08-15Merge remote-tracking branch 'origin/master' into feature/php-7.4-stuffwn_
2022-08-15amend logic flow to fix phpstan warning in previousAndrew Dolgov
2022-08-15Merge pull request 'Handle no response body, file_get_contents() failure in ↵fox
UrlHelper::fetch()' (#78) from wn/tt-rss:feature/handle-no-response-body into master Reviewed-on: https://dev.tt-rss.org/fox/tt-rss/pulls/78
2022-08-14Handle 'file_get_contents()' failure in 'UrlHelper::fetch()'.wn_
2022-08-14Handle valid HTTP responses with no response body.wn_
2022-08-12Use the null coalescing assignment operator in various places.wn_
2022-08-12Replace use of 'array_merge' with the spread operator and 'array_push' in ↵wn_
various places. This isn't supported for arrays with string keys until PHP 8.1. https://wiki.php.net/rfc/spread_operator_for_array
2022-08-12Use arrow functions in some places.wn_
2022-08-12minor: remove a PHP >= 5.6 check in 'af_redditimgur'wn_
2022-08-12Remove a PHP < 7.1 branch in UrlHelper.wn_
2022-08-12Switch to direct type declarations of class properties.wn_
2022-08-01disable composer platform checkAndrew Dolgov
2022-07-31update phpstan to 1.8.2Andrew Dolgov
2022-07-31rework phpstan task to use inotifywaitAndrew Dolgov
2022-07-31enable phpstan task to run in backgroundAndrew Dolgov
2022-07-31readability: import fixed html5-phpAndrew Dolgov
2022-07-31add vscode task for phpstanAndrew Dolgov
2022-07-31fork masterminds html5-phpAndrew Dolgov
2022-07-29properly check for baseline required PHP version (7.4)Andrew Dolgov
2022-07-27af_redditimgur: absolutize links before working on them (again)Andrew Dolgov
2022-07-27Revert "af_redditimgur: absolutize links before working on them"Andrew Dolgov
This reverts commit 6a68ed0208b0b9eda5a4c9ea53f5dc699e4d9b12.
2022-07-27af_redditimgur: absolutize links before working on themAndrew Dolgov
2022-07-27af_redditimgur: don't try to check if null domain is blacklistedAndrew Dolgov
2022-07-24 * add HOOK_LOGINFORM_ADDITIONAL_BUTTONSAndrew Dolgov
* allow plugins to inject JS code into login form
2022-07-24public: allow system plugins to expose public methodsAndrew Dolgov
2022-07-24make_self_url: properly strip out GET paramsAndrew Dolgov
2022-07-24readability: depend on psr/http-factoryAndrew Dolgov
2022-07-24readability: add missing dependenciesAndrew Dolgov
2022-07-24Merge branch 'master' of git.tt-rss.org:fox/tt-rssAndrew Dolgov
2022-07-24use correct namespace for forked readability-phpAndrew Dolgov
2022-07-16Merge pull request 'Fix an error when disabling all user plugins' (#76) from ↵fox
yan12125/tt-rss:fix-setPlugins-error into master Reviewed-on: https://dev.tt-rss.org/fox/tt-rss/pulls/76
2022-07-16Fix an error when disabling all user pluginsChih-Hsuan Yen
If I enabled some user plugins via Preferences -> Plugins and then disabled all of them, an error occurred: Jul 16 22:34:20 php[100]: PHP Fatal error: Uncaught TypeError: array_filter(): Argument #1 ($array) must be of type array, null given in /usr/share/webapps/tt-rss/classes/pref/prefs.php:1027 Jul 16 22:34:20 php[100]: Stack trace: Jul 16 22:34:20 php[100]: #0 /usr/share/webapps/tt-rss/classes/pref/prefs.php(1027): array_filter() Jul 16 22:34:20 php[100]: #1 /usr/share/webapps/tt-rss/backend.php(136): Pref_Prefs->setplugins() Jul 16 22:34:20 php[100]: #2 {main} Jul 16 22:34:20 php[100]: thrown in /usr/share/webapps/tt-rss/classes/pref/prefs.php on line 1027 Apparently the issue was elevated from a warning to an error in PHP 8.0 [1]. [1] https://php.watch/versions/8.0/internal-function-exceptions
2022-07-16add missing files for forked idiormAndrew Dolgov
2022-07-16downgrade phpstan to 1.1.2Andrew Dolgov
2022-07-13af_redditimgur: absolutize links before processing themAndrew Dolgov
2022-07-13some very minor php8.1 warnings fixedAndrew Dolgov