summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
4 daysMerge branch 'feature/support-feed-link-in-body' into 'master'HEADmasterAndrew Dolgov
Check 'head' and 'body' when searching HTML for feed links. See merge request tt-rss/tt-rss!30
4 daysCheck 'head' and 'body' when searching HTML for feed links.wn_
YouTube, for some reason, puts theirs in 'body'.
2024-04-21Merge branch 'feature/composer-autoload-functions' into 'master'Andrew Dolgov
Move common 'include/functions.php' require into Composer autoloader. See merge request tt-rss/tt-rss!28
2024-04-20Move 'include/functions.php' require into Composer autoloader.wn_
Autoloader regenerated with 'composer dump-autoload --optimize'.
2024-04-16Merge branch 'feature/php84-explicit-nullable-params-2' into 'master'Andrew Dolgov
Switch 2 more implicitly nullable params to explicitly nullable. See merge request tt-rss/tt-rss!27
2024-04-16Switch 2 more implicitly nullable params to explicitly nullable.wn_
Missed in https://gitlab.tt-rss.org/tt-rss/tt-rss/-/merge_requests/26 . https://wiki.php.net/rfc/deprecate-implicitly-nullable-types
2024-04-13force-set absolute path for local cache if CACHE_DIR config value is relativeAndrew Dolgov
2024-03-26Merge branch 'feature/php84-explicit-nullable-params' into 'master'Andrew Dolgov
Make implicitly nullable parameters explicitly nullable. See merge request tt-rss/tt-rss!26
2024-03-26Make implicit nullable parameters explicitly nullable.wn_
This is to address a deprecation planned for PHP 8.4. https://wiki.php.net/rfc/deprecate-implicitly-nullable-types
2024-03-23Merge branch 'feature/prefs-search-submit' into 'master'Andrew Dolgov
Support doing a prefs page search via Enter. See merge request tt-rss/tt-rss!25
2024-03-23Support doing a prefs page search via Enter.wn_
2024-03-05Update CONTRIBUTING.mdAndrew Dolgov
2024-02-21add HOOK_VALIDATE_SESSIONAndrew Dolgov
2024-02-18use update job templateAndrew Dolgov
2024-02-17fix demo values file, drop .helmAndrew Dolgov
2024-02-17add demo job backAndrew Dolgov
2024-02-17more prod helm stuffAndrew Dolgov
2024-02-17unquote commit hash & add files to commitAndrew Dolgov
2024-02-17maybe fix placeholder git nameAndrew Dolgov
2024-02-17set placeholder git email/nameAndrew Dolgov
2024-02-17set imageAndrew Dolgov
2024-02-17wip: update-prodAndrew Dolgov
2024-02-15Merge branch 'bugfix/backup-script-perms' into 'master'Andrew Dolgov
Ensure correct permissions on the backup script. See merge request tt-rss/tt-rss!24
2024-02-14Ensure correct permissions on the backup script.wn_
2024-02-06Merge branch 'bugfix/hook-fetch-feed-auth' into 'master'Andrew Dolgov
Fix passing auth credentials to plugins for HOOK_FETCH_FEED. See merge request tt-rss/tt-rss!23
2024-02-06Fix passing auth credentials to plugins for HOOK_FETCH_FEED.wn_
2024-02-02implement above changes for 3 panel view, add basic tooltipAndrew Dolgov
2024-02-02make headline elements with feed title lead to originating site while RSS ↵Andrew Dolgov
icon elements lead to the feed within tt-rss UI
2024-02-02fix unfunctional rss icon in grouped-by-feed headingAndrew Dolgov
2024-02-01use OCI for integration testsAndrew Dolgov
2024-02-01fix missing includeAndrew Dolgov
2024-02-01switch to template helm ciAndrew Dolgov
2024-01-28Merge branch 'feature/rssutils-use-feedenclosure' into 'master'Andrew Dolgov
Use FeedEnclosure throughout RSSUtils. See merge request tt-rss/tt-rss!22
2024-01-20Use FeedEnclosure throughout RSSUtils.wn_
2024-01-19Merge branch 'bugfix/web-nginx-healthcheck' into 'master'Andrew Dolgov
Use APP_BASE in the web-nginx health check URL. See merge request tt-rss/tt-rss!21
2024-01-19Use APP_BASE in the web-nginx health check URL.wn_
2024-01-13Merge branch 'feature/unused-var-cleanup' into 'master'Andrew Dolgov
Clean up some unused variables. See merge request tt-rss/tt-rss!19
2024-01-13Merge branch 'feature/reduce-fetch-error-message' into 'master'Andrew Dolgov
Only include the exception message in 'UrlHelper::$fetch_last_error'. See merge request tt-rss/tt-rss!20
2024-01-09Only include the exception message in 'UrlHelper::$fetch_last_error'.wn_
Before this the stack trace was included, which is a bit much.
2024-01-09shorten DIGEST_MIN_SCORE help textAndrew Dolgov
2024-01-09 * mark get_pref/set_pref wrappers as deprecatedAndrew Dolgov
* add per-user preference for minimal score required for digest
2024-01-09* mail test - fill user email address as defaultAndrew Dolgov
* digest - fix some warnings
2024-01-08Clean up some unused variables.wn_
This is essentially https://gitlab.tt-rss.org/wn/tt-rss/-/commit/1ccc0c8c1af04dd9654b585c6d07e3a75d944a0c without the renames and some other things related to Psalm.
2023-12-31Merge branch 'feature/urlhelper-fetch-do-assoc-opts' into 'master'Andrew Dolgov
Update all UrlHelper::fetch() calls to use the associative array approach. See merge request tt-rss/tt-rss!18
2023-12-30Update all UrlHelper::fetch() calls to use the associative array approach.wn_
The other approach (passing in individual params) was marked as deprecated a few years ago.
2023-12-29Merge branch 'feature/early-fail-disallowed-redirects' into 'master'Andrew Dolgov
Perform validation of redirect URLs during the redirect process. See merge request tt-rss/tt-rss!17
2023-12-29Perform validation of redirect URLs during the redirect process.wn_
Previously, validation was only done after all redirects and the final request had completed. This approach ensures all redirects are to URLs that pass extended validation.
2023-12-24Merge branch 'feature/use-guzzle' into 'master'Andrew Dolgov
Use Guzzle See merge request tt-rss/tt-rss!16
2023-12-24Fix specifying auth type in UrlHelper::fetch(), add a test for 403 auth retry.wn_
2023-12-23Appease PHPStan in UrlHelperTestwn_