summary refs log tree commit diff
path: root/src/popups/UserMentions.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove some redundant functionsNicolas Werner2020-05-301-4/+7
|
* fix c++11 range-loop might detach Qt containerNicolas Werner2020-02-071-1/+1
|
* Remove more unneeded headersNicolas Werner2020-01-311-0/+3
|
* Reduce overhead of Cache.hNicolas Werner2019-12-151-1/+1
|
* Replace timeline with empty qml viewNicolas Werner2019-11-231-35/+42
|
* Fix themeing issues on mentionsJoseph Donofry2019-08-291-1/+11
|
* More updates to mentions functionalityJoseph Donofry2019-08-191-8/+10
|
* Fix issues with caching and loading of mentions.Joseph Donofry2019-08-121-5/+46
| | | | | | | Mentions are now loaded from the cache instead of directly from the web request. Mentions are also properly saved to the cache now (instead of as empty strings). Still lots of tweaks left on this feature.
* Cache User MentionsJoseph Donofry2019-08-091-0/+108
Cache user mentions when they are retrieved from the server. This logic currently isn't being utilized by the UI. Additionally, the app should use a 'since' value to only get mentions newer than those stored in the DB, to avoid excessive web requests. This will be implemented in a future commit.