aboutsummaryrefslogtreecommitdiffstats
path: root/matrix-statetable.c
Commit message (Collapse)AuthorAgeFilesLines
* Send/receive typing notificationsEion Robb2017-03-121-0/+6
| | | | using the "Group Typing Notifications" plugin
* Ignore empty m.room.nameDr. David Alan Gilbert2016-07-031-1/+1
| | | | | | | | | m.room.name can exist but be an empty string, in which case we should fallback to one of the other naming schemes. (#offtopic:matrix.org has this). Signed-off-by: Dr. David Alan Gilbert <dave@treblig.org>
* Fix a bug which stopped room name changes being handledRichard van der Hoff2015-11-191-1/+1
| | | | If a room's name changed, we didn't update the UI.
* Handle incoming room invitesRichard van der Hoff2015-11-021-3/+14
| | | | | Propagate received invites to the UI, and correctly handle accepting/refusing them.
* Use m.room.canonical_alias when it existsRichard van der Hoff2015-11-021-0/+11
| | | | Some rooms have a canonical alias which should be used for their names.
* Refactor the statetable out to a separate fileRichard van der Hoff2015-10-301-0/+147
Apart from generally being cleaner, we're going to want to use the statetable in isolation of rooms, to handle invites.