Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-12 | Merge pull request #1 from QMatrixClient/master | Black Hat | |
Merge to latest commit. | |||
2018-09-09 | Room::beforeDestruction() | Kitsune Ral | |
This is to allow connecting to before-destruction of one specific room, rather than any room under a connection (for which Connection::aboutToDeleteRoom() still exists). | |||
2018-09-09 | util.h: move qAsConst out of QMatrixClient | Kitsune Ral | |
It's borrowed from Qt; namespacing basically forced client writers to put "using namespace QMatrixClient" before using qAsConst. | |||
2018-09-09 | room.h: Unify doc-comments | Kitsune Ral | |
Doxygen/Qt style is preferred from now on. | |||
2018-09-09 | Avatar: don't paint on null images; optimise initial placeholder generation | Kitsune Ral | |
2018-09-09 | Cleanup | Kitsune Ral | |
2018-09-02 | Switch tag order from strings to floats, as The Spec preaches | Kitsune Ral | |
The Spec wasn't entirely consistent on this until recently but floats actually are used in the wild, rather than strings. | |||
2018-08-30 | Add signal for read receipt. | Black Hat | |
2018-08-30 | Remove unused check. | Black Hat | |
2018-08-30 | SyncJob: Add account_data to left rooms | Kitsune Ral | |
Closes #240. | |||
2018-08-29 | Merge branch 'master' of https://github.com/QMatrixClient/libqmatrixclient | Josip Delic | |
2018-08-29 | Use GetTurnServerJob for csapi | Josip Delic | |
2018-08-29 | Use QMultiHash. | Black Hat | |
2018-08-29 | Use local QHash. | Black Hat | |
2018-08-25 | Set state event | Josip Delic | |
2018-08-25 | Update make it compile | 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-20 | Room::displaynameChanged() should pass the old name too | Kitsune Ral | |
Also: general cleanup. | |||
2018-08-20 | Settings: get<>(); pass arguments more efficiently | Kitsune Ral | |
Settings::get() and SettingsGroup::get() allow concise and efficient type-specific interface to value(); instead of wrapping your defaultValue into a QVariant, just pass it to get() instead of value(). | |||
2018-08-13 | Room::tagsChanged(): elaborate additions/removals along with the signal | Kitsune Ral | |
2018-08-13 | accountdataevents.h: Drop useless(?) static declarations for tag names | Kitsune Ral | |
2018-08-13 | ConnectionsGuard: Fix clazy warning | Kitsune Ral | |
2018-08-12 | Revert JoinState::Any introduction | Kitsune Ral | |
Wasn't used in the code in the end. | |||
2018-08-12 | Fix FTBFS (in a hacky way, needs a proper fix) | Kitsune Ral | |
2018-08-12 | Fix building with older Qt versions | Kitsune Ral | |
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::doInDirectChat: don't remove invite/left rooms from direct chats | Kitsune Ral | |
Deletion of Invite rooms was a clear bug; as for left rooms, it makes sense to keep them in direct chat maps because they may be re-joined later on. | |||
2018-08-11 | JoinStates: add JoinState::Any to match any state | Kitsune Ral | |
2018-08-11 | Connection: don't crash on invalid user ids coming from the server | Kitsune Ral | |
Closes #230. | |||
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-06 | Room: addedMessages passes timeline indices | Kitsune Ral | |
2018-08-06 | RoomMemberEvent: a set of is*() facility methods | Kitsune Ral | |
2018-08-05 | Room: add redaction events to the timeline | Kitsune Ral | |
Not that it felt right but Riot does it and so should we. Closes #220. | |||
2018-08-05 | Room: rework processing redactions | Kitsune Ral | |
Redaction events are now processed before, not after/along with normal events. This complicates logistics a bit but makes sure to-be-redacted events get redacted even before the client is notified about new arrivals. Also, redaction events are unconditionally out of the timeline for the moment (the non-starter KEEP_REDACTIONS_IN_TIMELINE macro is gone). This reinstates #196 for now, which will be addressed separately. | |||
2018-08-05 | eventCast: add an assertion | Kitsune Ral | |
2018-08-04 | Room: avoid overloading postMessage, as QML is bad at resolving overloaded slots | Kitsune Ral | |
Closes #227. | |||
2018-08-03 | Room: improve logging, add an assertion | Kitsune Ral | |
2018-08-03 | RoomEvent: fix wrong JSON key to pick/store transaction id | Kitsune Ral | |
2018-08-03 | Room::Private::doSendEvent: more logs | Kitsune Ral | |
2018-08-03 | Room::retryMessage and Room::discardMessage | Kitsune Ral | |
2018-08-03 | Refactor event items | Kitsune Ral | |
* TimelineItem and a newly introduced PendingEventItem are now inheriting from the common EventItemBase class * PendingEventItem has its own status and annotation, serving to track transition of the item through pending states | |||
2018-08-03 | Connection::sendMessage: mark as tentative | Kitsune Ral | |
...and therefore deprecated for use in clients _yet_. | |||
2018-08-01 | Event: use Q_DISABLE_COPY | Kitsune Ral | |
2018-07-31 | Room::readMarkerMoved: pass 'from' and 'to' ids with the signal | Kitsune Ral | |
2018-07-31 | RoomEvent: don't store transactionId separately | Kitsune Ral | |
It's present on the vast minority of events so better be embedded into JSON instead. | |||
2018-07-29 | csapi: define PushRule more accurately | Kitsune Ral | |
It's not always a JSON object; it's either a SetTweakAction object or a string. (Unfortunately, QVariant isn't a template type and there's no easy way to put Q_DECLARE_METATYPE(SetTweakAction) in a Mustache template, so adding one is left as an exercise to the user now.) | |||
2018-07-28 | csapi/third_party_lookup.*: Properly pass a variadic (aka exploded) parameters | Kitsune Ral | |
Most of the actual change was in the API definition files (thanks to @anoadragon453), plus a converter from a QJsonObject map to the URL query string. | |||
2018-07-28 | Room: validate tags before sending them to the server | Kitsune Ral | |
See https://github.com/matrix-org/matrix-doc/pull/1457 for the background. |