aboutsummaryrefslogtreecommitdiff
path: root/main/src/ui/conversation_content_view/conversation_item_skeleton.vala
Commit message (Collapse)AuthorAgeFilesLines
* Add WeakTimeout Pattern to Prevent LeaksChristopher Vollick2024-04-281-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While doing testing I noticed that skeletons were being leaked, and eventually tracked it down to the timer that updates the time label closing over "this" and then keeping the reference alive, potentially for 24 hours. I noticed a few other places in the code doing some version of this, and one of them had the "static and weak pointer" approach, which I pulled out into a util class. Now, we still have to make sure we're passing it a static method instead of a lambda, as that would also close over "this" and render the whole thing useless, but at least most of the annoying parts live in the util class now. Also the call_widget version was doing a weird thing where it was removing itself, but then returning "true"? I'm not sure what that accomplishes, because returning "false" means to not run this again. So I think my new version is the same in practice, but simpler... There are other timeouts in the code that I briefly looked over, but all of them seemed to be relatively short hard-coded durations, so I left them alone. But if any of them are long-lived, it's possible they could also benefit from this class in the future. Closes #1480 Co-Authored-By: Marvin W <git@larma.de>
* New Avatar UIMarvin W2023-03-051-8/+9
|
* Fix critical warnings after DTLS-SRTP calls without OMEMO verificationMarvin W2023-03-021-1/+1
| | | | libdino-CRITICAL **: dino_plugins_encryption_list_entry_get_encryption_icon_name: assertion 'self != NULL' failed
* Fix some memory leaksfiaxh2023-02-271-3/+33
|
* Fix various date/time stamps not updated or wrong time zoneMarvin W2023-02-071-7/+6
|
* Show "Me" instead of bare jid when no local alias is setMarvin W2023-02-071-1/+1
|
* Add tooltips to the delivered and read icons (#1341)Prashant Kumar2023-01-301-2/+8
|
* Fix UI for libadwaitaMarvin W2023-01-251-1/+1
|
* Add support for XEP-0461 replies (with fallback)fiaxh2023-01-061-8/+14
|
* Fix compiler warningsfiaxh2022-12-301-0/+3
|
* Add support for reactionsfiaxh2022-10-111-0/+10
|
* Fix encryption button update and reduce its required GTK versionfiaxh2022-08-211-7/+3
| | | | MenuButton.activate only exists since 4.4
* Disable tooltips for GTK 4.6.4 - 4.6.6fiaxh2022-08-201-2/+2
| | | | | A bug in GTK caused the application to crash in some tooltip-related conditions https://gitlab.gnome.org/GNOME/gtk/-/issues/4941
* Gtk4 bug fixes and improvementsMarvin W2022-07-271-6/+0
|
* Improve Gtk4 portfiaxh2022-07-271-16/+24
|
* Port from GTK3 to GTK4fiaxh2022-07-271-168/+97
|
* Remove color from /me name, remove use_markup from sender labelfiaxh2022-01-231-1/+1
|
* Display message sender in bold+text color instead of small+coloredfiaxh2022-01-051-3/+1
|
* Add 'unknown' encryption state for establishing callsfiaxh2022-01-041-1/+1
| | | | Currently, they are Encryption.NONE and thus marked as unencrypted in encrypted conversations
* Add (disabled) multi-party call UIfiaxh2021-11-101-1/+0
|
* Fix compiler warnings ('[GtkChild] fields must be declared as `unowned'')fiaxh2021-10-121-3/+3
|
* Fixed name change (#1076)sojuz1512021-08-241-2/+11
|
* Display message delivery error, color text using theme colorsfiaxh2021-08-171-0/+13
| | | | fixes #672
* Display+store call encryption infofiaxh2021-04-091-29/+45
|
* Fix cyclic referencefiaxh2021-02-171-7/+9
|
* Reduce use of Widget.destroy()fiaxh2021-02-101-1/+1
| | | | | | On non-toplevel windows, use Container.remove() instead of Widget.destroy() Needed for migration to GTK4 https://developer.gnome.org/gtk4/unstable/gtk-migrating-3-to-4.html#id-1.7.4.3.17
* Use advertized/server/live time for sorting instead of arrival timefiaxh2020-12-041-3/+3
| | | | fixes #310
* Fix warning when clicking to correct a messagefiaxh2020-09-101-5/+0
|
* Fix cyclic references => let objects be freedfiaxh2020-06-031-3/+17
|
* Add file upload previewfiaxh2020-04-221-2/+2
| | | | fixes #756
* Fix unencrypted message warning when switching between encryptionsfiaxh2020-04-051-11/+11
|
* Add support for last message correctionfiaxh2020-04-031-2/+18
|
* Visually mark unencrypted messages if conversation is encryptedfiaxh2020-03-291-0/+21
|
* Visually mark OMEMO messages from a trusted device as trustedfiaxh2020-03-291-7/+19
|
* Update time labels in conversation view at the moment they actually changefiaxh2020-03-261-11/+27
|
* Only create ItemMetaDataHeader and AvatarImage once it is actually displayedfiaxh2020-03-241-18/+19
|
* Move message hover effect into converstion viewfiaxh2020-03-211-16/+10
|
* Rename folders/files conversation_summary -> conversation_content_viewfiaxh2020-02-221-0/+221