aboutsummaryrefslogtreecommitdiff
path: root/libdino
Commit message (Collapse)AuthorAgeFilesLines
* Fix nick change in MUC, update bookmark accordingly; remove unused codefiaxh2020-04-263-55/+32
|
* xmpp-vala: Use more asyncfiaxh2020-04-241-1/+1
|
* Fix runtime critical from read marker sending (fixup 3a8fef7)fiaxh2020-04-241-1/+1
|
* Handle entity hash in server features node, make ServiceDiscovery ↵fiaxh2020-04-242-10/+8
| | | | request_info/items async, add caching has_entity_feature
* voice handling in moderated groups (#788)Anmol2020-04-223-1/+35
|
* Add file upload previewfiaxh2020-04-222-2/+21
| | | | fixes #756
* Remove features from service discovery module when detaching module from streamfiaxh2020-04-211-1/+1
| | | | | fixes #179 fixes #812
* Improve message read markers for MUCsfiaxh2020-04-211-5/+10
|
* Update last_activity before received_file signal to keep UI in sync (#811)kmq2020-04-181-1/+1
| | | | | Fixes #791 where a signal to update the UI is sent to late when sending files, resulting in an out of sync conversations list.
* Handle unknown own MUC jid betterfiaxh2020-04-142-9/+17
|
* Last message correction fixesfiaxh2020-04-061-0/+3
|
* Add keyboard shortcut (up key) to activate last message correctionfiaxh2020-04-052-2/+10
|
* Add support for last message correctionfiaxh2020-04-0310-11/+242
|
* Store entity identity info, use it in conversation list tooltipsfiaxh2020-03-297-32/+155
|
* Visually mark OMEMO messages from a trusted device as trustedfiaxh2020-03-291-0/+1
|
* Fix+optimize contact-to-avatar storage and loadingfiaxh2020-03-102-53/+51
|
* Fix messages to self being duplicatedfiaxh2020-03-091-4/+12
| | | | fixes #591
* Update live whether encryption is possible in MUC (lock icon visible)fiaxh2020-03-081-3/+3
|
* Make message sending async and set unsent on errorfiaxh2020-03-051-29/+37
|
* Improve MUC message resendingfiaxh2020-03-034-28/+42
|
* Move widget insertion logic from ConversationTitlebar to controllerfiaxh2020-02-221-7/+1
|
* Enable secure_delete PRAGMA on SQLite databases (#370)Alexander Krotov2020-02-211-0/+3
| | | | It is especially important for OMEMO database, as it stores *ephemeral* keys
* Preserve unchanged conference data (name) in bookmarksfiaxh2020-02-201-19/+4
| | | | fixes #748
* Only distinguish between typing or not (incoming)fiaxh2020-02-204-34/+65
| | | | fixes #739
* Correctly set direction in file transfers in MUCsfiaxh2020-02-201-1/+2
|
* Don't assume Jingle to be available in MUCsfiaxh2020-02-111-2/+3
|
* Don't process message markers on MUC messagesfiaxh2020-01-271-1/+5
|
* Fix invalid header creation for date separatorsMarvin W2020-01-221-2/+2
|
* Fix some compiler warningsMarvin W2020-01-222-10/+10
|
* Deactivate MUC conversations with non-autojoin bookmarksfiaxh2020-01-171-23/+23
|
* Fix ConversationRow closing if animations are disabledfiaxh2020-01-172-0/+7
|
* Correctly display names in groupchat pmsMarvin W2020-01-095-7/+15
| | | | Also show "Me" when no local alias is set instead of JID
* Fix auto-joining bookmark without nickfiaxh2020-01-082-3/+3
|
* Store MUC passwords in bookmarkfiaxh2019-12-241-20/+17
| | | | fixes #470
* Only cache fully normalized Jids for reverse lookupfiaxh2019-12-241-1/+5
|
* Don't show own typing notifications (other devices)fiaxh2019-12-241-0/+3
| | | | fixes #669
* Display correct name on outgoing file transfers in groupsMarvin W2019-12-233-8/+34
| | | | Fixes #248, #643
* Properly check Jids everywhereMarvin W2019-12-2312-56/+148
|
* Don't go through ConnectionManager for initial connection attemptfiaxh2019-12-232-18/+41
|
* Add timing to logs, fix issue of silently ignored I/O errorsMarvin W2019-12-221-2/+1
|
* Trim ms from local_time when creating messagesfiaxh2019-12-191-3/+5
| | | | Mss are striped when storing in db. Comparing messages with and without ms might lead to wrong orderings. Related: Message duplication in UI when scrolling up.
* Refactor MAM catchup. Fetch from latest to earliest message.fiaxh2019-12-184-90/+330
|
* Add (partial) support for unique stanza ids (XEP-0359)fiaxh2019-12-183-10/+49
|
* Add version and adjust some cmakeMarvin W2019-12-181-2/+6
|
* Fix chat marker sendingfiaxh2019-12-161-1/+1
|
* Only send new room config if something was changedfiaxh2019-12-161-5/+8
| | | | fixes #675
* Don't continue reading after stream was disconnected, make disconnecting asyncfiaxh2019-11-274-15/+22
| | | | fixes #636
* Don't require window object in notificationsfiaxh2019-11-261-5/+0
| | | | fixes #658
* Check window width and hight before (re)storing themfiaxh2019-11-262-57/+1
|
* Add support for HTTP Upload headersWiktor Kwapisiewicz2019-11-191-0/+1
| | | | | | | | | | | Some services use Authorization header [0] to pass upload credential data. This avoids the token being exposed in server logs and is allowed by XEP-0363 since version 0.5.0. This change adds support for headers allowed in XEP-0363: Authorization, Expires and Cookie. [0]: https://xmpp.org/extensions/xep-0363.html#request