From 23f7126f10932e5cec3d21c009c8e3d6ae4c0352 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 22 Nov 2011 09:48:41 -0400 Subject: [PATCH] Updated changelog --- docs/changelog.rst | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index 3102f87c95..821d744db3 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,3 +1,46 @@ +Version 0.10 +------------ +* Added a proper setup views for the document grouping functionality +* Document grouping is now called smart linking as it relates better to + how it actually works. The data base schema was changed and users must + do the required:: + + $ ./manager syncdb + + for the new tables to be created. +* Grappelli is no longer required as can be uninstalled. +* New smarter document preview widget that doesn't allow zooming or viewing + unknown or invalid documents. +* New office document converter, requires: + + * LibreOffice (https://www.libreoffice.org/) + * unoconv [version 0.5] (https://github.com/dagwieers/unoconv) + +* The new office documents converter won't convert files with the extension + .docx becasue these files are recognized as zip files instead. This + is an issue of the libmagic library. + +* New configuration option added CONVERTER_UNOCONV_USE_PIPE that controls + how unoconv handles the communication with LibreOffice. The default of + `True` causes unoconv to use pipes, this approach is slower than using + TCP/IP ports but it is more stable. + +* Initial REST API that exposes documents properties and one method, this + new API is used by the new smart document widget and requires the + packaged `djangorestframework`, users must issue a:: + + $ pip install -r requirements/production.txt + + to install the new requirement. + +* MIME type detection and caching performance updates. +* Updated the included version of jQuery to 1.7 +* Updated the included version of JqueryAsynchImageLoader to 0.9.7 +* Document image serving response now specifies a MIME type for increased + browser compatibility. +* Small change in the scheduler that increases stability. + + Version 0.9.1 ------------- * Added handling percent encoded unicode query strings in search URL,