forked from bashu/django-watermark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
62 lines (45 loc) · 1.6 KB
/
CHANGES
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
0.2.0
-----
- added the ability to remove alpha introduced with the watermark effect
- dropped support for Python 2.x, removed deprecated code and various bugfixes
- removed 10px margin introduced in 0.1.7
0.1.9
-----
- python_2_unicode_compatible import error for latest django version 3.0.13 bug fix
- fixed bug cannot write mode RGBA as JPEG
0.1.8
-----
- python 2.x and 3.x bugfixes
0.1.7
-----
- makes it easy for browsers like Mozilla and Opera get the correct url of images
- added a 10px margin from corners to apply watermark
- resize watermark before calculating its position
- apply anti-aliasing on watermark
- django >= 1.4 timezone support
- python 3 compatibility
- pillow compatibility
0.1.5-pre1
----------
- refactored a good deal of the code inside the watermark filter and placed it in utils.py.
Now the filter is mostly just an interface to the utils.watermark function.
- removed the "parameter precedence" with positioning, tiling, and scaling.
Now they can all be used at the same time.
- added several enhancements to the positioning and tiling features in particular
0.1.2-pre1
----------
- added the ability to randomly position watermarks
- removed the "top-left" part of positioning--meaning that position=50%x50%
actually centers the watermark image instead of centering the top-left corner
of the watermark image
- added watermark rotation
0.1.1-pre1
----------
- added the ability to conver the watermark image to a transparent
greyscale image before applying it to the target image
0.1.0-pre2
----------
- fixed a typo that broke the filter
0.1.0-pre1
----------
- initial release