summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-02-25actions dropdown: add context-sensitive UI layout labelsAndrew Dolgov
2022-02-25getAllCounters: set default value if frontend doesn't pass label or feed id ↵Andrew Dolgov
count
2022-02-24 * add actions dropdown to toggle combined modeAndrew Dolgov
* hide 'toggle widescreen' menu item when in combined mode * unify some mode toggling code in App
2022-02-23inline attachment links: break long words to prevent horizontal scrollingAndrew Dolgov
2022-02-20update.php: better error reporting if invoked with PHP SAPI other than CLIAndrew Dolgov
2022-02-20fix Feeds::_get_counters() used improperly as a replacement forAndrew Dolgov
getFeedUnread()
2022-02-20 * Feeds::_get_counters - fix retrieving unread for tagsAndrew Dolgov
* mark several symbols as @deprecated properly * replace uses of (deprecated) getFeedUnread() with Feeds::_get_counters()
2022-02-18rewrite_relative: prevent php warning when checking for unset content type ↵Andrew Dolgov
in EXTRA_SCHEMES_BY_CONTENT_TYPE
2022-02-17rewrite_relative: whitelist specific schemes for URLs with 'known' ↵Andrew Dolgov
content-types i.e. specified for enclosures
2022-02-17allow running as root in a container environmentAndrew Dolgov
2022-02-05Merge branch 'master' of git.tt-rss.org:fox/tt-rssAndrew Dolgov
2022-02-05note: use proper hook to set click handlersAndrew Dolgov
2022-02-03Merge pull request 'Replace deprecated `strftime`' (#66) from ↵fox
dxbi/tt-rss:replace-strftime into master Reviewed-on: https://git.tt-rss.org/fox/tt-rss/pulls/66
2022-02-03Replace deprecated `strftime`Felix Eckhofer
2022-02-01Merge branch 'master' of git.tt-rss.org:fox/tt-rssAndrew Dolgov
2022-02-01plugins/note: allow editing note by clicking on itAndrew Dolgov
2022-01-28Merge pull request 'Add workaround for boolean values being intergers with ↵fox
MySQL/PHP 8.1' (#65) from Schrottfresse/tt-rss:master into master Reviewed-on: https://git.tt-rss.org/fox/tt-rss/pulls/65
2022-01-28Add workaround for boolean values being intergers with MySQL/PHP 8.1Schrottfresse
2022-01-25make sure notification is closed when saving/creating filterAndrew Dolgov
2022-01-25fix filter last_triggered not updatingAndrew Dolgov
2022-01-21make sure #headline-spacer click to open prompt is not obscured whenAndrew Dolgov
mark as read on scroll is enabled https://community.tt-rss.org/t/click-to-open-next-unread-feed-hidden-by-scrolling/5190
2022-01-17Merge pull request 'Fix starred images not being deleted' (#64) from ↵fox
klempin/tt-rss:master into master Reviewed-on: https://git.tt-rss.org/fox/tt-rss/pulls/64
2022-01-16Fix starred images not being deletedPhilip Klempin
2022-01-14share plugin: fix previousAndrew Dolgov
2022-01-14rework several instances of translated strings being used with single quotes ↵Andrew Dolgov
as HTML element attribute values
2022-01-14Merge pull request '[RFC] update_rss_feed: juxtapose pdo and ORM commit on ↵fox
timestamp update' (#63) from rtollert/tt-rss:update-rss-deadlock1 into master Reviewed-on: https://git.tt-rss.org/fox/tt-rss/pulls/63
2022-01-13update_rss_feed: juxtapose pdo and ORM commit on timestamp updateRichard Tollerton
If for whatever reason $pdo holds a DDL lock on ttrss_entries, it could block ORM's save, leading to a deadlock. To work around this, call $pdo->commit() before ORM::for_table()->save().
2022-01-13Merge branch 'master' of git.tt-rss.org:fox/tt-rssAndrew Dolgov
2022-01-13Merge branch 'master' of git.fakecake.org:fox/tt-rssAndrew Dolgov
2022-01-13Headlines: fix multiple article ids not passed to setScore as an arrayAndrew Dolgov
2022-01-09Merge pull request 'af_readability: use data-src for images if available' ↵fox
(#62) from woodoo/tt-rss:master into master Reviewed-on: https://git.tt-rss.org/fox/tt-rss/pulls/62
2022-01-09af_readability: use data-src for images if availableEugene Molotov
data-src is popular attribute to store original images for lazy loading via javascript
2022-01-06Merge pull request 'themes: Fix incorrect blur and opacity interaction' ↵fox
(#61) from suraia/tt-rss:blur-opacity into master Reviewed-on: https://git.tt-rss.org/fox/tt-rss/pulls/61
2022-01-06generate a warning if plugin-generated content of HOOK_ARTICLE_BUTTON or ↵Andrew Dolgov
_LEFT_BUTTON can't be parsed as valid XML
2022-01-05themes: Fix incorrect blur and opacity interactionMichael Kuhn
Chrome sometimes seems to have problems when using a blur backdrop-filter in combination with opacity. On Linux, this often results in the blur being completely ignored. This also seems to apply to other systems, though. See the following issue for more details: https://bugs.chromium.org/p/chromium/issues/detail?id=1129838 Making the background opaque using rgba seems to fix the problem.
2021-12-23process gallery media in the correct orderAndrew Dolgov
2021-12-23fetch: return HTTP code when no curl_error() is availableAndrew Dolgov
2021-12-23remove deprecated LOG_ constantsAndrew Dolgov
2021-12-20rssutils: rewrite several invocations of (deprecated) rewrite_relative_url() ↵Andrew Dolgov
to UrlHelper::rewrite_relative()
2021-12-20filters:Andrew Dolgov
* add filter action to ignore feed-provided tags * simplify handling of various filter-provided tags * bump schema to 146
2021-12-16af_redditimgur: don't generate a warning if fallback video is not found for ↵Andrew Dolgov
hosted:video post
2021-12-14 * fox.form.Select: add several properties allowing it to betterAndrew Dolgov
imitate other controls like DropDownButton, etc. * rework several main toolbar items to use fox.form.Select instead of other controls * replace HOOK_HEADLINE_TOOLBAR_SELECT_MENU_ITEM with HOOK_HEADLINE_TOOLBAR_SELECT_MENU_ITEM2 because of markup change (option instead of menuitem) * PluginHost: add some explicit typecasts to make intellephense shut up
2021-12-14PluginHost: add run_until() and HOOK_HEADLINE_TOOLBAR_SELECT_MENU_ITEM2Andrew Dolgov
2021-12-14Merge pull request 'Handle the admin user not having any entries in ↵fox
'Feeds::_get_global_unread'.' (#60) from wn/tt-rss:bugfix/get-global-unread-admin-null into master Reviewed-on: https://git.tt-rss.org/fox/tt-rss/pulls/60
2021-12-14Handle another potential 'SUM()' null situation in Feeds.wn_
2021-12-14Add a note on why ed74c43f18 was needed.wn_
2021-12-14Handle the admin user not having any entries in 'Feeds::_get_global_unread'.wn_
2021-12-07Merge branch 'weblate-integration'Andrew Dolgov
2021-12-06 * add HOOK_POST_LOGOUTAndrew Dolgov
* auth_remote: add config option AUTH_REMOTE_POST_LOGOUT_URL
2021-12-06af_comics: add Powerup Comics and Danby DrawsAndrew Dolgov