-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathCHANGELOG.txt
100 lines (56 loc) · 2 KB
/
CHANGELOG.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
=== 0.10.X (to be released as 0.11) ===
=== 0.10 ===
- Updated urls.py to be compatible with recent Django versions (
no longer using `patterns`)
=== 0.9 ===
- Fixed all auth_urls - we have to keep the original URL names because Django
uses them internally. You might want to search for `auth_` in your templates
and only keep it for `auth_login` and `auth_logout` but remove it from the
other URLs
=== 0.8 ===
- Fixed password_change_done URL name
=== 0.7.2 ===
- Prepared for Python 3 and fixed email validator import
=== 0.7.1 ===
- Added title block to all templates
=== 0.7 ===
- Added login_remember_me view function
- Added remember_me field to EmailLoginForm
=== 0.6 ===
- Changed URL settings due to misuse of get_success_url function in
django-registration app
- updated to support django-registration's new class based views
=== 0.5.4 ===
- updated Manifest.in to include missing style sheet
=== 0.5.3 ===
- stripping whitespace from email string in registration form
=== 0.5.2 ===
- Changed deprecated import
=== 0.5.1 ===
- using hashlib instead of deprecated md5 module
=== 0.5 ===
- Added dutch translation
=== 0.4.1 ===
- Fixed a bad <p> tag
=== 0.4 ===
- Added registration_base.html template.
=== 0.3 ===
- making sure to save emails as lower case all the time
=== 0.2.4 ===
- BUGFIX!! Fixed typo in urls.py. Thanks to `DmitryGit` for reporting this!
=== 0.2.3 ===
- Replaced usage of `direct_to_template` with `TemplateView` because the former
doesn't exist in Django 1.5 any more.
=== 0.2.2 ===
- made username generation more robust to avoid name clashes
=== 0.2.1 ===
- Added method `generate_username` in `forms.py` so you can re-use it in your
own apps.
=== 0.2.0 ===
- Added new settings: REGISTRATION_EMAIL_REGISTER_SUCCESS_URL and
REGISTRATION_EMAIL_ACTIVATE_SUCCESS_URL. This allows to override the standard
redirect without overriding the urls.py.
=== 0.1.0 ===
- Added URLs for the simple backend of django-registration.
=== 0.0.1 ===
- Initial commit