| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Client: Rename send/sendUnencrypted to sendSensitive/send | Linus Jahn | 2023-01-28 | 1 | -1/+1 |
| | | |||||
| * | Use QXmppError in all IQ results instead of StanzaError | Linus Jahn | 2023-01-22 | 1 | -1/+1 |
| | | | | | | | | | This allows us to report different error types with more information and makes it possible to distinguish stanza errors and errors generated locally. Part of #501. | ||||
| * | Introduce QXmppTask & QXmppPromise | Linus Jahn | 2023-01-03 | 1 | -7/+7 |
| | | | | | | | Closes #502. Co-authored-by: Jonah Brüchert <jbb@kaidan.im> | ||||
| * | Replace QXmpp::SendError with QXmppError everywhere | Linus Jahn | 2022-12-30 | 1 | -1/+1 |
| | | | | | Part of #501. | ||||
| * | Reformat code | Linus Jahn | 2022-09-06 | 1 | -2/+4 |
| | | |||||
| * | Replace raw pointers with unique_ptr | Linus Jahn | 2022-09-02 | 1 | -1/+2 |
| | | | | | safer, simpler | ||||
| * | Client: Add SendStanzaParams parameter to send functions | Linus Jahn | 2022-05-22 | 1 | -6/+7 |
| | | | | | It can already be used by E2eeExtension. | ||||
| * | Add MessageHandler interface | Linus Jahn | 2022-05-20 | 1 | -0/+1 |
| | | |||||
| * | ClientExtension: Add injectIq() function | Linus Jahn | 2022-05-20 | 1 | -0/+4 |
| | | |||||
| * | Client: Add reply() picking the encryption based on the received stanza | Linus Jahn | 2022-05-20 | 1 | -0/+1 |
| | | | | | | Currently does not support multiple encryptions, so the implementation is rather simple. | ||||
| * | Convert copyright headers to REUSE | Linus Jahn | 2022-01-14 | 1 | -22/+3 |
| | | |||||
| * | Update copyright years (2022 edition) | Linus Jahn | 2022-01-09 | 1 | -1/+1 |
| | | |||||
| * | QXmppClient: Add encryption hooks | Linus Jahn | 2021-09-28 | 1 | -0/+5 |
| | | |||||
| * | Client: Require moving the packets/iqs for sending | Linus Jahn | 2021-09-28 | 1 | -3/+3 |
| | | |||||
| * | Adapt IQ parsing to new packet sending | Linus Jahn | 2021-09-03 | 1 | -1/+1 |
| | | | | | Remove now unused QXmpp::PacketState. | ||||
| * | Refactor packet sending: Add SendSuccess/SendError | Linus Jahn | 2021-09-03 | 1 | -1/+2 |
| | | |||||
| * | Make it possible to send QXmppNonzas over streams | Linus Jahn | 2021-08-26 | 1 | -1/+1 |
| | | |||||
| * | QXmppClient: Add addNewExtension<T>() | Linus Jahn | 2021-07-23 | 1 | -0/+8 |
| | | |||||
| * | tests: Add TestClient class for client testing with QFutures | Linus Jahn | 2021-07-06 | 1 | -0/+1 |
| | | |||||
| * | Add QXmppClient::sendGenericIq() just returning Success/StanzaError | Linus Jahn | 2021-07-05 | 1 | -2/+4 |
| | | |||||
| * | Add reporting of IQ responses with QFutures | Linus Jahn | 2021-06-27 | 1 | -0/+3 |
| | | |||||
| * | QXmppClient: Add send() function with QFuture | Linus Jahn | 2021-06-27 | 1 | -0/+7 |
| | | |||||
| * | Update copyright headers to 2021 | Linus Jahn | 2021-02-19 | 1 | -1/+1 |
| | | |||||
| * | Improve wording in method documentation (#330) | melvo | 2021-02-17 | 1 | -3/+3 |
| | | |||||
| * | QXmppClient: Advertise stream management state | Linus Jahn | 2021-01-09 | 1 | -1/+15 |
| | | |||||
| * | Adapt to changes in QList in Qt 6.0 | Linus Jahn | 2020-07-03 | 1 | -2/+1 |
| | | | | | Template parameters of QList can't be forward declared anymore. | ||||
| * | QXmppClient: State that iqReceived() is only emitted for results | Linus Jahn | 2020-04-07 | 1 | -4/+6 |
| | | |||||
| * | Make QXmpp work with projects using QT_NO_KEYWORDS | Linus Jahn | 2020-02-11 | 1 | -3/+3 |
| | | | | | | | | | | | | This replaces all occurencies of 'slots' and 'signals' with 'Q_SLOTS' and 'Q_SIGNALS'. This allows for smooth integration with software projects that need QT_NO_KEYWORDS, such as those ones that rely on boost libraries. Closes #115. Co-authored-by: Tommaso Cucinotta <tommaso.cucinotta@santannapisa.it> | ||||
| * | Fix undocumented Q_PROPERTies | Linus Jahn | 2020-02-04 | 1 | -0/+8 |
| | | |||||
| * | Fix doxygen warnings about missing titles for \defgroup | Linus Jahn | 2020-02-04 | 1 | -2/+15 |
| | | |||||
| * | Add new QXmppRegistrationManager | Linus Jahn | 2020-02-04 | 1 | -4/+4 |
| | | |||||
| * | clang-format: Enable regrouping and sorting of includes | Linus Jahn | 2020-02-03 | 1 | -3/+3 |
| | | |||||
| * | QXmppClient: Remove obsolete methods for TLS management | Linus Jahn | 2020-01-29 | 1 | -4/+0 |
| | | | | | | | | | | | The methods are obsolete since the TLS manager has become an internal client extension. The methods were not of any use except for the TLS manager and should better not be public to the user at all (i.e. startSocketEncryption()). This can be done without any concerns because the methods were not part of the public API in any release, yet. | ||||
| * | Introduce QXmppInternalClientExtensions | Linus Jahn | 2020-01-29 | 1 | -0/+3 |
| | | | | | | | | | | | | | The new internal client extensions can be used to access private parts of the QXmppClient since QXmppInternalClientExtensions are a friend of the QXmppClient. The internal client extensions are not part of the public API, so you can't access them in an application using QXmpp. However, this was also the case before. If there is the need to access the internal extensions in the future, we'll still have all options open to change everything, because the classes are not part of the public API. | ||||
| * | Move TLS negotiation into new QXmppTlsManager | Linus Jahn | 2020-01-20 | 1 | -0/+5 |
| | | |||||
| * | QXmppClient: Add missing '\since' tag to new indexOfExtension() | Linus Jahn | 2020-01-19 | 1 | -3/+4 |
| | | | | | I forgot this in #241. | ||||
| * | QXmppClient: Add method to get index of extension | Linus Jahn | 2020-01-13 | 1 | -0/+24 |
| | | |||||
| * | Bump copyright year to 2020 | Linus Jahn | 2020-01-06 | 1 | -1/+1 |
| | | |||||
| * | Add a .clang-format somewhat close to the current style | 0xd34df00d | 2019-12-23 | 1 | -25/+24 |
| | | |||||
| * | Replace deprecated Q_ENUMS with Q_ENUM | Linus Jahn | 2019-10-27 | 1 | -5/+4 |
| | | | | | | Q_ENUM exists since Qt 5.5, more details can be found here: https://woboq.com/blog/q_enum.html | ||||
| * | Port away from deprecated client extension getters of the QXmppClient | Linus Jahn | 2019-10-23 | 1 | -11/+11 |
| | | | | | | This replaces the deprecated getters in the examples and in the documentation. | ||||
| * | Use raw literals, range based loops and auto | Jonah Brüchert | 2019-10-22 | 1 | -3/+3 |
| | | |||||
| * | Deprecate QXmppClient::{rosterManager,vCardManager,versionManager}() | Linus Jahn | 2019-10-14 | 1 | -0/+7 |
| | | | | | QXmppClient::findExtension() should be used instead. | ||||
| * | Modernize codebase using clang-tidy | Jonah Brüchert | 2019-09-08 | 1 | -3/+3 |
| | | | | | | | | | Using the following checks: * modernize-use-nullptr * modernize-use-override * modernize-use-using * modernize-use-bool-literals | ||||
| * | Bump copyright year to 2019 | Jeremy Lainé | 2019-01-08 | 1 | -1/+1 |
| | | |||||
| * | Fix spelling errors | Boris Pek | 2019-01-08 | 1 | -1/+1 |
| | | |||||
| * | Implement XEP-0352: Client State Indication | Linus Jahn | 2018-10-29 | 1 | -0/+3 |
| | | | | | | This commit is based on a pull request by fbeutel (GitHub) (see #87) and was rebased and slightly modified by me. | ||||
| * | Make QXmppClient::connectToServer(config, presence) a slot (closes #63) | Jeremy Lainé | 2015-07-31 | 1 | -3/+3 |
| | | |||||
| * | Remove trailing comma after last item in enums | Jeremy Lainé | 2015-03-13 | 1 | -2/+2 |
| | | | | | This allows compilation with GCC in pedantic mode. | ||||
| * | Add a QXmppClient::sslErrors signal to report SSL errors. | Jeremy Lainé | 2015-03-11 | 1 | -0/+6 |
| | | |||||
