Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-09-01 | Add all the necessary checks to make banning work. | Erik Johnston | 6 | -6/+54 | |
2014-09-01 | Follow API renaming. state -> presence. mtime_ago -> last_active_ago | Emmanuel ROHEE | 3 | -16/+15 | |
2014-09-01 | Small formatting errors | Kegan Dougal | 1 | -2/+2 | |
2014-09-01 | fix lying docs | David Baker | 1 | -14/+3 | |
2014-09-01 | Added roomName, a directive to compute a room name based on its alias (not ↵ | Emmanuel ROHEE | 4 | -5/+45 | |
aliases for now) and its users displaynames or ids | |||||
2014-09-01 | Little bit more on syncing APIs, need to know more about responses before ↵ | Kegan Dougal | 1 | -8/+42 | |
more work can be done on it. | |||||
2014-09-01 | Oops, show the voice call button once a call has ended | David Baker | 1 | -1/+1 | |
2014-09-01 | Added docs on presence 'last_active' field | Paul "LeoNerd" Evans | 1 | -0/+8 | |
2014-09-01 | Fairly simple move of the call status widget to the header bar (and ↵ | David Baker | 5 | -40/+44 | |
therefore into the index page rather than the rooms page). | |||||
2014-09-01 | Flesh out Room Events. | Kegan Dougal | 1 | -17/+99 | |
2014-09-01 | BF: Check config exists (=defined in the localstorage) before using it | Emmanuel ROHEE | 1 | -2/+6 | |
2014-09-01 | missing semicolon | David Baker | 1 | -1/+1 | |
2014-09-01 | Bump a user's presence last_active time every time they send a message to a room | Paul "LeoNerd" Evans | 2 | -0/+10 | |
2014-09-01 | Have MemoryDataStore's get_rooms_for_user_where_membership_is() return room ↵ | Paul "LeoNerd" Evans | 1 | -2/+3 | |
membership event objects, as per interface contract | |||||
2014-09-01 | Add beginnings of ban support. | Erik Johnston | 8 | -29/+122 | |
2014-09-01 | Perform room unit tests with 'local' users actually in the right domain ;) | Paul "LeoNerd" Evans | 2 | -6/+10 | |
2014-09-01 | Specced out state/non-state events. Start working on the myriad of syncing APIs. | Kegan Dougal | 1 | -15/+94 | |
2014-09-01 | Handle call events in the recents view as well to get consistency with what ↵ | David Baker | 1 | -0/+5 | |
it displays when refreshed. | |||||
2014-09-01 | Just show 'Call' for call events. Don't just splat out the content of the ↵ | David Baker | 1 | -1/+3 | |
event for other events: it's rarely going to be sesnible. | |||||
2014-09-01 | Rename API-visible 'mtime' presence field to 'last_active'; slightly ↵ | Paul "LeoNerd" Evans | 4 | -41/+82 | |
different semantics | |||||
2014-09-01 | Fixed presence change that occurs -Xs ago | Emmanuel ROHEE | 1 | -0/+5 | |
2014-09-01 | Fixed presence state update. Specifically, the current user was sometimes ↵ | Emmanuel ROHEE | 1 | -5/+23 | |
indicated as offline | |||||
2014-09-01 | Rename 'state' presence key to the much more obvious 'presence'; maintain a ↵ | Paul "LeoNerd" Evans | 7 | -78/+147 | |
legacy 'state' copy for now | |||||
2014-09-01 | Fleshed out joining/leaving rooms. Added M_LIMIT_EXCEEDED standard error ↵ | Kegan Dougal | 1 | -12/+64 | |
code for rate limited requests. | |||||
2014-09-01 | Implement power level lists, default power levels and ↵ | Erik Johnston | 7 | -48/+218 | |
send_evnet_level/add_state_level events. | |||||
2014-09-01 | Don't show the hang up button once tha call has ended | David Baker | 1 | -1/+1 | |
2014-09-01 | Added /web folder which contains html/css (based off the default swagger-ui) ↵ | Kegan Dougal | 17 | -0/+10718 | |
for viewing the c-s json api. | |||||
2014-09-01 | Renamed json files because: paths. | Kegan Dougal | 8 | -7/+7 | |
2014-09-01 | add another public wishlist item | Matthew Hodgson | 1 | -0/+1 | |
2014-09-01 | make the little logos clickable for Erik | Matthew Hodgson | 6 | -7/+7 | |
2014-09-01 | Start digging into invite/join/leave sections. | Kegan Dougal | 1 | -10/+51 | |
2014-09-01 | BF: Pass desired_user_id to register API. And update the app header to avoid ↵ | Emmanuel ROHEE | 2 | -2/+10 | |
to display the previous matrix id | |||||
2014-09-01 | licenses, please... | Matthew Hodgson | 2 | -2/+32 | |
2014-09-01 | fix footer on non-room pages | Matthew Hodgson | 1 | -1/+0 | |
2014-08-31 | don't make HS ports explicit if it's the default for the protocol | Matthew Hodgson | 2 | -2/+8 | |
2014-08-31 | missed a s#/matrix#/_matrix/g | Matthew Hodgson | 1 | -1/+1 | |
2014-08-31 | change the world: make the default matrix API URL prefix /_matrix rather ↵ | Matthew Hodgson | 27 | -93/+93 | |
than /matrix to make it easier for existing websites to mount a HS in their namespace without collisions. perl -pi -e 's#/matrix#/_matrix#g' ./cmdclient/console.py ./docs/client-server/howto.rst ./docs/client-server/specification.rst ./docs/client-server/swagger_matrix/directory ./docs/client-server/swagger_matrix/events ./docs/client-server/swagger_matrix/login ./docs/client-server/swagger_matrix/presence ./docs/client-server/swagger_matrix/profile ./docs/client-server/swagger_matrix/registration ./docs/client-server/swagger_matrix/rooms ./docs/server-server/specification.rst ./graph/graph.py ./jsfiddles/create_room_send_msg/demo.js ./jsfiddles/event_stream/demo.js ./jsfiddles/example_app/demo.js ./jsfiddles/register_login/demo.js ./jsfiddles/room_memberships/demo.js ./synapse/api/urls.py ./tests/federation/test_federation.py ./tests/handlers/test_presence.py ./tests/handlers/test_typing.py ./tests/rest/test_events.py ./tests/rest/test_presence.py ./tests/rest/test_profile.py ./tests/rest/test_rooms.py ./webclient/components/fileUpload/file-upload-service.js ./webclient/components/matrix/matrix-service.js | |||||
2014-08-31 | make lightbox a bit less ugly | Matthew Hodgson | 1 | -2/+6 | |
2014-08-31 | only show presence timings if we know them | Matthew Hodgson | 1 | -1/+1 | |
2014-08-31 | nasty big monolithic commit of a whole bunch of UI/UX improvements: | Matthew Hodgson | 15 | -310/ |