Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jangernert/FeedReader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-02-09Auto-fill missing schema in TT-RSS URLttrss-improvementsBrendan Long
This should make it less confusing if users pull in a host name with no scheme. I made it default to https:// for safety but this should make it sufficiently obvious if the right scheme is http:// (I intentionally made it update the input box so people can see what we're doing).
2019-02-09Simplify TT-RSS error loggingBrendan Long
There was debug logging littered across the code, printing every request and response 2-3 times.
2019-02-09Stronger typing in ttrssAPIBrendan Long
- Build up the request body using the Json module instead of manual string creation - Make all of the arguments correctly typed (int lists, ints, etc.) - Various minor improvements (constants, fewer shared members)
2019-02-09Make ttrssAPI.updateArticleUnread take a string listBrendan Long
2019-02-09Improve ttrsAPI status code handlingBrendan Long
- Do early returns where it makes sense - Rename "error" to "status" since most of the time it's not an error
2019-02-09Improve arguments in ttrssAPI.getArticlesBrendan Long
Take a string list instead of a comma separated string, and just return the articles.
2019-02-09Remove unused ttrssAPI membersBrendan Long
2019-02-09Add a MakefileBrendan Long
This is just a wrapper around ninja since I'm lazy and get tired of typing `ninja -C builddir test`
2019-02-09Assume feed URL's with no scheme should start with http://Brendan Long
This makes it easier to add a feed and matches the behavior users expect from working with browsers.
2019-02-06Don't print passwords in the TT-RSS pluginBrendan Long
2019-02-05Merge branch 'origin/master' into Weblate.Hosted Weblate
2019-02-05Translated using Weblate (Turkish)Ali Demirtas
Currently translated at 100.0% (221 of 221 strings) Translation: FeedReader/Translations Translate-URL: https://hosted.weblate.org/projects/feedreader/translations/tr/
2019-02-01v2.7.1 releasev2.7.1Brendan Long
2019-02-01Work around db.read_tag() returning nullBrendan Long
This shouldn't happen, but it does sometimes. For now, at least make us not crash.
2019-02-01Fix article taggingBrendan Long
A commit a long time ago removed the tags column from articles and replaced it with the taggings table, but it looks like the code to rename and delete tags, and also to show all tagged articles was broken. This fixes all of the references to the old tags column and switches them to reference taggings instead. I also inlined the all-tags subquery. This should fix #840
2019-02-01Remove one more unused m_dbBrendan Long
2019-01-292.7.0 releasev2.7.0Brendan Long
2019-01-29Re-use databases in the most obvious (single function) casesBrendan Long
These cases don't involve any threading so this should speed things up a little without any risk.
2019-01-29Make the local feed initial setup async againBrendan Long
My previous commits made the initial sync prevent the feed screen from coming up until it was finished. This makes that piece async again.
2019-01-29Don't re-use database connections at allBrendan Long
This is a really heavy-handed way to fix thread safety in our plugins, by using a different SQLite handle every time we do anything with the DB.
2019-01-29Remove unsafe threadingBrendan Long
- Fix grabber to do DB inserts in the main thread - Remove unsafe threading throughout the UI
2019-01-28meson: fix finding libcurlworldofpeace
compiler.find_library expects the lib_name without lib prefix.
2019-01-24Prepare v2.6.2 releasev2.6.2Brendan Long
2019-01-24Translated using Weblate (Belarusian)Viktar Vauchkevich
Currently translated at 6.8% (15 of 221 strings) Translation: FeedReader/Translations Translate-URL: https://hosted.weblate.org/projects/feedreader/translations/be/
2019-01-22Merge branch 'origin/master' into Weblate.Hosted Weblate
2019-01-22Translated using Weblate (French)Nathan
Currently translated at 100.0% (221 of 221 strings) Translation: FeedReader/Translations Translate-URL: https://hosted.weblate.org/projects/feedreader/translations/fr/
2019-01-04Fix crashes caused by ArticleList.m_loadThreadAldo Gunsing
2018-12-28Run Vala code though UncrustifyBrendan Long
This uses the changes in these two Uncrustify pull requests: https://github.com/uncrustify/uncrustify/pull/2142 https://github.com/uncrustify/uncrustify/pull/2137
2018-12-27Fix DataBaseWriteAccess.resetDB (#821)Aldo Gunsing
2018-12-25Merge pull request #820 from 39aldo39/fix-decsync-dir-accessBilal Elmoussaoui
Add access to the default DecSync directory (flatpak)
2018-12-24Merge pull request #822 from City-busz/patch-3Bilal Elmoussaoui
Don't use legacy path for AppStream metainfo file
2018-12-24Don't use legacy path for AppStream metainfo fileBalló György
Metainfo files should be installed into /usr/share/metainfo.
2018-12-20Add access to the default DecSync directory (flatpak)Aldo Gunsing
2018-12-15Make 0 an allowed sync settingBrendan Long
Fixes #762
2018-12-07Merge branch 'origin/master' into Weblate.Hosted Weblate
2018-12-07Translated using Weblate (Finnish)Jiri Grönroos
Currently translated at 92.8% (205 of 221 strings) Translation: FeedReader/Translations Translate-URL: https://hosted.weblate.org/projects/feedreader/translations/fi/
2018-12-07Merge commit 'ebc5714fff05b4904d8a9e2aea179a242c83ccdc' as ↵v2.6.1Brendan Long
'plugins/backend/decsync/libdecsync'
2018-12-07Squashed 'plugins/backend/decsync/libdecsync/' content from commit 30681106Brendan Long
git-subtree-dir: plugins/backend/decsync/libdecsync git-subtree-split: 30681106cf38c4017e428630ee365e1a15eed318
2018-12-07Merge commit 'd573b791800f7d5eadcbbacccdff1a64f39da6a3' as 'data/GrabberConfig'Brendan Long
2018-12-07Squashed 'data/GrabberConfig/' content from commit 9c110392Brendan Long
git-subtree-dir: data/GrabberConfig git-subtree-split: 9c110392dca0874cb6c0f5cf3dcd4bc358446ccf
2018-12-07Add script to pull subtreesBrendan Long
2018-12-07Remove submodulesBrendan Long
2018-12-042.6.0 releasev2.6.0Brendan Long
2018-12-04Set default URL in local and decsync plugin to nullBrendan Long
2018-11-29Small improvements in local/decsync backendAldo Gunsing
2018-11-29Deduplicate shared libraries between local and decsync backendsAldo Gunsing
2018-11-29Small improvementsAldo Gunsing
2018-11-29Use db.read_category instead of removed db.category_existsAldo Gunsing
2018-11-29Add DecSync pluginAldo Gunsing
2018-11-29Add alwaysSetReadByID option to pluginsAldo Gunsing