Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-11-03 | Rejig order of checks/state updates/message insertions for m.room.member. ↵ | Kegan Dougal | 1 | -26/+23 | |
Mark known issue. | |||||
2014-11-03 | Fix off-by-one bug when displaying display names / avatar urls when paginating. | Kegan Dougal | 1 | -0/+7 | |
2014-11-03 | Backwards compat for old-style avatar_urls | Kegan Dougal | 1 | -1/+2 | |
2014-11-03 | Reference the room_member key on messages which adjusts for current vs ↵ | Kegan Dougal | 2 | -8/+18 | |
old_room_state. This displays names for historical users correctly, but is off by one (referencing content not prev_content). | |||||
2014-11-03 | Variable renaming, general cleanup. Don't feed state events from ↵ | Kegan Dougal | 2 | -38/+29 | |
/initialSync twice. | |||||
2014-11-03 | Fix broken redact enable logic. | Kegan Dougal | 1 | -1/+1 | |
2014-11-03 | Fix hidden event keys being incorrectly shown in the even info dialog. | Kegan Dougal | 1 | -1/+5 | |
2014-11-03 | Fix bug which prevented pagination from bumping the list down, causing ↵ | Kegan Dougal | 1 | -1/+1 | |
infini-pagination. | |||||
2014-11-03 | Fix bug which prevented room name invites appearing correctly. | Kegan Dougal | 3 | -86/+47 | |
2014-11-03 | Fix bug which prevented the number of users being visible on the recents view. | Kegan Dougal | 3 | -5/+4 | |
2014-11-03 | Remove events.rooms[room_id] entirely from event-handler-service. | Kegan Dougal | 4 | -232/+59 | |
Everything now uses modelService, but there are still one or two minor teething problems to fix. | |||||
2014-11-03 | Make recents[controller/filter/html] use modelService. | Kegan Dougal | 5 | -25/+66 | |
This breaks functionality whilst both events.rooms and modelService are in use. | |||||
2014-11-03 | Make call stuff use modelService. | Kegan Dougal | 2 | -5/+5 | |
2014-11-03 | Keep matrixService stateless and make matrixFilter use modelService. | Kegan Dougal | 5 | -53/+53 | |
2014-11-03 | Prevent EventStreamService from knowing too much about the ↵ | Kegan Dougal | 2 | -21/+20 | |
EventHandlerService by changing the contract to just be a single initialSync response callback. Leave it up the handler to deal with splitting out information from /initialSync. | |||||
2014-10-31 | Replace lots of .events.rooms[room_id] with .room | Kegan Dougal | 4 | -16/+22 | |
2014-10-31 | room.html now displays messages from model-service. Add debugging fields. ↵ | Kegan Dougal | 5 | -17/+31 | |
Hook up the room member *at the time* to the message so it can display the right historical member info. | |||||
2014-10-31 | Hook into more of event-handler-service and mimic its functions for now. |