Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-03-19 | Merge pull request #376 from rpallai/editing-fixes | Kitsune Ral | |
Simple changes for sending edits | |||
2020-03-17 | Use constant | Roland Pallai | |
Co-Authored-By: Kitsune Ral <Kitsune-Ral@users.sf.net> | |||
2020-03-13 | Merge pull request #346 from quotient-im/aa13q-e2ee-encrypted-msg | Kitsune Ral | |
E2EE: implement receiving of the messages | |||
2020-03-08 | fixing msc2432 | Ram Nad | |
2020-02-25 | E2EE: EncryptedEvent constructor debug message | Alexey Andreyev | |
Signed-off-by: Alexey Andreev <aa13q@ya.ru> | |||
2020-02-25 | E2EE: introduce RoomKeyEvent | Alexey Andreyev | |
Signed-off-by: Alexey Andreev <aa13q@ya.ru> | |||
2020-02-22 | RoomMemberEvent: add isRejectedInvite(), isBan(), and isUnban() | Karol Kosek | |
2020-02-10 | Add EventContent::replacementOf() helper | Roland Pallai | |
2020-02-10 | TextContent: use MSC-1849 compatible `m.relates_to` field | Roland Pallai | |
2020-02-10 | Edit (transmit): fix asterisk marking for dumb clients | Roland Pallai | |
The prepared body got overwritten due to missing return statement. | |||
2020-02-10 | Edit (transmit): fix json struct of `m.new_content` | Roland Pallai | |
2020-01-01 | Fix linux build | Black Hat | |
2020-01-01 | Fix linux build | Black Hat | |
2020-01-01 | Add powerLevelForState() | Black Hat | |
2020-01-01 | Mark methods as const. | Black Hat | |
2019-12-30 | Simplify code | Black Hat | |
2019-12-29 | Add missing file | Black Hat | |
2019-12-29 | Merge branch 'master' of https://github.com/quotient-im/libQuotient into ↵ | Black Hat | |
bhat-powerlevel | |||
2019-12-29 | Add RoomPowerLevelEvent type | Black Hat | |
2019-12-24 | RoomMemberEvent: introduce the reason field (MSC2367) | Kitsune Ral | |
See https://github.com/matrix-org/matrix-doc/pull/2367. Closes #370. | |||
2019-12-09 | RoomEvent::timestamp() -> originTimestamp() | Kitsune Ral | |
The previous name is still available but deprecated. | |||
2019-11-10 | Cleanup | Kitsune Ral | |
2019-11-01 | Derive Omittable<> from std::optional<> | Kitsune Ral | |
That breaks API all over the place but: 1. The fixes are trivial. 2. More of std:: is used instead of home-baking the same stuff. | |||
2019-09-29 | Simplify visit() signature | Kitsune Ral | |
Checking that BaseEventT descends from Event is really extraneous. | |||
2019-09-12 | Introduce HashQ<> and UnorderedMap<> | Kitsune Ral | |
Invading into std:: is frowned upon, even though legitimate from the C++ standard perspective. Given that it's possible to pass a hash object to unordered_map, it only takes an alias for std::unordered_map to avoid having to specialize std::hash. And besides, a generic compatibility bridge between qHash and std::hash has been long needed. std::hash<QString> in converters.h remains for now; it will be dropped separately when the API files get regenerated to use UnorderedMap. | |||
2019-08-25 | RoomMessageEvent::content(): constify event content | Kitsune Ral | |
2019-08-13 | Support for server notices rooms (MSC1452) | Kitsune Ral | |
Closes #326. | |||
2019-08-11 | Use [[maybe_unused]] instead of [[gnu::unused]] | Kitsune Ral | |
2019-08-11 | Now that we're C++17, remove old compatibility cruft | Kitsune Ral | |
2019-08-11 | Drop EventType namespace and DEFINE_EVENTTYPE_ALIAS macro | Kitsune Ral | |
They've been deprecated for almost a year by now. | |||
2019-08-11 | Cleanup | Kitsune Ral | |
[skip ci] | |||
2019-08-09 | Namespace: QMatrixClient -> Quotient (with back comp alias) | Kitsune Ral | |
2019-08-02 | Apply the new brace wrapping to source files | Kitsune Ral | |
2019-08-02 | Merge branch 'master' into use-clang-format | Kitsune Ral | |
2019-08-01 | Merge branch 'master' into kitsune-relations | Kitsune Ral | |
Unified *Key -> *KeyL identifiers in roommessageevent.cpp along the way. | |||
2019-07-31 | Support for receiving m.reaction events | Kitsune Ral | |
* struct EventRelation; class ReactionEvent; Room::relatedEvents() * Reaction events are processed in both history and sync batches * Redacting a reaction removes it from the list of related events * QMCTest::sendReaction() | |||
2019-07-31 | Initial support for edited messages (receive only) | Kitsune Ral | |
2019-07-27 | E2EE: introduce EncryptedEvent | Alexey Andreyev | |
2019-07-14 | E2EE: provide a shared header with encryption standard key names | Alexey Andreyev | |
2019-07-09 | Merge branch 'master' into use-clang-format | Kitsune Ral | |
2019-07-08 | RoomEvent::setRoomId()/setSender() | Kitsune Ral | |
2019-07-06 | EncryptionEvent: Adjust upon merge from master | Kitsune Ral | |
2019-07-06 | Merge branch 'master' into e2ee-enc-mng | Kitsune Ral | |
2019-07-06 | Fix building with Clang | Kitsune Ral | |
2019-07-06 | Be stricter on usage of stateKey | Kitsune 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-06 | loadStateEvent() | Kitsune Ral | |
2019-07-06 | Convenience: StateKeyKey, StateKeyKeyL, basicStateEventJson() | Kitsune Ral | |
2019-07-06 | Fix clazy warnings | Kitsune Ral | |
2019-07-04 | Add full EncryptionEvent to room logic. Issue #95 | Alexey Andreyev | |
2019-06-25 | Introduce EncryptionEvent class | Kitsune Ral | |
This allows to detect if a room has been encrypted (no room state, just an event as of yet). Closes #84. |