aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update Catalan translation. (#647)Jordi Mallach2019-11-141-57/+57
|
* Fix reporting failed HTTP uploadWiktor Kwapisiewicz2019-11-041-1/+1
| | | | | | Status code can't be less than 200 and greater than or equal 300 at the same time. Using || instead of && marks all uploads that do not have 2xx status code as "failed".
* OMEMO: Don't set publish options, configure only bundle node insteadfiaxh2019-11-045-13/+58
|
* Fix OMEMO file transfer GCM tagMarvin W2019-10-282-2/+2
|
* Fix accept/reject new OMEMO key buttons in current Adwaita theme versionsfiaxh2019-10-281-19/+16
|
* Fix segfault in groupchat name generationfiaxh2019-10-231-1/+1
| | | | fixes #635
* Colapse inactive keys in OMEMO keys dialogfiaxh2019-10-226-99/+146
|
* Don't send delivery recipts or chat states for own messagesfiaxh2019-10-223-6/+15
| | | | fixes #631
* Fix wrong size being reported for OMEMO encrypted HTTP file transfersMarvin W2019-10-181-1/+1
| | | | Fixes #630
* Base avatars and names on conversation, not JID.Marvin W2019-10-1823-629/+476
| | | | Fixes #598
* Fix some incorrect handling of message stylingMarvin W2019-10-181-4/+4
|
* 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-182-0/+3
|
* Fix slash commandsfiaxh2019-10-163-5/+5
|
* Plugins: Set UI texts in code instead of .ui files to fix translationsfiaxh2019-10-105-21/+35
| | | | Co-authored-by: srgcdev <srg.dev@posteo.net>
* Fix pubsub item listener notifyingfiaxh2019-10-024-33/+49
|
* Rework no-open-conversation placeholderfiaxh2019-10-0111-39/+185
|
* Fix Jingle transport errorfiaxh2019-09-291-2/+1
|
* Add Bookmarks2 implementation, introduce bookmarks interfacesfiaxh2019-09-2915-269/+530
|
* Improve conversation unread status detectionfiaxh2019-09-293-6/+42
|
* Fix compilation with older gcryptMarvin W2019-09-172-1/+3
|
* Fix warnings and compilation with older valacMarvin W2019-09-164-47/+59
|
* Add support for JET-OMEMOMarvin W2019-09-166-56/+272
|
* Add JET supportMarvin W2019-09-1617-137/+436
|
* Add basic crypto-valaMarvin W2019-09-166-0/+1158
|
* Distribute window buttons (minimize,maximize,close) after realize and update ↵fiaxh2019-09-151-15/+16
| | | | live
* Deactivate emoji button for gtk < 3.24fiaxh2019-09-151-11/+15
|
* Deactivate spinner in file widget as soon as its not displayed anymore (CPU ↵fiaxh2019-09-142-2/+5
| | | | usage)
* Fix typo alledged -> allegedMichael Vetter2019-09-122-2/+2
|
* Load images in conversation summary in different threadfiaxh2019-09-111-26/+38
|
* Remove some use_markup usages, put skeleton header into .ui filefiaxh2019-09-117-52/+87
|
* Make TestCase protected for newer valaMaxime “pep” Buquet2019-09-112-2/+2
| | | | Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
* Check roster push authorizationMarvin W2019-09-101-0/+4
|
* Fix check of source of MAM messagefiaxh2019-09-101-1/+6
|
* Fix check of source of a carbons messageMarvin W2019-09-101-2/+2
|
* fixup Fix some warningsfiaxh2019-09-107-58/+40
|
* Fix some warningshrxi2019-09-1025-139/+276
| | | | | | 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.
* Add emoji button to chat inputfiaxh2019-09-096-16/+38
|
* Include data forms in entity capabilities hash computationfiaxh2019-09-033-6/+52
|
* Do not mark abstract class contstuctors publicRandy Barlow2019-09-013-4/+4
| | | | | | | | | | | | | 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-2912-177/+1369
|\ | | | | Add SOCKS5 bytestreams and a couple of other fixes
| * Don't error on Jingle file transfer hash session-infohrxi2019-08-273-5/+44
| |
| * Fix candidate selection for equal priorityhrxi2019-08-242-3/+4
| | | | | | | | | | | | XEP-0260 states that the candidate selected (offered) by the initiator wins, not the one that was chosen by the initiator (i.e. offered by the responder).
| * Fix Jingle connection code when `cancellable` is `null`hrxi2019-08-091-2/+7
| |
| * Fix race condition involving `session-terminate`hrxi2019-08-082-3/+10
| | | | | | | | | | | | | | The Jingle file transfer (XEP-0234) specifies that the receiver of the file transfer is the one to terminate the session. Otherwise, there might be a race condition between the XMPP stream and out-of-band SOCKS5 connections.
| * Fall back to IBB if S5B does not work outhrxi2019-08-062-39/+188
| | | | | | | | | | This mostly happens if connectivity to the candidates cannot be established.
| * Send Jingle errors to the right JIDhrxi2019-08-061-3/+3
| |
| * Fix destination address of IBB error codeshrxi2019-08-061-11/+11
| |