aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-07-07.travis.yml: Fix a typo in qmc-example invocationKitsune Ral
2019-07-07Optimize Travis CI executionKitsune Ral
The same code is already in Quaternion's .travis.yml, just copy it here as well.
2019-07-07.travis.yml: pass LD_LIBRARY_PATH so that the example could find olmKitsune Ral
2019-07-07Documentation: libQMatrixClient -> libQuotient, QMatrixClient -> ↵Kitsune Ral
quotient-im, etc.
2019-07-07Logging categories: libqmatrixclient.* -> quotient.*Kitsune Ral
2019-07-07Merge pull request #329 from a-andreyev/aa13q-e2ee-enc-mngKitsune Ral
E2EE: Introduce EncryptionManager with uploadIdentityKeys and uploadOneTimeKeys API.
2019-07-07Fix qmake builds in CIKitsune Ral
2019-07-06EncryptionEvent: Adjust upon merge from masterKitsune Ral
2019-07-06Merge branch 'master' into e2ee-enc-mngKitsune Ral
2019-07-06.appveyor.yml: stick with static libsKitsune Ral
2019-07-06Fix building with ClangKitsune Ral
2019-07-06Be stricter on usage of stateKeyKitsune Ral
A few places in the library dealt with state events without any notion of state_key inside events, including StateEvent[Base] and relevant functions in Room. A number of workarounds have been made; e.g., Room::setMemberState() accepted userId as a separate parameter, ignoring the state key inside the RoomMemberEvent already passed to it, and Room::setLocalAliases() had a bug in the initial version where the function still tried to pass aliases in an event with an empty state key. This commit fixes this shortcoming: StateEventBase now gets stateKey as one more parameter, Room::Private::getCurrentState() respects stateKey and returns properly constructed stub events, and Room::setMemberState() gives way to a more generic Room::setState() that works uniformly with whatever state event you pass to it.
2019-07-06loadStateEvent()Kitsune Ral
2019-07-06Convenience: StateKeyKey, StateKeyKeyL, basicStateEventJson()Kitsune Ral
2019-07-06Fix clazy warningsKitsune Ral
2019-07-06Room::setLocalAliases: now actually working (with a caveat)Kitsune Ral
The caveat is that the library doesn't support .well-known yet, therefore will work not fully correctly (in particular - won't correctly set aliases) with servers that have serverpart different from the homeserver hostname used to connect to it.
2019-07-06Connection::serverPart: replace auto with QString because of QStringBuilderKitsune Ral
See https://github.com/KDE/clazy/blob/master/docs/checks/README-auto-unexpected-qstringbuilder.md Closes #613.
2019-07-05Clean up .well-known logicBlack Hat
2019-07-04Connection.cpp: Add .well-known parsing in resolveServer()Black Hat
2019-07-04Change libQtOlm location. Fix .travis.yml and .appveyor.ymlAlexey Andreyev
2019-07-04Upload one-time keys. Issue #88Alexey Andreyev
2019-07-04Upload device public keys. Issue #87Alexey Andreyev
2019-07-04Add EncryptionManager class. Add AccountSettings::encryptionAccountPickle logic.Alexey Andreyev
2019-07-04Update libQtOlmAlexey Andreyev
2019-07-04Add full EncryptionEvent to room logic. Issue #95Alexey Andreyev
2019-07-04Add libQtOlmAlexey Andreyev
2019-07-04.travis.yml: add "update: true" to homebrew configKitsune Ral
2019-07-04Connection::token() is no moreKitsune Ral
Use Connection::accessToken() instead.
2019-07-03Room/Connection: make room aliases work properlyKitsune Ral
Closes #301.
2019-07-02linkifyUrls: support matrix: scheme and relative URLsKitsune Ral
2019-07-01Merge pull request #327 from vranki/bugfix/forget_rooms_really2Kitsune Ral
Ignore some errors on leaving rooms, add new error enum. Fixes #307
2019-07-01Merge branch 'master' into forget-rooms-reallyKitsune Ral
2019-07-01Handle M_UNKNOWN as The Spec says; factor out BaseJob::parseError()Kitsune Ral
2019-06-30CONTRIBUTING.md: officially embrace and recommend clang-formatKitsune Ral
2019-06-30CMakeLists.txt: add clang-format invocation to update-api targetKitsune Ral
...instead of using a separate update-format-api target.
2019-06-29Merge remote-tracking branch 'remotes/origin/master' into use-clang-formatKitsune Ral
2019-06-26BaseJob::Status: fromHttpCodeKitsune Ral
2019-06-25Merge pull request #322 from a-andreyev/aa13q-fancy-colorsKitsune Ral
Move out the logic of the hue calculation to utils
2019-06-25Introduce EncryptionEvent classKitsune Ral
This allows to detect if a room has been encrypted (no room state, just an event as of yet). Closes #84.
2019-06-25Include olm via cmake (should work on Linux and MinGW)Felix Rohrbach
2019-06-25.travis.yml: add "update: true" to homebrew configKitsune Ral
2019-06-25CMakeLists: replace list(TRANSFORM) with foreach/list(APPEND)Kitsune Ral
list(TRANSFORM) is only available from CMake 3.12.
2019-06-25CMakeLists: use REALPATH instead of PROGRAM to find gtadKitsune Ral
PROGRAM doesn't seem to work right with relative paths.
2019-06-24csapi/*/**: clang-format contents of csapi subdirs as wellKitsune Ral
2019-06-24CMakeLists.txt: Re-add parts of CSAPI that accidentally went missingKitsune Ral
2019-06-24Merge branch 'master' into clang-formatKitsune Ral
# Conflicts: # CMakeLists.txt # lib/avatar.cpp # lib/connection.cpp # lib/connection.h # lib/connectiondata.cpp # lib/csapi/account-data.cpp # lib/csapi/account-data.h # lib/csapi/capabilities.cpp # lib/csapi/capabilities.h # lib/csapi/content-repo.cpp # lib/csapi/create_room.cpp # lib/csapi/filter.cpp # lib/csapi/joining.cpp # lib/csapi/keys.cpp # lib/csapi/list_joined_rooms.cpp # lib/csapi/notifications.cpp # lib/csapi/openid.cpp # lib/csapi/presence.cpp # lib/csapi/pushrules.cpp # lib/csapi/registration.cpp # lib/csapi/room_upgrades.cpp # lib/csapi/room_upgrades.h # lib/csapi/search.cpp # lib/csapi/users.cpp # lib/csapi/versions.cpp # lib/csapi/whoami.cpp # lib/csapi/{{base}}.cpp.mustache # lib/events/accountdataevents.h # lib/events/eventcontent.h # lib/events/roommemberevent.cpp # lib/events/stateevent.cpp # lib/jobs/basejob.cpp # lib/jobs/basejob.h # lib/networkaccessmanager.cpp # lib/networksettings.cpp # lib/room.cpp # lib/room.h # lib/settings.cpp # lib/settings.h # lib/syncdata.cpp # lib/user.cpp # lib/user.h # lib/util.cpp
2019-06-23csapi/: Make Mustache files more readableKitsune Ral
Now that clang-format takes care of formatting, the template readability can be prioritised.
2019-06-23Use clang-format to autoformat generated API filesKitsune Ral
2019-06-23.clang-format: Skip on CommentPragmasKitsune Ral
We do want doc-comments to be formatted as well.
2019-06-22.clang-format: fine-tune penaltiesKitsune Ral