aboutsummaryrefslogtreecommitdiff
path: root/xmpp-vala
Commit message (Collapse)AuthorAgeFilesLines
* Update live whether encryption is possible in MUC (lock icon visible)fiaxh2020-03-081-8/+10
|
* Make message sending async and set unsent on errorfiaxh2020-03-055-9/+8
|
* Preserve unchanged conference data (name) in bookmarksfiaxh2020-02-204-10/+20
| | | | fixes #748
* Enabling display of more compiler warnings and fix some of themMarvin W2020-01-211-3/+3
| | | | | Most of these are caused by various issues is the Vala compiler, but it doesn't hurt to display them and report them upstream.
* Don't use GObject/properties for JoinResultMarvin W2020-01-091-4/+4
|
* Fix issues in ICU usageMarvin W2019-12-253-11/+56
|
* Store MUC passwords in bookmarkfiaxh2019-12-243-11/+8
| | | | fixes #470
* Don't show own typing notifications (other devices)fiaxh2019-12-241-2/+1
| | | | fixes #669
* Use UTS46 instead of IDNA2003Marvin W2019-12-233-38/+38
|
* Properly check Jids everywhereMarvin W2019-12-2317-124/+464
|
* Add timing to logs, fix issue of silently ignored I/O errorsMarvin W2019-12-224-16/+18
|
* Refactor MAM catchup. Fetch from latest to earliest message.fiaxh2019-12-183-26/+70
|
* Add (partial) support for unique stanza ids (XEP-0359)fiaxh2019-12-184-2/+54
|
* Add version and adjust some cmakeMarvin W2019-12-181-2/+2
|
* Only send new room config if something was changedfiaxh2019-12-165-37/+22
| | | | fixes #675
* Set ALPN info on XMPP connections if GIO >= 2.60fiaxh2019-11-292-0/+15
|
* Don't continue reading after stream was disconnected, make disconnecting asyncfiaxh2019-11-271-9/+14
| | | | fixes #636
* Small changes to "Add support for HTTP Upload headers"fiaxh2019-11-191-1/+5
|
* Add support for HTTP Upload headersWiktor Kwapisiewicz2019-11-191-0/+11
| | | | | | | | | | | 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-1/+1
| | | | fixes #644
* Parse presence delivery errors when joining MUCfiaxh2019-11-172-2/+25
| | | | fixes #224
* Parse offline member info from MUC presencefiaxh2019-11-172-2/+6
| | | | Fixes OMEMO only encrypting to new member after restart and private MUC name only updating after restart
* OMEMO: Don't set publish options, configure only bundle node insteadfiaxh2019-11-044-9/+39
|
* Don't send delivery recipts or chat states for own messagesfiaxh2019-10-221-3/+3
| | | | fixes #631
* Fix pubsub item listener notifyingfiaxh2019-10-023-32/+48
|
* Fix Jingle transport errorfiaxh2019-09-291-2/+1
|
* Add Bookmarks2 implementation, introduce bookmarks interfacesfiaxh2019-09-2910-197/+407
|
* Fix warnings and compilation with older valacMarvin W2019-09-161-1/+1
|
* Add JET supportMarvin W2019-09-165-15/+224
|
* Fix typo alledged -> allegedMichael Vetter2019-09-122-2/+2
|
* Make TestCase protected for newer valaMaxime “pep” Buquet2019-09-111-1/+1
| | | | 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-101-22/+12
|
* Fix some warningshrxi2019-09-107-5/+86
| | | | | | 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.
* Include data forms in entity capabilities hash computationfiaxh2019-09-033-6/+52
|
* Merge pull request #592 from hrxi/gsoc_1Marvin W2019-08-299-172/+1360
|\ | | | | 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
| |
| * Forgot to add outgoing Jingle SOCKS5 transferhrxi2019-08-061-1/+8
| |
| * Implement detachhrxi2019-08-062-2/+6
| |
| * Factor out the session-terminate handlerhrxi2019-08-061-25/+35
| |
| * Add support for Jingle SOCKS5 bytestreams (XEP-0260)hrxi2019-08-056-85/+788
| |