django-downloadview/CHANGELOG

42 lines
1.2 KiB
Text
Raw Normal View History

Changelog
=========
2013-04-11 13:57:47 +00:00
1.2 (unreleased)
----------------
2013-05-28 06:51:31 +00:00
Bugfixes and documentation improvements.
- Bug #26 - Prevented computation of virtual file's size, unless the file
wrapper implements was_modified_since() method.
2013-05-28 06:51:31 +00:00
- Bug #34 - Improved support of files that do not implement modification time.
- Bug #35 - Fixed README conversion from reStructuredText to HTML (PyPI).
2013-04-11 13:57:47 +00:00
2013-04-11 13:56:44 +00:00
1.1 (2013-04-11)
2012-12-04 11:58:32 +00:00
----------------
2013-04-11 09:39:22 +00:00
Various improvements.
Contains **backward incompatible changes.**
- Added HTTPDownloadView to proxy to arbitrary URL.
- Added VirtualDownloadView to support files living in memory.
- Using StreamingHttpResponse introduced with Django 1.5. Makes Django 1.5 a
requirement!
- Added ``django_downloadview.test.assert_download_response`` utility.
- Download views and response now use file wrappers. Most logic around file
attributes, formerly in views, moved to wrappers.
- Replaced DownloadView by PathDownloadView and StorageDownloadView. Use the
right one depending on the use case.
2012-12-04 11:58:32 +00:00
2012-12-04 11:57:48 +00:00
1.0 (2012-12-04)
----------------
- Introduced optimizations for Nginx X-Accel: a middleware and a decorator
- Introduced generic views: DownloadView and ObjectDownloadView
- Initialized project