diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-06-27 21:19:43 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-06-27 21:19:43 (GMT) |
commit | 31afbd52c28ee2a6fa23670b69c96e966d1dfe00 (patch) | |
tree | e4780f47385af5e964ef35026ab146f36cf94cf4 | |
parent | 224ffedb07e165c99e52045fb28614319a9e93e2 (diff) |
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | web-static/socket.html | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2016.06.27 -- Version 0.5.1 + +* enforce maximum file size (<2G) +* truncate last attachment message to reported size +* close websocket after done message + 2016.06.24 -- Version 0.5.0 * added websocket based file upload diff --git a/web-static/socket.html b/web-static/socket.html index af73763..712fd97 100644 --- a/web-static/socket.html +++ b/web-static/socket.html @@ -87,7 +87,7 @@ function run() { req = { COMMAND: "new", - TIMEOUT: 200, + TIMEOUT: 7200, REFERENCE_ID: $('#refid').val(), LOGIN_NAME: $('#username').val(), PASSWORD: $('#token').val(), |