aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Handle multiple chat state notifications per bare jidfiaxh2018-03-106-51/+119
| | | | fixes #117
* Only notify on last MAM message, only if not readfiaxh2018-03-066-27/+74
| | | | fixes #293
* Move notification sounds (canberra dependency) into plugin, introduce ↵fiaxh2018-03-0513-75/+130
| | | | libdino/NotificationEvents
* Implement notification soundsRahix2018-02-177-1/+49
| | | | | | 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.
* Use correct host name for TLS when using xmppsfiaxh2018-02-111-1/+1
|
* Add forgotten strings to translations (#282)linkmauve2018-02-022-3/+3
|
* Small fixesfiaxh2018-01-308-15/+10
|
* http-files: Report correct file size for encrypted files (slot request)fiaxh2018-01-282-15/+15
|
* Make slack workarounds use in-pipelinefiaxh2018-01-282-20/+29
|
* Only display transferred images, display file names, open in system viewer, ↵fiaxh2018-01-2813-75/+52
| | | | include and use pgp embedded file names
* Visually highlight mentions in MUCsfiaxh2018-01-286-11/+43
| | | | fixes #267
* Pipeline for incoming messages in libdinofiaxh2018-01-2820-153/+371
|
* Render avatar on demandMarvin W2018-01-2820-93/+424
|
* Small fixes to MucManagerMarvin W2018-01-282-5/+10
|
* 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-28116-944/+908
|
* Update translationsTranslations2018-01-2443-396/+1149
|
* Initial Catalan translation. (#279)Jordi Mallach2018-01-243-0/+618
| | | | | | * Initial Catalan translation. * Add OMEMO and OpenPGP plugin translations.
* Fix typos in comments and variable names (#269)linkmauve2018-01-1011-14/+14
| | | 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-093-8/+23
| | | | | | | | * Added support for setting a new Affiliation in a muc * small changes * fix parameter order
* Tab completion: Case insensitive, handle spacesfiaxh2018-01-062-5/+7
|
* Show error on invalid TLS certificatefiaxh2018-01-048-44/+66
|
* Small fixes to signal-protocol-c helper functionsMarvin W2018-01-041-1/+2
| | | | ref #253
* Update translationsTranslations2017-12-3136-2137/+2664
|
* Restore window state (size, maximized, position)fiaxh2017-12-316-26/+118
|
* Place time+encryption+read directly right of namefiaxh2017-12-317-134/+167
|
* Clear chat states on own/contact disconnectfiaxh2017-12-302-1/+2
| | | | fixes #197
* Show subscription request in conversation summaryfiaxh2017-12-3015-89/+202
|
* Fallback display for all file typesfiaxh2017-12-138-131/+255
|
* Load messages for conversation view from cachefiaxh2017-12-133-10/+38
|
* Match message with previously arrived markerfiaxh2017-12-053-15/+30
|
* Repopulate message TextView context menu, include "Copy URL" (#219)Yussuf Khalil2017-12-051-6/+48
| | | | | | * Add "Copy URL" context menu option when hovering over a URL * Update message_textview.vala
* Rename resources to have a reverse DNS prefixfiaxh2017-12-0331-34/+34
|
* Use reverse DNS naming for icon, desktop file, DBus service, app ID (#221)Mathieu Bridon2017-12-037-10/+10
| | | | | | | The convention is to use reverse DNS for the DBus service names, icons, desktop files and application ID. Flatpak enforces that convention, and even requires at least 3 components in those names.
* ConversationView: Date separatorfiaxh2017-12-019-18/+138
|
* http-files: async file downloadfiaxh2017-11-271-29/+32
|
* Update translationsTranslations2017-11-2433-831/+834
|
* Reword some strings (#215)Allan Nordhøy2017-11-233-8/+8
| | | | | | | | | | | | | | | | | | | | | | * conference_s_, Members only room, Too many occupants in room * conferences → conference * No active conversations/accounts * "the account" and escaped apostrophe * leaves, the subject, Required password, voiced, backlog * Members-only room * Remove the \'%s\' account? * Chosen password required for room entry * if any * muc password, voiced, remove account
* Fix memory leakfiaxh2017-11-2310-18/+22
|
* Async service lookup, connect and writefiaxh2017-11-239-52/+114
|
* Disconnect stanza listeners from pipelinefiaxh2017-11-2211-33/+59
|
* ConversationView: Split merged messages when an in-between one is addedfiaxh2017-11-223-11/+68
|
* Update translationsTranslations2017-11-1840-3384/+5453
|
* Fix unit tests using async + read message markerfiaxh2017-11-176-26/+21
|
* fixup 3f531d6fiaxh2017-11-161-1/+1
|
* Read+(write) stream asyncfiaxh2017-11-1632-390/+469
|
* Replace deprecated function usagesfiaxh2017-11-1611-20/+20
|
* small fixesfiaxh2017-11-012-2/+1
|
* small fixesfiaxh2017-11-012-5/+2
|