summaryrefslogtreecommitdiff
path: root/js
AgeCommit message (Collapse)Author
2021-03-01simplify internal authentication code and bump default algo to SSHA-512Andrew Dolgov
2021-02-28speed up plugin updating a bit, fix some phpstan warningsAndrew Dolgov
2021-02-28some plugin updater UI improvementsAndrew Dolgov
2021-02-28plugin updater: show changes before updatingAndrew Dolgov
2021-02-27add plugin updates checker into normal updates checkerAndrew Dolgov
2021-02-27don't try to update all pluginsAndrew Dolgov
2021-02-27reload prefs when plugin updater is closedAndrew Dolgov
2021-02-27only show plugin update buttons when neededAndrew Dolgov
2021-02-27add basic updater for stuff in plugins.localAndrew Dolgov
2021-02-26Merge pull request 'fix-mysql-support' (#10) from ↵fox
klatch/tt-rss:fix-mysql-support into master Reviewed-on: https://git.tt-rss.org/fox/tt-rss/pulls/10
2021-02-26check if client-presented URL scheme is different from one configured in ↵Andrew Dolgov
SELF_URL_PATH
2021-02-26add Prefs::DEBUG_HEADLINE_IDSAndrew Dolgov
2021-02-26pass translations to frontend as a json objectAndrew Dolgov
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-24add hide/show events for feeds sidebarAndrew Dolgov
2021-02-24decouple runtime-info object from countersAndrew Dolgov
2021-02-24request label counters conditionallyAndrew 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-24no special counter handling for catchupAllAndrew Dolgov
2021-02-24try to calculate counters conditionally based on feed idsAndrew Dolgov
2021-02-23drop errors.php and simplify error handlingAndrew Dolgov
2021-02-23App.requestCounters() is not a thingAndrew Dolgov
2021-02-22reinstate HOOK_RENDER_ENCLOSUREAndrew Dolgov
2021-02-21move published opml JS code to pref helpersAndrew Dolgov
2021-02-21Merge branch 'master' of git.tt-rss.org:fox/tt-rssAndrew Dolgov
2021-02-21batch editor: comment out getChildByNameAndrew Dolgov
2021-02-21batch feed editor: use tab layout, cleanupAndrew Dolgov
2021-02-21Open the default feed after unsubscribing.wn_
Previously the UI appeared to hang, even though the backend request had already completed successfully.
2021-02-21minor filter UI layout fixAndrew Dolgov
2021-02-21prevent creation of filter rules matching no feedsAndrew Dolgov
2021-02-21Merge branch 'wip-filter-stuff'Andrew Dolgov
2021-02-21Element visible: check for offsetHeight/offsetWidthAndrew Dolgov
2021-02-21deal with filter actions UIAndrew Dolgov
2021-02-21for the most part, deal with filter rules UIAndrew Dolgov
2021-02-20more filter stuffAndrew Dolgov
2021-02-20prevent filter selected text dialog from opening in wrong orderAndrew Dolgov
2021-02-20a few more methods shuffled aroundAndrew Dolgov
2021-02-20first for filter frontend overhaulAndrew Dolgov
2021-02-20haven't i fixed this alreadyAndrew Dolgov
2021-02-20feed editor: use client dialogAndrew Dolgov
2021-02-20wip: feed editor client-sideAndrew Dolgov
2021-02-19fix for startup crash because of classes containing spacesAndrew Dolgov
2021-02-19modify classname helpers to use element.classList; fix feed debugger & ↵Andrew Dolgov
share--get
2021-02-19headlines.select: maybe fix another oneAndrew Dolgov
2021-02-19render feed icon markup on the clientAndrew Dolgov
2021-02-19format note on the clientAndrew Dolgov
2021-02-19add onTagsUpdated similar to onLabelsUpdatedAndrew Dolgov