From bc2d945e91b368bf94dcc9e957f9eafda14f8721 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 10 Feb 2015 06:02:20 -0400 Subject: [PATCH] Add more entries to the release notes --- docs/releases/1.1.rst | 45 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/docs/releases/1.1.rst b/docs/releases/1.1.rst index 1eccf4ae55..e537425934 100644 --- a/docs/releases/1.1.rst +++ b/docs/releases/1.1.rst @@ -144,6 +144,51 @@ Instead the fully qualified name of the class must be passed as the setting valu DOCUMENTS_STORAGE_BACKEND = 'custom_app.backends.CustomStorageBackend' +Removal of the OCR config setting +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +OCR behavior is now a document type property meaning that is can be turned +on or off for specific document types. + + +Per document language setting +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Previously the document language used for OCR was specified for the entire +installation. If documents in multiple languages were uploaded some suffered +lower successes rates. Now the language of each document can be specified. + + +Metadata validation and parsing support +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +It is now possible to create function to validate metadata value input or +parse and store corrected values. Three sample metadata validations functions +are included: ``Parse date and time``, ``Parse date`` and ``Parse time``. + + +Removal of 960 grid system in favor Pure CSS's grid system +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +By using Pure CSS's columns based grid system, the move towards a +Bootstrap UI migration has advanced greatly. + + +Simplified UI +~~~~~~~~~~~~~ +All user actions as well as the logout button as now under the user functions +section. + + +Stable PDF previews generation +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +The way PDF were being generated has been improved greatly eliminating +spurious segmentation faults at the expense of a small speed penalty. + + +More technical documentation +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Many new sub topics were added to the development section of the document +to allow developers to better understand the inner workings and philosophies +of **Mayan EDMS**. + + Other changes ~~~~~~~~~~~~~