| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-11-26 | Add+use FeedParser::FEED_UNKNOWN | wn_ | |
| 2024-11-26 | Fix RDF feed support in FeedParser. | wn_ | |
| 2024-11-25 | API: allow catchup for search results (bumps api level to 22) | Andrew Dolgov | |
| 2024-11-24 | Use PHP 8 'str_' functions. | wn_ | |
| A few more characters in some places, but helps with readability. | |||
| 2024-11-24 | Use match expressions in some places. | wn_ | |
| 2024-11-24 | allow nullable password in auto_create_user for backwards compatibility | Andrew Dolgov | |
| 2024-11-24 | Merge branch 'getfiltertree-eldritch-horrors' into 'master' | Andrew Dolgov | |
| getfiltertree: switch to ORM and simplify code See merge request tt-rss/tt-rss!79 | |||
| 2024-11-24 | make filter search properly case-insensitive | Andrew Dolgov | |
| 2024-11-23 | Use native union types in most places. | wn_ | |
| 2024-11-23 | simplify resulting tree root object | Andrew Dolgov | |
| 2024-11-23 | getfiltertree: switch to ORM and simplify code | Andrew Dolgov | |
| 2024-11-23 | collapse actions summary list in filter tree if 'toggle rule display' is ↵ | Andrew Dolgov | |
| disabled, remove label-specific icon display, simplify markup | |||
| 2024-11-23 | fix text-muted being set to default text foreground color in light mode, ↵ | Andrew Dolgov | |
| adjust styling of filter actions list | |||
| 2024-11-23 | show cumulative score adjustment (if any) and up to 3 actions total in ↵ | Andrew Dolgov | |
| filter tree | |||
| 2024-11-23 | bump minimum required php version to 8.0 & remove some deprecated code | Andrew Dolgov | |
| 2024-11-23 | use select_many() without _expr | Andrew Dolgov | |
| 2024-11-23 | adjust indent | Andrew Dolgov | |
| 2024-11-23 | switch filters _get_rules_list() to ORM | Andrew Dolgov | |
| 2024-11-23 | pass resulting action description through gettext | Andrew Dolgov | |
| 2024-11-23 | set type hint for $action_descriptions | Andrew Dolgov | |
| 2024-11-23 | fix _get_name failing on filters without any rules because of wrong type of JOIN | Andrew Dolgov | |
| 2024-11-23 | get filter action descriptions on pref_filters class init instead of doing ↵ | Andrew Dolgov | |
| it all the time, use ORM in _get_action_name | |||
| 2024-11-23 | pref_filters - refactor _get_name to use ORM, show cumulative score in tree ↵ | Andrew Dolgov | |
| filter description | |||
| 2024-11-21 | Bump 'chillerlan/php-qrcode' to 5.0.x. | wn_ | |
| * Maintains PHP `7.4` compatibility and adds PHP `8.4` compatibility * The `4.4.x` branch does the same, but I didn't see any reason not to go to `5.0.x`. * https://github.com/chillerlan/php-qrcode/releases | |||
| 2024-11-19 | Fix array key warning in 'Feeds::_get_headlines()'. | wn | |
| 2024-11-18 | Eliminate use of deprecated 'get_pref()' and 'set_pref()'. | wn_ | |
| 2024-11-12 | Minor @var cleanup in Counters | wn_ | |
| 2024-11-12 | Move 'IVirtualFeed' checks into 'PluginHost::get_feed_handler()'. | wn_ | |
| 2024-11-12 | Remove some PHPStan ignores and make others rule-specific. | wn_ | |
| 2024-11-12 | Address PHPStan findings as of 2.0.1 | wn_ | |
| 2024-11-11 | Merge branch 'feature/search-improvements' into 'master' | Andrew Dolgov | |
| Search improvements See merge request tt-rss/tt-rss!72 | |||
| 2024-11-04 | fix get_self_url() misbehaving in plugins/ | Andrew Dolgov | |
| 2024-10-20 | Feeds::_search_to_sql(): updates for clarity and SQL quoting. | wn_ | |
| 2024-10-20 | Fix keyword searches with a quoted string value. | wn_ | |
| Before this change curly braces wrapped the keyword and its value, making the pair get treated as leftover words. Also make the search query modification and CSV parsing a bit clearer with some comments and minor refactoring. | |||
| 2024-10-15 | properly support search queries in viewfeed debugger, improve some debugging ↵ | Andrew Dolgov | |
| messages and output | |||
| 2024-10-01 | drop OPENTELEMETRY_ global config entries | Andrew Dolgov | |
| 2024-10-01 | drop opentelemetry | Andrew Dolgov | |
| 2024-09-15 | add another test for self url, split regex into two parts - one for plugins, ↵ | Andrew Dolgov | |
| one for everything else | |||
| 2024-09-14 | fix Config::get_self_url() invoked from plugin context, better deal with ↵ | Andrew Dolgov | |
| multiple trailing slashes in URL, update phpunit image path | |||
| 2024-08-24 | Set 'str_getcsv' escape param to empty string to avoid PHP 8.4 deprecation ↵ | wn_ | |
| message. The escape param is in the process of being eliminated, with PHP 8.4 deprecating passing anything but an empty string as its value. For some reason they're leaving the default value (a backslash) as-is, meaning the default will cause a deprecation message. This commit avoids that by setting the escape param to an empty string (see references below). * https://wiki.php.net/rfc/deprecations_php_8_4#deprecate_proprietary_csv_escaping_mechanism * https://www.php.net/manual/en/function.str-getcsv.php * https://old.reddit.com/r/PHP/comments/1eyum8c/new_deprecation_notices_in_php84_with_csv/ * https://nyamsprod.com/blog/csv-and-php8-4/ | |||
| 2024-08-21 | Fix some broken links and make minor wording tweaks. | wn_ | |
| 2024-08-16 | enforce lowercase usernames while keeping backwards-compatibility for ↵ | Andrew Dolgov | |
| authentication | |||
| 2024-08-14 | Remove unused 'dashboard feed' code. | wn_ | |
| Displaying auxiliary info when there's nothing to load is being handled in 'Feeds::_format_headlines_list()'. | |||
| 2024-08-04 | Replace basic 'isset()' cases with the null coalescing operator. | wn_ | |
| 2024-07-17 | Merge branch 'feature/php84-session_set_save_handler' into 'master' | Andrew Dolgov | |
| Switch to the non-deprecated form of 'session_set_save_handler'. See merge request tt-rss/tt-rss!44 | |||
| 2024-07-12 | Move side effects out of the 'Sessions' constructor. | wn_ | |
| 2024-07-11 | Add and use the 'Sessions' class. | wn_ | |
| 2024-07-05 | Don't reuse the '$matches' array in 'RSSUtils::decode_srcset()'. | wn_ | |
| This causes the size of the array to be incorrectly doubled due to the original regex match items being combined with the custom items (i.e. the ones with just 'url' and 'size' keys). Also rework 'RSSUtils::encode_srcset()' a bit so it looks similar to 'RSSUtils::decode_srcset()'. | |||
| 2024-06-19 | add some time-related debugging output for feeds and users | Andrew Dolgov | |
| 2024-06-18 | set DAEMON_FEED_LIMIT to 50 by default and use it consistently between ↵ | Andrew Dolgov | |
| forking daemon and any other update methods | |||