changelog, versions

This commit is contained in:
jonaswinkler 2021-06-13 19:17:29 +02:00
parent 5ee1f6b82b
commit 419580b3be
3 changed files with 15 additions and 2 deletions

View File

@ -5,6 +5,19 @@
Changelog
*********
paperless-ng 1.4.5
##################
This is primarily a maintenance release.
* Updated Python and Angular dependencies.
* Changed the algorithm that changes permissions during startup. This is still fast,
and will hopefully cause less issues.
* Fixed an issue that would sometimes cause paperless to write an incomplete
classification model file to disk.
* Fixed an issue with the OCRmyPDF parser that would always try to extract text
with PDFminer even from non-PDF files.
paperless-ng 1.4.4
##################

View File

@ -5,7 +5,7 @@ export const environment = {
apiBaseUrl: document.baseURI + "api/",
apiVersion: "2",
appTitle: "Paperless-ng",
version: "1.4.4",
version: "1.4.5",
webSocketHost: window.location.host,
webSocketProtocol: (window.location.protocol == "https:" ? "wss:" : "ws:"),
webSocketBaseUrl: base_url.pathname + "ws/",

View File

@ -1 +1 @@
__version__ = (1, 4, 4)
__version__ = (1, 4, 5)