summary refs log tree commit diff
path: root/src/ChatPage.cc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove cache updates from the main threadKonstantinos Sideris2017-10-211-16/+9
|
* Remove ui flickering when adding new timeline eventsKonstantinos Sideris2017-10-211-0/+5
|
* Clean unread count when the user logs outKonstantinos Sideris2017-10-211-0/+2
| | | | fixes #60
* Retry initial sync (#19)Konstantinos Sideris2017-10-201-15/+43
|
* Move ctrl-k callback to the MainWindowKonstantinos Sideris2017-10-201-9/+0
|
* Remove sync timerKonstantinos Sideris2017-10-201-20/+5
|
* Fix icons for retina displaysKonstantinos Sideris2017-10-151-0/+3
|
* Add /join command supportKonstantinos Sideris2017-10-081-6/+11
|
* Drop the loading screen if consensus can't be achievedKonstantinos Sideris2017-10-081-11/+22
|
* Prevent FOUCKonstantinos Sideris2017-10-071-2/+11
|
* Use shared pointer for the modalsKonstantinos Sideris2017-10-071-7/+12
|
* Put typing notifications above the text inputKonstantinos Sideris2017-10-041-2/+2
|
* Receive typing notifications (#88)Konstantinos Sideris2017-10-041-1/+30
|
* Recover from corrupted cache dataKonstantinos Sideris2017-10-031-15/+19
| | | | | | Make Cache constructor exception free fixes #74
* React to externally left and joined rooms, and add "leave room" button in ↵Max Sandholm2017-10-011-2/+81
| | | | | | | | | | 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.
* Stop sync timer after logoutKonstantinos Sideris2017-09-301-0/+4
| | | | Silence errors from redacted events
* Use white as the background colorKonstantinos Sideris2017-09-201-1/+1
|
* Implement image uploads (#24)Konstantinos Sideris2017-09-101-0/+12
|
* Add write support for m.emote eventsKonstantinos Sideris2017-09-031-0/+5
| | | | closes #41
* Remove cache data when the user logs outKonstantinos Sideris2017-08-261-0/+2
|
* Update the cache state at once to avoid being in an invalid stateKonstantinos Sideris2017-08-261-460/+365
|
* Small style changeKonstantinos Sideris2017-08-201-27/+37
|
* Ghetto room switcherKonstantinos Sideris2017-08-151-0/+36
|
* Focus on the text input when switching roomsKonstantinos Sideris2017-08-141-0/+1
|
* Display the most recent message instead of the topicKonstantinos Sideris2017-08-061-0/+5
| | | | closes #11
* Remove extra exception catchKonstantinos Sideris2017-08-051-2/+0
|
* Keep fetching history until the scrollbar gets activatedKonstantinos Sideris2017-08-051-1/+1
|
* Initial support for state cacheKonstantinos Sideris2017-07-301-5/+101
| | | | - Adds detection for duplicate events
* Experimental support for user avatars in timelineKonstantinos Sideris2017-06-051-0/+13
|
* Add context menu on RoomList itemsKonstantinos Sideris2017-05-311-1/+1
|
* Add menu to toggle notificationsKonstantinos Sideris2017-05-311-8/+23
|
* Resolve name and avatar on 1-on-1 roomsKonstantinos Sideris2017-05-261-14/+31
|
* Minimize to trayKonstantinos Sideris2017-05-211-0/+2
|
* Snappy sidebarKonstantinos Sideris2017-05-191-12/+64
|
* Show user info even if the display name or avatar are missingKonstantinos Sideris2017-05-161-1/+2
|
* Clear room state on logoutKonstantinos Sideris2017-05-161-0/+1
|
* Prefer non UserId as display namesKonstantinos Sideris2017-05-101-1/+5
|
* Initial support for display namesKonstantinos Sideris2017-05-081-0/+14
|
* Use timeline to retrieve state eventsKonstantinos Sideris2017-05-071-19/+141
| | | | | - Rooms without any history will be shown. - Room's state will be kept in sync and any updates will be visible.
* Rename History to TimelineKonstantinos Sideris2017-04-271-1/+1
| | | | In order to be compatible with the Matrix terminology
* Show the unread message count on the window titleKonstantinos Sideris2017-04-151-0/+15
|
* Add initial support for unread message countKonstantinos Sideris2017-04-151-0/+5
| | | | - Add border width on Badge
* Initial implementation for local echoKonstantinos Sideris2017-04-131-20/+2
| | | | | | | | | | | | | 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.
* Don't use icons as room avatarsKonstantinos Sideris2017-04-121-2/+1
|
* Small stylistic changesKonstantinos Sideris2017-04-121-5/+3
|
* Remove capitalizationKonstantinos Sideris2017-04-111-3/+0
|
* Use only a MatrixClient as a shared pointerKonstantinos Sideris2017-04-111-120/+36
|
* Make the timer single shotKonstantinos Sideris2017-04-111-11/+21
|
* Handle room avatars in top bar without an iconKonstantinos Sideris2017-04-101-0/+2
|
* Add logout buttonKonstantinos Sideris2017-04-091-0/+26
| | | | Logout from the current session and invalidate the current token
* Use const refs for the deserialized dataKonstantinos Sideris2017-04-061-4/+4
|
* Initialize sync timerKonstantinos Sideris2017-04-061-2/+3
|
* Initial commitKonstantinos Sideris2017-04-061-0/+277