aboutsummaryrefslogtreecommitdiff
path: root/libdino/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into omemo-mucSamuel Hand2018-08-111-2/+2
|\
| * Fix MUC messages from others being marked as readfiaxh2018-08-061-2/+2
| |
* | Fix mutual subscription detectionSamuel Hand2018-08-102-4/+5
| |
* | Fix bug where OMEMO not avaiable with a newly added contactSamuel Hand2018-08-051-0/+4
| |
* | Merge branch 'master' into omemo-mucSamuel Hand2018-08-041-5/+14
|\|
| * Support MUC avatarsfiaxh2018-07-311-5/+14
| |
* | Merge branch 'master' into omemo-mucSamuel Hand2018-07-301-0/+4
|\|
| * Fire signal on subscription approvalfiaxh2018-07-301-0/+4
| |
* | More cleanup and database modificationsMarvin W2018-06-262-0/+20
| |
* | Add trust management utilities to the omemo pluginSamuel Hand2018-06-111-0/+6
|/
* Fix empty display names, fix update contact roster namefiaxh2018-05-101-3/+3
|
* small fixesfiaxh2018-04-171-19/+32
|
* Do not mark messages as read if they are only marked as receivedThibaut Girka2018-03-221-0/+1
|
* Small connection fixesfiaxh2018-03-103-43/+37
|
* Only assume UUID to be unique for one counterpart+account when deduplicatingfiaxh2018-03-102-7/+17
|
* Recognize own MUC messages from other devicefiaxh2018-03-102-8/+16
|
* Handle multiple chat state notifications per bare jidfiaxh2018-03-102-11/+22
| | | | fixes #117
* Only notify on last MAM message, only if not readfiaxh2018-03-065-23/+68
| | | | fixes #293
* Move notification sounds (canberra dependency) into plugin, introduce ↵fiaxh2018-03-054-14/+54
| | | | libdino/NotificationEvents
* Implement notification soundsRahix2018-02-172-0/+14
| | | | | | Add a new setting to toggle notification sounds on or off. Plays the systems default instant messaging message sound (message-new-instant) whenever a notification is shown if toggled on.
* Small fixesfiaxh2018-01-303-4/+4
|
* Make slack workarounds use in-pipelinefiaxh2018-01-281-18/+29
|
* Only display transferred images, display file names, open in system viewer, ↵fiaxh2018-01-283-6/+12
| | | | include and use pgp embedded file names
* Visually highlight mentions in MUCsfiaxh2018-01-283-11/+17
| | | | fixes #267
* Pipeline for incoming messages in libdinofiaxh2018-01-285-79/+220
|
* Small fixes to MucManagerMarvin W2018-01-281-4/+9
|
* Fix certain Slack specific issues (using host-based workarounds)Marvin W2018-01-283-3/+36
|
* Move Jid class to xmpp-vala, partially refactor namespaceMarvin W2018-01-2819-339/+225
|
* Fix typos in comments and variable names (#269)linkmauve2018-01-103-4/+4
| | | Thanks `codespell`!
* Move to GNetworkMonitor (#236)Mathieu Bridon2018-01-093-56/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Move to GNetworkMonitor Dino currently talks to NetworkManager over DBus to know the state of the network. That doesn't work in a Flatpak sandbox by default though, because Flatpak filters DBus communications and only allows a very small set of things to pass (which are known to be safe). Gio provides an API to know the state of the network (and be notified of changes via a signal): GNetworkMonitor. And GNetworkMonitor works both inside a Flatpak sandbox, and in traditional builds. (in Flatpak it uses what we call a "portal", which are the clean, safe way to let apps exit their sandbox) Fixes #235 * Don't check for network connectivity for now The connectivity check really is the correct thing to do: * network_available means that the computer has network routes to "somewhere". That is, it is connected to a router. * connectivity.FULL means that the computer can access "the Internet". That is, if it is behind a router, that router is connected. As a result, only checking for network_available is not correct. Unfortunately, NetworkManager tends to wait a long time before checking for connectivity. As a result, it is possible that a transient network error leaves NetworkManager thinking that network_available is true but connectivity!=FULL, and it will wait several minutes before realizing that the Internet connexion did come back. During that time, apps checking for connectivity (e.g the whole GNOME desktop) will think they don't have access to the Internet, while apps that don't (e.g Firefox) will access the Internet just fine. Users are understandably confused when that happens. Removing the check for connectivity is an acceptable trade-off in the short-term, until this situation is improved on the NetworkManager side. https://bugzilla.gnome.org/show_bug.cgi?id=792240
* Add support for setting a new Affiliation in a muc (#266)David Plassmann2018-01-091-0/+5
| | | | | | | | * Added support for setting a new Affiliation in a muc * small changes * fix parameter order
* Show error on invalid TLS certificatefiaxh2018-01-041-12/+24
|
* Restore window state (size, maximized, position)fiaxh2017-12-311-0/+61
|
* Place time+encryption+read directly right of namefiaxh2017-12-311-4/+3
|
* Clear chat states on own/contact disconnectfiaxh2017-12-301-0/+2
| | | | fixes #197
* Show subscription request in conversation summaryfiaxh2017-12-302-5/+33
|
* Load messages for conversation view from cachefiaxh2017-12-131-6/+22
|
* Match message with previously arrived markerfiaxh2017-12-053-15/+30
|
* Rename resources to have a reverse DNS prefixfiaxh2017-12-031-1/+1
|
* ConversationView: Date separatorfiaxh2017-12-012-3/+3
|
* Async service lookup, connect and writefiaxh2017-11-231-1/+4
|
* ConversationView: Split merged messages when an in-between one is addedfiaxh2017-11-221-1/+10
|
* Update translationsTranslations2017-11-181-5/+7
|
* Fix unit tests using async + read message markerfiaxh2017-11-171-7/+1
|
* Read+(write) stream asyncfiaxh2017-11-161-32/+19
|
* Replace deprecated function usagesfiaxh2017-11-162-3/+2
|
* Go offline before quiting applicationfiaxh2017-10-312-5/+23
| | | | fixes #141
* Fix warningsfiaxh2017-10-315-23/+28
|
* Move DatabaseError handling into Qlitefiaxh2017-10-311-1/+1
|
* Keep MUC join dialog open until joined, show errorsfiaxh2017-10-312-6/+15
|