release 0.4.0, update changelog

This commit is contained in:
Thomas Waldmann 2013-11-17 00:15:19 +01:00
parent d8bcc5b7f5
commit cb89967189
2 changed files with 28 additions and 1 deletions

View File

@ -1,6 +1,33 @@
ChangeLog ChangeLog
========= =========
Release 0.4.0
-------------
Fixes:
* fix api return value (no "noauth", just "badauth")
* fix invalid /detectip/None URL for fresh session
* make IP detection on the web UI a bit more reliable
* fix KeyErrors in logging (at least for default format)
New Features:
* use REMOTE_ADDR for one of the 2 IP detections
* add a warning on the UI if the user has no javascript enabled
* use real session cookies by default (that get cleared on browser close)
* support "keep me logged in" if user wants a permanent 14d cookie
* use html5 autofocus to put cursor into the right input field
* python manage.py testuser to reinitialize test user (see docs)
Other changes:
* document clearsessions usage
* more tests
Release 0.3.0 Release 0.3.0
------------- -------------

View File

@ -62,4 +62,4 @@ class Version(tuple):
return version_str return version_str
version = Version(0, 3, 0) version = Version(0, 4, 0)