changelog and version bump

This commit is contained in:
jonaswinkler 2021-04-05 00:36:44 +02:00
parent d6a2672cab
commit 8960b0300f
3 changed files with 24 additions and 2 deletions

View File

@ -5,6 +5,28 @@
Changelog
*********
paperless-ng 1.4.0
##################
* Docker images now use tesseract 4.1.1, which should fix a series of issues with OCR.
* The full text search now displays results using the default document list. This enables
selection, filtering and bulk edit on search results.
* Changes
* New URL pattern for accessing documents by ASN directly (http://<paperless>/asn/123)
* Added logging when executing pre- and post-consume scripts.
* Better error logging during document consumption.
* Updated python dependencies.
* Fixes
* Fixed an issue with null characters in the document content.
paperless-ng 1.3.2
##################

View File

@ -3,7 +3,7 @@ export const environment = {
apiBaseUrl: "/api/",
apiVersion: "2",
appTitle: "Paperless-ng",
version: "1.3.2",
version: "1.4.0",
webSocketHost: window.location.host,
webSocketProtocol: (window.location.protocol == "https:" ? "wss:" : "ws:")
};

View File

@ -1 +1 @@
__version__ = (1, 3, 2)
__version__ = (1, 4, 0)