aboutsummaryrefslogtreecommitdiff
path: root/libdino
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Don't attempt DNS SRV lookups in connection fallbackfiaxh2019-11-181-1/+1
|
* Open new connection to send filled-in registration formfiaxh2019-11-181-3/+38
| | | | fixes #644
* Parse presence delivery errors when joining MUCfiaxh2019-11-171-5/+6
| | | | fixes #224
* Don't attempt jingle file transfers in MUCsfiaxh2019-11-172-0/+5
|
* Don't send delivery recipts or chat states for own messagesfiaxh2019-10-221-2/+11
| | | | fixes #631
* Base avatars and names on conversation, not JID.Marvin W2019-10-183-12/+22
| | | | Fixes #598
* Use log during IBRMarvin W2019-10-182-1/+3
|
* Fix critical warning in roster manager when account gets offlineMarvin W2019-10-181-0/+2
|
* Allow to run Dino as background serviceMarvin W2019-10-181-0/+2
|
* Rework no-open-conversation placeholderfiaxh2019-10-012-0/+2
|
* Add Bookmarks2 implementation, introduce bookmarks interfacesfiaxh2019-09-292-60/+86
|
* Improve conversation unread status detectionfiaxh2019-09-292-0/+39
|
* Add JET supportMarvin W2019-09-163-67/+142
|
* fixup Fix some warningsfiaxh2019-09-101-4/+2
|
* Fix some warningshrxi2019-09-101-32/+42
| | | | | | Instances of `RegexError` are just asserted as `assert_not_reached` as they cannot really fail except for allocation failure if the given regex is valid.
* Do not mark abstract class contstuctors publicRandy Barlow2019-09-011-1/+1
| | | | | | | | | | | | | Starting with Vala 0.45.1, it is an error to mark abstract class constructors public[0,1]. This commit removes three such declarations. fixes #609 [0] https://gitlab.gnome.org/GNOME/vala/raw/master/NEWS [1] https://gitlab.gnome.org/GNOME/vala/issues/766 Signed-off-by: Randy Barlow <randy@electronsweatshop.com>
* Fix message type of chat state notificationfiaxh2019-08-301-1/+1
| | | | fixes #607
* Merge pull request #592 from hrxi/gsoc_1Marvin W2019-08-293-5/+9
|\ | | | | Add SOCKS5 bytestreams and a couple of other fixes
| * Add support for Jingle SOCKS5 bytestreams (XEP-0260)hrxi2019-08-051-0/+2
| |
| * Fix a warninghrxi2019-08-051-1/+5
| |
| * Close files involved in file transfers explicitlyhrxi2019-08-051-4/+2
| |