summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-02-25fix checkboxes shown as checked when they're not with mysqlFrenck Lutke
The issue occurs because boolean/tinyint values are retrieved from mysql as strings, and in php/js all non-empty strings are cast as boolean true. Current PDO mysql driver doesn't support `PDO::ATTR_STRINGIFY_FETCHES = false`, and if I disable prepare-emulation so it uses the native MySQL driver instead which supposedly does support it, prepare statements no longer play nice with named parameters. Every remaining clean solution that comes to mind that can cover all cases, just for MySQL, adds an annoying amount of additional code / overhead. As long as the `App.FormFields.checkbox_tag()` JS function is the only one suffering from the lack of conversion, I'll go with easy ugly over here.
2021-02-25add fallback for feed_language on edit-feed-savingFrenck Lutke
Feed_language is only included in the form if running on pgsql, failing the not null constraint on mysql setups.
2021-02-24Update translation filesWeblate
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: Tiny Tiny RSS/messages Translate-URL: https://weblate.tt-rss.org/projects/tt-rss/messages/
2021-02-24Merge branch 'master' of git.fakecake.org:fox/tt-rss into weblate-integrationAndrew Dolgov
2021-02-24rebase translationsAndrew Dolgov
2021-02-24add hide/show events for feeds sidebarAndrew Dolgov
2021-02-24add a hack to position labels on a dijit toolbar betterAndrew Dolgov
2021-02-24decouple runtime-info object from countersAndrew Dolgov
2021-02-24request label counters conditionallyAndrew Dolgov
2021-02-24fix warning in counters::get_feeds()Andrew Dolgov
2021-02-24pass array to setScoreAndrew Dolgov
2021-02-24pass a bunch of related arrays properly to backendAndrew Dolgov
2021-02-24fix typoAndrew Dolgov
2021-02-24only request counters once for headline mutationsAndrew Dolgov
2021-02-24cats_of: enforce owner_uidAndrew Dolgov
2021-02-24no special counter handling for catchupAllAndrew Dolgov
2021-02-24_cats_of: only request parents if neededAndrew Dolgov
2021-02-24try to calculate counters conditionally based on feed idsAndrew Dolgov
2021-02-23add Errors.phpAndrew Dolgov
2021-02-23drop errors.php and simplify error handlingAndrew Dolgov
2021-02-23App.requestCounters() is not a thingAndrew Dolgov
2021-02-23rename TTRSS_SESSION_NAME to SESSION_NAMEAndrew Dolgov
2021-02-23config: add a type hint systemAndrew Dolgov
2021-02-23add some ;sAndrew Dolgov
2021-02-23floIcon: declare images propertyAndrew Dolgov
2021-02-23cleanup some defined-stuffAndrew Dolgov
2021-02-23Merge branch 'wip-config-object'Andrew Dolgov
2021-02-23af_redditimgur: fix an oopsieAndrew Dolgov
2021-02-23af_redditimgur: fix an oopsiewip-config-objectAndrew Dolgov
2021-02-23cleanup config.php-distAndrew Dolgov
2021-02-22move db-prefs shortcut functions to functions.phpAndrew Dolgov
2021-02-22allow adding custom config optionsAndrew Dolgov
2021-02-22Merge branch 'master' of git.tt-rss.org:fox/tt-rss into wip-config-objectAndrew Dolgov
2021-02-22Merge pull request 'Check whether data is parsable by ↵fox
'imagecreatefromstring' in jimIcon.' (#7) from wn/tt-rss:jimIcon-imagecreatefromstring into master Reviewed-on: https://git.tt-rss.org/fox/tt-rss/pulls/7
2021-02-22update config.php-distAndrew Dolgov
2021-02-22finalize config:: migration; make config.php optionalAndrew Dolgov
2021-02-22update gitignoreAndrew Dolgov
2021-02-22don't include config.php everywhereAndrew Dolgov
2021-02-22migrate the rest into Config::Andrew Dolgov
2021-02-22add config.phpAndrew Dolgov
2021-02-22wip: initial for config objectAndrew Dolgov
2021-02-22Check whether data is parsable by 'imagecreatefromstring' in jimIcon.wn_
2021-02-22dirname(__FILE__) -> __DIR__Andrew Dolgov
2021-02-22do not use define_default() because it screws with static analyzersAndrew Dolgov
2021-02-22Merge pull request 'Let 'RSSUtils::check_feed_favicon' update existing ↵fox
favicons.' (#6) from wn/tt-rss:check-feed-favicon into master Reviewed-on: https://git.tt-rss.org/fox/tt-rss/pulls/6
2021-02-22Remove check against the old file in 'RSSUtils::check_feed_favicon'.wn_
2021-02-22fix several issues reported by phpstanAndrew Dolgov
2021-02-22add chrome configuration for debuggingAndrew Dolgov
2021-02-22add launch.json for xdebugAndrew Dolgov
2021-02-22reinstate HOOK_RENDER_ENCLOSUREAndrew Dolgov