summary refs log tree commit diff
path: root/src/popups (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix reply not closingNicolas Werner2020-04-132-147/+0
| | | | fixes #124
* Fix broken avatars in quick switcherNicolas Werner2020-03-221-2/+7
|
* fix c++11 range-loop might detach Qt containerNicolas Werner2020-02-071-1/+1
|
* Select first room on startupNicolas Werner2020-02-041-1/+2
|
* modernize: use nullptrNicolas Werner2020-02-042-4/+4
|
* Remove more unneeded headersNicolas Werner2020-01-312-4/+7
|
* Remove metatypes from headersNicolas Werner2020-01-312-5/+3
|
* Optimize includes a bitNicolas Werner2020-01-311-6/+1
|
* Add initial QML Reply PopupJoseph Donofry2020-01-271-1/+0
|
* Reduce overhead of Cache.hNicolas Werner2019-12-156-16/+12
|
* Reduce some include of Cache.h since it needs 11s on averageNicolas Werner2019-12-141-0/+2
|
* Replace timeline with empty qml viewNicolas Werner2019-11-231-35/+42
|
* Merge pull request #86 from Nheko-Reborn/avatar-memory-usageDeepBlueV7.X2019-08-301-21/+5
|\ | | | | Try to reduce memory usage by reusing avatar pixmaps
| * Try to reduce memory usage by reusing avatar pixmapsNicolas Werner2019-08-261-21/+5
| |
* | Fix themeing issues on mentionsJoseph Donofry2019-08-292-1/+15
|/
* More updates to mentions functionalityJoseph Donofry2019-08-192-9/+16
|
* Fix issues with caching and loading of mentions.Joseph Donofry2019-08-122-9/+52
| | | | | | | 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-092-0/+148
| | | | | | | | | 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.
* Further UI Updates to Rich RepliesJoseph Donofry2019-06-142-8/+14
|
* Further Improve Reply FunctionalityJoseph Donofry2019-06-134-26/+89
| | | | | | | Quoted replies now include matrix.to links for the event and the user. UI Rendering has been (slightly) improved... still very WIP. Restructured the reply structure in the code for future usability improvements.
* Add style for reply popup. Fix ALL of the linting issuesredsky172019-06-115-6/+4
|
* Initial Support for Rich RepliesJoseph Donofry2019-06-116-0/+554
Add placeholder UI for showing replies in the text entry widget. Existing quoting capability has been removed (Temporarily), as it was replaced with the new reply capability. Replies sent from nheko do not currently appear correctly in the timeline (this will be fixed in a future commit).