forked from helloflask/flask-dropzone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
59 lines (47 loc) · 1.4 KB
/
CHANGES.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
Flask-Dropzone Changelog
=========================
The following changes are not backwards compatible or major new features
(bugfixes or new upstream releases are not explicitly listed):
1.4.3
------
released date: --
* Add support to use custom resources with `js_url` and `css_url` param in `load()`.
1.4.2
------
released date: 2018/2/17
* Add support to integrate with CSRFProtect (enabled via `DROPZONE_ENABLE_CSRF`
or `csrf` flag in `dropzone.create()`).
* Fix bug: `False` in JavaScript.
* Bump built-in resource's version to 5.2.0
* Add `action` argument in `dropzone.create()`. For example,
`dropzone.create(action=url_for('upload'))`.
1.4.1
------
* New configuration options: `DROPZONE_UPLOAD_MULTIPLE`,
`DROPZONE_PARALLEL_UPLOADS`, `DROPZONE_REDIRECT_VIEW`.
* Fix local static files bug.
* Add support for automatic redirection when upload was conmplete.
1.4
---
* New major upstream release (backwards incompatible!).
* Method `include_dropzone()` rename to `load()`.
* Add a `create()` method to create dropzone form.
* Add a `style()` method to add style to upload area.
* Use `action_view` argument (in `create()`) to set action url.
* Dropzonejs version increase to 5.1.1.
* PEP8 and bug fix.
1.3
---
* Documentation fix.
1.2
---
* Upload address fix.
* Delete useless code.
1.1
---
* Add more configuration options.
* Support local resource serve.
* Add basic documentation.
1.0
---
* Init release.