forked from mikeboers/Flask-Images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.txt
54 lines (44 loc) · 1.3 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
2.1.2
-----
- Fix for local cache not taking "enlarge" paremeter into account.
2.1.1
-----
- Fix for Cache-Control header to be a string (as all headers should be).
2.1.0
-----
- Retina/HiDPI support (still alpha; the API is subject to change).
- Transformation support (still alpha; the API is subject to change).
- `url_for(..., _external=True)` works.
- `enlarge=False` will not enlarge images.
- `resized_img_attrs(...)` to calculate final width and height.
2.0.0
-----
- INCOMPATIBILITY: Many things moved to flask.ext.images.core; `Images` and
`resized_img_src` remain.
- Compatible with Flask 0.9 (from 0.10).
1.1.5
-----
- Background colours are parsed by PIL; hex and html colours are now allowed.
- Fix for extension parsing bugs with URLs.
1.1.4
-----
- Fix regression introduced by 1.1.3 (such that remote images did not work).
1.1.3
-----
- Fix 3 security bugs, each of which would allow for reading any image on disk.
1.1.2
-----
- Depend on Pillow OR PIL.
1.1.1
-----
- Fix bug stopping remote images from working.
1.1.0
-----
- `url_for('images', **kw)` to ease transition from static files.
- Compatible with Pillow.
1.0.0
-----
- First official release!
- Removed lots of backwards compatibility with my own sites:
- restricted default path to ['static'];
- removed synonyms for `resized_img_src`.