-
Notifications
You must be signed in to change notification settings - Fork 8
/
CHANGELOG.txt
98 lines (58 loc) · 2.01 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
=== (ongoing) ===
=== 1.2.X ===
- Small updates for Django>1.9
- Fixed broken paths in css files
- prepared app for Django 1.9 and Python 3.5
- Added widget attribute to form mixin
- Replaced factory boy with mixer
- Optimized app for Django 1.8
- Added initial image in form mixin
=== 1.1.X ===
- Fixed UserMediaImage.box_coordinates
- Fixed migrations to make use of a custom user model
- Fixed image deletion for third party storages
- added data-img-class attribute on the userMediaImageUploaded element
- added hide_cutout variable to hide jQuery crop trigger link
=== 1.1 ===
- Media files (and their thumbnails) are deleted, if an UserMediaImage is
deleted.
=== 1.0 ===
- Requirements update
- Custom user model integration
=== 0.11.2 ===
- Allowing variable field name for UserMediaImageFormMixin
=== 0.11.1 ===
- Improved permission handle in ajax views
=== 0.11 ===
- Added content_object to form so that you can use it in the form template,
i.e. to use it's get_absolute_url method for the `Go back` link
=== 0.10 ===
- Added Jcrop to select a thumb area
=== 0.9.2 ===
- prepared factories to use latest factory boy
=== 0.9.1 ===
- fixed maximum upload amount, if a user has more than one connection to the
UserMediaImage model
=== 0.9 ===
- fixed form validation bug with Django 1.5
=== 0.8 (ongoing) ===
- added position field to UserMediaImage model
- added fallback to content_object.get_user() to CreateImageView if
content_object has no attribute user
=== 0.8 ===
- Enhanced UpdateView so that we can use it with AJAX calls as well.
=== 0.7 ===
- DeleteImageView now inherits AjaxResponseMixin of django-libs
=== 0.6 ===
- CreateImageView now inherits AjaxResponseMixin of django-libs
=== 0.5 ===
- Added user__email to search fields for UserMediaImage admin.
=== 0.4 ===
- Added admin for the UserMediaImage model.
=== 0.3 ===
- Added UpdateView
=== 0.2 ===
- Added UserMediaImageFormMixin which allows us to upload an image as part of
any model's ModelForm.
=== 0.1 ===
- Initial commit