aboutsummaryrefslogtreecommitdiff
path: root/libdino
Commit message (Collapse)AuthorAgeFilesLines
...
* 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-2820-340/+225
|
* Fix typos in comments and variable names (#269)linkmauve2018-01-103-4/+4
| | | Thanks `codespell`!
* Move to GNetworkMonitor (#236)Mathieu Bridon2018-01-094-58/+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
|
* Blocking setting in Contact Detailsfiaxh2017-10-313-0/+46
|
* xmpp-vala: Add support for XEP-0191: Blocking CommandEmmanuel Gil Peyrot2017-10-311-0/+1
|
* Remove new from struct initialisation, as it is deprecated (#180)linkmauve2017-10-231-2/+2
| | | | | | * Remove new from struct initialisation, as it is deprecated. * Use Map.has_key instead of Map.contains, as it is deprecated.
* Add oob tag to http-upload messagesfiaxh2017-10-221-3/+2
| | | | fixes #166
* Offline messages for MUCsfiaxh2017-10-223-14/+19
| | | | fixes #187
* PGP encrypted file transfersfiaxh2017-10-222-8/+46
|
* Handle file uploading in libdino & main, have http upload as providerfiaxh2017-10-212-29/+89
|
* http-files: max-file-size handlingfiaxh2017-09-261-1/+1
|
* Change conversation (un)read markingfiaxh2017-09-191-4/+0
|
* Use GNotification instead of libnotifyfiaxh2017-09-192-0/+13
|
* small fixesfiaxh2017-08-311-0/+1
|
* Use utc time everywherefiaxh2017-08-318-18/+18
|
* Download & inline display imagesfiaxh2017-08-317-4/+249
|
* libdino: try to load all plugins found in the respective foldersMarvin W2017-08-293-37/+65
|
* Plugins providing conversation items for ConversationViewfiaxh2017-08-285-4/+63
|
* Handle xmpp ?join and ?message urisfiaxh2017-08-251-14/+14
|
* Use single process, accept xmpp:-URIs as program argumentMarvin W2017-08-251-0/+36
|
* connection: keep-alive pings, act upon connection change (VPN)fiaxh2017-08-254-8/+63
|
* "Default" per-contact settings (change UI)fiaxh2017-08-251-3/+5
|
* Show nicks in MUCs, real jid in individual occupant menufiaxh2017-08-253-21/+30
|
* fixup 4a4b595fiaxh2017-08-221-0/+1
|
* Move settings from GSettings to own dbfiaxh2017-08-229-86/+85
|
* README: Discussion MUC, change urlfiaxh2017-08-222-2/+2
|
* MAM fixesfiaxh2017-08-193-18/+29
| | | | | | - don't send first request for timestamp -60 - only open conversation for messages within last 24h - always show latest message in conversation tabs
* add plugin api for text commandsMarvin W2017-08-171-0/+9
|
* libdino: remove dependency to GTK+ (all GTK+ code is in main+plugins)Marvin W2017-08-175-20/+30
|