From b122a05c710dc78cbd8989350be97220f6e79cf8 Mon Sep 17 00:00:00 2001 From: jonaswinkler <17569239+jonaswinkler@users.noreply.github.com> Date: Sat, 15 May 2021 19:21:15 +0200 Subject: [PATCH] changelog and version bump --- docs/changelog.rst | 19 +++++++++++++++++++ src-ui/src/environments/environment.prod.ts | 2 +- src/paperless/version.py | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 9acfed57e..10f99e4b5 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,23 @@ Changelog ********* +paperless-ng 1.4.3 +################## + +* Additions and changes + + * Added Swedish locale. + * `Stéphane Brunner`_ added an option to disable the progress bars of all management commands. + * `Jo Vandeginste`_ added support for RTF documents to the Apache TIKA parser. + * `Michael Shamoon`_ added dark mode for the login and logout pages. + * `Alexander Menk`_ added additional stylesheets for printing. You can now print any page of paperless and the print result will hide the page header, sidebar, and action buttons. + * Added support for sorting when using full text search. + +* Fixes + + * `puuu`_ fixed ``PAPERLESS_FORCE_SCRIPT_NAME``. You can now host paperless on sub paths such as ``https://localhost:8000/paperless/``. + * Fixed an issue with the document consumer crashing on certain documents due to issues with pdfminer.six. This library is used for PDF text extraction. + paperless-ng 1.4.2 ################## @@ -1366,6 +1383,8 @@ bulk of the work on this big change. * Initial release +.. _Alexander Menk: https://github.com/amenk +.. _puuu: https://github.com/puuu .. _WhiteHatTux: https://github.com/WhiteHatTux .. _Chris Nagy: https://github.com/what-name .. _sbrl: https://github.com/sbrl diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index 54c32d370..01ab0dd6c 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -5,7 +5,7 @@ export const environment = { apiBaseUrl: document.baseURI + "api/", apiVersion: "2", appTitle: "Paperless-ng", - version: "1.4.2", + version: "1.4.3", webSocketHost: window.location.host, webSocketProtocol: (window.location.protocol == "https:" ? "wss:" : "ws:"), webSocketBaseUrl: base_url.pathname + "ws/", diff --git a/src/paperless/version.py b/src/paperless/version.py index ffb22f305..dc7411505 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1 +1 @@ -__version__ = (1, 4, 2) +__version__ = (1, 4, 3)