From a8e7ec0e960bbb9ab1daba016b6e0358f1acc9c5 Mon Sep 17 00:00:00 2001 From: jonaswinkler <17569239+jonaswinkler@users.noreply.github.com> Date: Sun, 18 Apr 2021 11:25:11 +0200 Subject: [PATCH] changelog, version bump --- docs/changelog.rst | 18 ++++++++++++++++++ src-ui/src/environments/environment.prod.ts | 2 +- src/paperless/version.py | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index b08fd17e8..0e5502501 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,22 @@ Changelog ********* +paperless-ng 1.4.1 +################## + +* Added Polish locale. + +* Changed some parts of the Dockerfile to hopefully restore functionality on certain ARM devices. + +* Updated python dependencies. + +* `Michael Shamoon`_ added a sticky filter / bulk edit bar. + +* `sbrl`_ changed the docker-entrypoint.sh script to increase compatibility with NFS shares. + +* `Chris Nagy`_ added support for creating a super user by passing ``PAPERLESS_ADMIN_USER`` and + ``PAPERLESS_ADMIN_PASSWORD`` as environment variables to the docker container. + paperless-ng 1.4.0 ################## @@ -1345,6 +1361,8 @@ bulk of the work on this big change. * Initial release +.. _Chris Nagy: https://github.com/what-name +.. _sbrl: https://github.com/sbrl .. _slorenz: https://github.com/sisao .. _Jo Vandeginste: https://github.com/jovandeginste .. _zjean: https://github.com/zjean diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index 63789a9d4..851cf9e71 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -3,7 +3,7 @@ export const environment = { apiBaseUrl: "/api/", apiVersion: "2", appTitle: "Paperless-ng", - version: "1.4.0", + version: "1.4.1", webSocketHost: window.location.host, webSocketProtocol: (window.location.protocol == "https:" ? "wss:" : "ws:") }; diff --git a/src/paperless/version.py b/src/paperless/version.py index 532acc3df..71bf75b3d 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1 +1 @@ -__version__ = (1, 4, 0) +__version__ = (1, 4, 1)