summary refs log tree commit diff
path: root/src/MatrixClient.cc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Implement a per-room send queue. (#118)Jani Mustonen2017-11-151-5/+8
| | | [ci skip]
* Use C++11 braced list style (#121)Benjamin Saunders2017-11-051-12/+12
|
* Implemented sending of typing notifications (#105)Thomas Herzog2017-10-311-0/+50
|
* Add missing headersKonstantinos Sideris2017-10-281-1/+0
|
* Clean up headersKonstantinos Sideris2017-10-281-0/+3
|
* Use callbacks on MatrixClientKonstantinos Sideris2017-10-221-545/+409
|
* Remove cache updates from the main threadKonstantinos Sideris2017-10-211-3/+3
|
* Retry initial sync (#19)Konstantinos Sideris2017-10-201-1/+1
|
* Add /join command supportKonstantinos Sideris2017-10-081-4/+14
|
* Drop the loading screen if consensus can't be achievedKonstantinos Sideris2017-10-081-1/+1
|
* Resume sync when connectivity is establishedKonstantinos Sideris2017-10-051-0/+7
|
* Use string timeout parameterKonstantinos Sideris2017-10-051-1/+3
|
* Remove full_state from initial syncKonstantinos Sideris2017-10-041-17/+7
|
* Receive typing notifications (#88)Konstantinos Sideris2017-10-041-2/+3
|
* React to externally left and joined rooms, and add "leave room" button in ↵Max Sandholm2017-10-011-1/+77
| | | | | | | | | | room menu (#75) * Initial "join room" feature. * React correctly to remotely joined rooms. * Leaving rooms implemented both locally using the room menu in nheko, and reacting properly when leaving a room remotely from another client.
* Remove extra clang-format optionsKonstantinos Sideris2017-10-011-6/+6
|
* Implement image uploads (#24)Konstantinos Sideris2017-09-101-19/+90
|
* Allow port number as part of the hostnameKonstantinos Sideris2017-09-041-1/+7
| | | | closes #21
* Add write support for m.emote eventsKonstantinos Sideris2017-09-031-444/+468
| | | | closes #41
* Small style changeKonstantinos Sideris2017-08-201-42/+65
|
* Improve login flow (#35)jansol2017-07-081-2/+25
| | | | | * Validate both inferred and explicitly entered server addresses by attempting to call the /versions endpoint * If the domain from the mxid fails validation, try prefixing it with 'matrix' * Only show server address field if address validation ultimately fails
* Lazy load initial timeline eventsKonstantinos Sideris2017-06-051-2/+3
|
* Experimental support for user avatars in timelineKonstantinos Sideris2017-06-051-0/+52
|
* Set up translationsKonstantinos Sideris2017-05-291-4/+4
|
* Fetch avatar thumbnail instead of the original imageKonstantinos Sideris2017-05-271-6/+20
| | | | closes #31
* Initial support for backwards paginationKonstantinos Sideris2017-05-121-0/+47
|
* Save the user defined domain instead of the one provided by login responseKonstantinos Sideris2017-05-091-5/+3
|
* Initial support for display namesKonstantinos Sideris2017-05-081-4/+3
|
* Add sync timeoutKonstantinos Sideris2017-05-081-0/+1
|
* Use strongly typed enumsKonstantinos Sideris2017-05-081-12/+12
|
* Use timeline to retrieve state eventsKonstantinos Sideris2017-05-071-1/+3
| | | | | - Rooms without any history will be shown. - Room's state will be kept in sync and any updates will be visible.
* Add initial support for inline imagesKonstantinos Sideris2017-04-281-0/+36
|
* Exclude m.room.member events from initial syncKonstantinos Sideris2017-04-271-0/+6
|
* Initial implementation for local echoKonstantinos Sideris2017-04-131-2/+4
| | | | | | | | | | | | | Each HistoryView maintains a list of pending events. Each pending message is validated from the homeserver with either the returned EventId or the body of the message. Currently there is no support to remove invalid messages. Also some small refactoring: - ChatPage doesn't know about the message being sent. The message delivery is solely handled by HistoryViewManager. - Nick coloring function moved to HistoryViewManager.
* Use only a MatrixClient as a shared pointerKonstantinos Sideris2017-04-111-1/+90
|
* Make the timer single shotKonstantinos Sideris2017-04-111-1/+1
|
* Remove exception specificationsKonstantinos Sideris2017-04-091-9/+9
|
* Add logout buttonKonstantinos Sideris2017-04-091-0/+43
| | | | Logout from the current session and invalidate the current token
* Implement initial registration stageKonstantinos Sideris2017-04-081-11/+57
|
* Use const refs for the deserialized dataKonstantinos Sideris2017-04-061-5/+1
|
* Initial commitKonstantinos Sideris2017-04-061-0/+365