Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-27 | E2EE: introduce EncryptedEvent | Alexey Andreyev | |
2019-07-09 | Move serverPart() to the public API | Kitsune Ral | |
Also: Connection::resolveServer() now only accepts MXIDs, not domains. | |||
2019-07-06 | Fix clazy warnings | Kitsune Ral | |
2019-07-04 | Connection::token() is no more | Kitsune Ral | |
Use Connection::accessToken() instead. | |||
2019-07-03 | Room/Connection: make room aliases work properly | Kitsune Ral | |
Closes #301. | |||
2019-05-19 | Connection: use QScopedPointer instead of unique_ptr | Kitsune Ral | |
While theoretically less robust (no equivalent of make_unique), QScopedPointer is navigable in Qt Creator debug views, unlike unique_ptr. Of course this will eventually be fixed; but given that inability to create an owning pointer object means sure abnormal termination of our code shortly afterwards, having make_unique in this particular case doesn't help in any way at all; so unique_ptr has zero advantages over QScopedPointer in this setting. | |||
2019-05-19 | Move a doc-comment to its place | Kitsune Ral | |
2019-05-03 | Connection::stateCacheDir | Kitsune Ral | |
Same as stateCachePath but returns QDir. | |||
2019-04-24 | Make ignore-user related method Q_INVOKABLE. | Black Hat | |
2019-03-27 | Connection::domain() | Kitsune Ral | |
2019-02-24 | Merge branch 'kitsune-aliases-map' | Kitsune Ral | |
2019-02-23 | Remove the 'pretty' SupportedRoomVersion vector debug operator | Alexander Akulich | |
This way we conform with Qt standard debug output and do not rely on a Qt private API. This also fixes compilation for Qt < 5.7. | |||
2019-02-22 | Room::setAliases, Connection: roomByAlias, updateRoomAliases | Kitsune Ral | |
2019-02-17 | Connection: loadingCapabilities(); sort availableRoomVersions | Kitsune Ral | |
2019-02-15 | Connection: load supported room versions | Kitsune Ral | |
A part of #236. | |||
2019-02-15 | Merge branch 'master' into kitsune-room-versions | Kitsune Ral | |
2019-02-11 | Connection::createRoom: support passing a room version | Kitsune Ral | |
On the path to address #233. | |||
2019-02-10 | Connection: move syncLoopTimeout to Connection::Private | Alexey Andreyev | |
Signed-off-by: Alexey Andreyev <aa13q@ya.ru> | |||
2019-02-05 | Connection: simplified sync loop logic without delays | Alexey Andreyev | |
Signed-off-by: Alexey Andreyev <aa13q@ya.ru> | |||
2019-02-03 | Connection: separated sync loop logic with delay control | Alexey Andreyev | |
Signed-off-by: Alexey Andreyev <aa13q@ya.ru> | |||
2019-01-30 | Connection: infinite sync loop logic by default | Alexey Andreyev | |
2019-01-13 | Merge branch 'kitsune-workaround-stuck-invites' | Kitsune Ral | |
2019-01-13 | qt_connection_util.h: a new home for connectSingleShot() and newly made ↵ | Kitsune Ral | |
connectUntil() | |||
2019-01-13 | Connection: fix/workaround glitches on joining/leaving | Kitsune Ral | |
Closes #273, in particular. | |||
2019-01-13 | Connection::provideRoom: allow omitting join state | Kitsune Ral | |
2019-01-05 | Connection::upload*: autodetect content type if not supplied | Kitsune Ral | |
2018-12-11 | Expose Connection::nextBatchToken() | Kitsune Ral | |
2018-12-08 | Connection: support members lazy-loading | Kitsune Ral | |
This should cover the Connection-related part of #253. Connection gained lazyLoading/setLazyLoading accessors and the respective Q_PROPERTY. When lazy loading is on, sync() adds lazy_load_members: true to its filter. | |||
2018-11-23 | Room/Connection: don't save the just loaded room cache | Kitsune Ral | |
2018-11-22 | Save state cache per-room | Kitsune Ral | |
Closes #257. | |||
2018-11-19 | BaseJob::rawDataSample() | Kitsune Ral | |
A new recommended (and localisable) way of getting a piece of raw response to display next to error messages as "details". BaseJob::rawData() returns exactly the trimmed piece of data, no "truncated" suffix there anymore. | |||
2018-10-29 | Connection::joinRoom: allow to specify intermediate servers | Kitsune Ral | |
Closes #127. | |||
2018-09-16 | Merge remote-tracking branch 'upstream/master' | Josip Delic | |
2018-09-16 | Connection: make factories a bit more customisable | Kitsune Ral | |
2018-08-29 | Merge branch 'master' of https://github.com/QMatrixClient/libqmatrixclient | Josip Delic | |
2018-08-25 | Update to the recent CS API (watch out for breakage) | Kitsune Ral | |
Breaking changes: * guest_can_join is no more a thing - neither in Connection::createRoom, nor even in CreateRoomJob (it turned out that Synapse didn't really process this flag); * LoginJob has changed its list of arguments. If you use Connection to do logins (and you really should), you shouldn't be affected. * GetPublicRoomsJob now returns PublicRoomsResponse instead of providing all the response parts within the job Watch other changes in the diff. | |||
2018-08-25 | Update marius voip to new libqtmc | Josip Delic | |
2018-08-11 | Reverse direct chats map | Kitsune Ral | |
Speeds up lookup of user(s) in a direct chat room. Also: "The other one's" avatar is used to set the avatar of direct chats only, not any room with 2 participants. | |||
2018-08-11 | Connection::*DirectChat(): add overloads accepting User* | Kitsune Ral | |
2018-08-11 | Connection: drop extraneous Q_INVOKABLE | Kitsune Ral | |
Slots are Q_INVOKABLE by definition. | |||
2018-08-03 | Connection::sendMessage: mark as tentative | Kitsune Ral | |
...and therefore deprecated for use in clients _yet_. | |||
2018-07-27 | Initial support for local echo | Kitsune Ral | |
The Room class has gained a new internal container, unsyncedEvents, storing locally-created Event objects that are about to be sent or are sent but not yet synced. These objects are supposed to be complete enough to be displayed by clients in a usual way; access to them is provided by Room::pendingEvents() accessor. A set of pendingEvent* signals has been added to notify clients about changes in this container (adding, removal, status update). Yet unsent events don't have Event::id() at all; sent but yet unsynced ones have Event::id() but have almost nothing else except the content for now (probably a sender and an (at least local) timestamp are worth adding). Also: SendEventJob is removed in favor of GTAD-generated SendMessageJob. | |||
2018-07-27 | connectSingleShot() | Kitsune Ral | |
Time and again I need one-off slots that disconnect once they are done. The code has been inside Connection implementation for quite some time, now it's put to the interface for usage in other places (notably qmc-example). | |||
2018-07-19 | Connection::stateChanged() signal | Kitsune Ral | |
Also: as of the previous commit, we officially bump API version to 0.4 | |||
2018-07-04 | Add more #includes missing | Kitsune Ral | |
2018-07-04 | Support ignoring users | Kitsune Ral | |
Closes #215. | |||
2018-06-30 | Use C++14 [[deprecated]] attribute instead of doc-comment | Kitsune Ral | |
Testing the waters in one place to start with. | |||
2018-06-11 | Connection: InFore/Background -> Fore/BackgroundRequest | Kitsune Ral | |
2018-06-08 | csapi: Fix boolean query parameters incorrectly passed | Kitsune Ral | |
2018-06-02 | Connection::loadedRoomState() signal | Kitsune Ral | |
Closes #211. |