summary refs log tree commit diff
path: root/docs/client-server/web (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-09-23Fix SYWEB-72 : Improve performance when typing.Kegan Dougal2-2/+16
Swapped ng-keydown to a directive, which does the same thing (check if up/down arrow then call history.goUp/goDown). This has *dramatically* improved performance when typing in rooms which have lots (>100) of messages loaded.
2014-09-23SYWEB-28: Fixed weird members list ordering: sort members on their last ↵Emmanuel ROHEE1-3/+10
activity absolute time
2014-09-23remove old commented-out codeMatthew Hodgson1-2/+1
2014-09-23fix one cause of SYWEB-53Matthew Hodgson1-7/+4
2014-09-23Send an HMAC(SHA1) protecting the User ID for the ReCAPTCHA bypass, rather ↵Paul "LeoNerd" Evans1-7/+26
than simply the secret itself, so it's useless if that HMAC leaks
2014-09-23Update API docs to include notes on /rooms/$roomid/stateKegan Dougal1-1/+1
2014-09-23Implemented /rooms/$roomid/state API.Kegan Dougal2-6/+23
2014-09-23Config values are almost never 'None', but they might be empty string. ↵Paul "LeoNerd" Evans1-1/+1
Detect their presence by truth
2014-09-23Make sure the config actually /has/ a captcha_bypass_secret set before ↵Paul "LeoNerd" Evans1-2/+3
trying to compare it
2014-09-23Allow a (hidden undocumented) key to m.login.recaptcha to specify a shared ↵Paul "LeoNerd" Evans2-6/+24
secret to allow bots to bypass the ReCAPTCHA test (SYN-60)
2014-09-23Partial fix of SYWEB-28: If members do not have last_active_ago, compare ↵Emmanuel ROHEE1-1/+17
their presence state to order them
2014-09-23send messages to users from the home page (SYWEB-19)Matthew Hodgson3-4/+42
2014-09-23fix NPEMatthew Hodgson1-2/+1
2014-09-23Fix SYWEB-8 : Buggy tab-complete.Kegan Dougal1-19/+40
The first red blink was caused by an uninitialised search index. There is no caching of entries, since this then wouldn't update if someone joined/left during the tab. Instead, set to search index to MAX_VALUE then fix it to a valid index AFTER the search is complete. Also ditched trailing space on ": ".
2014-09-22Show display name changes in the message list.Kegan Dougal2-8/+30
2014-09-22Bump versions and changelog v0.3.3Erik Johnston3-2/+22
2014-09-22Add working protractor e2e test.Kegan Dougal4-8/+26