aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* QXmppRosterIq: Add 'approved' attribute from RFC6121Linus Jahn2020-04-053-9/+92
| | | | | The 'approved' attribute was added in RFC6121 to indicate whether a pre-approved subscription exists.
* Add pre-approved presence subscriptions stream featureLinus Jahn2020-04-055-1/+62
|
* QXmppMessage: Add parent thread attribute from RFC6121Linus Jahn2020-04-053-10/+61
| | | | | | The 'parent' attribute for <thread/> element in messages has been introduced in RFC6121. This commit adds parsing and serialization for it, including unit tests.
* QXmppStanza::Error: Add 'by' attribute from RFC6120Linus Jahn2020-04-043-8/+66
| | | | | This adds parsing and serialization and unit tests for the by attribute for QXmppStanza::Errors. The protocol is defined in RFC6120.
* QXmppCallStream: Wrap callback in std::functionJonah Brüchert2020-04-023-6/+9
| | | | Allows to use non-static functions (or lambdas with captures)
* README: Add link to latest master documentationLNJ2020-04-011-2/+6
|
* Correct authors of tests for Registration/RosterManagerLinus Jahn2020-04-012-4/+2
| | | | This was a copy-paste mistake.
* README: Replace travis label with github actions badgeLinus Jahn2020-04-011-1/+1
|
* Test with Qt 5.9 and Qt 5.14Linus Jahn2020-04-011-1/+11
|
* tests: Fix build with Qt 5.9Linus Jahn2020-04-012-6/+6
| | | | QCOMPARE(QString(), "") doesn't work there.
* Fix build with Qt 5.14Linus Jahn2020-04-012-2/+7
| | | | | | | Q_DEPRECATED_X() can't be used on enum values anymore. The new Q_DECL_ENUMERATOR_DEPRECATED_X() can be uesd instead, this is only available since Qt 5.12, so I needed to define an empty fallback for it.
* actions: Push documentation to doc.qxmpp.orgLinus Jahn2020-04-013-1/+70
|
* Add missing optional exclude to deprecated PaymentRequiredLinus Jahn2020-04-011-13/+14
|
* QXmppStanza::Error: Add redirection URI from RFC6120Linus Jahn2020-04-013-13/+120
| | | | | The error conditions <gone/> and <redirect/> can contain an XMPP URI to redirect to as defined in RFC6120.
* Merge branch 'stable'Linus Jahn2020-04-0113-31/+358
|\
| * Release QXmpp 1.2.1Linus Jahn2020-04-011-1/+1
| |
| * Prepare CHANGELOG for QXmpp 1.2.1Linus Jahn2020-04-011-0/+18
| |
| * Add tests for QXmppRosterManagerLinus Jahn2020-04-012-0/+111
| |
| * QXmppRosterIq: Fix missing copy constructorLinus Jahn2020-04-011-0/+2
| |
| * Do not include 'ask' attribute when renaming roster itemMelvin Keskin2020-04-011-0/+4
| |
| * Add QXmppVCardManger testsLinus Jahn2020-04-012-0/+109
| | | | | | | | Co-authored-by: Melvin Keskin <melvo@olomono.de>
| * Set user's vCard also when 'from' attribute contains user's bare JIDMelvin Keskin2020-04-011-1/+1
| |
| * tests: util: Add writePacketToDom() helperLinus Jahn2020-04-012-14/+14
| | | | | | | | It is used in multiple places now.
| * doc: xeps: Move XEP-0077: In-Band Registration to finishedLinus Jahn2020-03-291-1/+1
| |
| * QXmppMessageReceiptManager: Fix receipts are sent on error messages (#269)Blue2020-03-272-4/+83
| | | | | | This fixes that behaviour and extends the tests for QXmppMessageReceiptManager.
| * Fix switch statement when handling IQ stanza for registrationMelvin Keskin2020-03-242-11/+15
| |
* | gitignore: Add kdevelop config filesLinus Jahn2020-03-311-0/+2
| |
* | Remove accidently added kdevelop project filesLinus Jahn2020-03-312-23/+0
| |
* | Add tests for QXmppStanza::Error parsingLinus Jahn2020-03-311-0/+169
| |
* | QXmppStanza: Add PolicyViolation error conditionLinus Jahn2020-03-312-1/+9
| | | | | | | | The error condition as stanza error was added in RFC6120.
* | doc: xeps: Include XEP links using macroLinus Jahn2020-03-311-54/+54
| |
* | Deprecate PaymentRequired error conditionLinus Jahn2020-03-311-1/+4
| | | | | | | | | | The <payment-required/> error condition was not adopted in RFC6120 as it was unused.
* | QXmppPushEnableIq: Add missing \since tagLinus Jahn2020-03-313-0/+25
| |
* | Implement XEP-0245: The /me CommandLinus Jahn2020-03-314-0/+115
| | | | | | | | | | | | | | This adds parsing for recognizing /me commands in message bodies. It complies with version 1.0 of XEP-0245: The /me Command. https://xmpp.org/extensions/xep-0245.html
* | Replace deprecated 'qsrand()' and 'qrand()' by QRandomGenerator (#267)melvo2020-03-292-1/+13
| | | | | | | | Since QRandomGenerator is only available since Qt 5.10, the deprecated functions are still used for Qt < 5.10.
* | Implement XEP-0357: Push Notifications enable/disable IQ (#271)JBB2020-03-298-0/+436
| | | | | | | | Co-authored-by: Robert Maerkisch <zatroxde@protonmail.ch> Co-authored-by: Linus Jahn <lnj@kaidan.im>
* | QXmppDataForm: Add ctor with all attributesLinus Jahn2020-03-293-6/+100
| | | | | | | | This makes creating forms manually a lot easier.
* | Update copyright year from '2019' to '2020' for forgotten filesMelvin Keskin2020-03-292-2/+2
| |
* | Update parameter of 'QXmppMessage::parseExtension()' in header fileMelvin Keskin2020-03-291-1/+1
| |
* | doc: xeps: Add XEP-0249: Direct MUC InvitationsLinus Jahn2020-03-291-0/+1
| |
* | Expand QSL and QBLJonah Brüchert2020-03-2935-1097/+1094
| | | | | | | | So they don't leak into the public API
* | Reformat codeJonah Brüchert2020-03-288-40/+38
| |
* | base: Convert to QStringLiteralJonah Brüchert2020-03-2835-1095/+1101
| | | | | | | | | | | | Two new macros were added: * QBL (short alias for QByteArrayLiteral) * QSL (short alias for QStringLiteral)
* | README: Remove google groupLNJ2020-03-271-7/+0
| | | | | | It's banned and I can't find any messages/topics in it.
* | QXmppCallStream: Fix wrong \since tagsLinus Jahn2020-03-241-2/+2
| |
* | [tests] run Linux and OS X tests using GitHub ActionsJeremy Lainé2020-03-244-38/+30
| |
* | Allow to set multiple STUN serversNiels Ole Salscheider2020-03-167-26/+67
| | | | | | | | This way we can for example add a server for IPv4 and one IPv6.
* | Travis: Unlink python2 to avoid conflict in CINiels Ole Salscheider2020-03-161-0/+1
| |
* | Set LowDelay option for UDP socketsNiels Ole Salscheider2020-03-161-0/+2
| |
* | Update README and CHANGELOGNiels Ole Salscheider2020-03-162-4/+4
| |