Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
70cb27bf0a | ||
|
|
2a744a3a83 | ||
|
|
3b17f9d6ec |
@@ -1,4 +1,4 @@
|
|||||||
bind = ['[::]:8000', 'localhost:8000']
|
bind = '0.0.0.0:8000'
|
||||||
backlog = 2048
|
backlog = 2048
|
||||||
workers = 3
|
workers = 3
|
||||||
worker_class = 'sync'
|
worker_class = 'sync'
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ services:
|
|||||||
POSTGRES_PASSWORD: paperless
|
POSTGRES_PASSWORD: paperless
|
||||||
|
|
||||||
webserver:
|
webserver:
|
||||||
image: jonaswinkler/paperless-ng:0.9.10
|
image: jonaswinkler/paperless-ng:0.9.11
|
||||||
restart: always
|
restart: always
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
webserver:
|
webserver:
|
||||||
image: jonaswinkler/paperless-ng:0.9.10
|
image: jonaswinkler/paperless-ng:0.9.11
|
||||||
restart: always
|
restart: always
|
||||||
depends_on:
|
depends_on:
|
||||||
- broker
|
- broker
|
||||||
|
|||||||
@@ -5,6 +5,13 @@
|
|||||||
Changelog
|
Changelog
|
||||||
*********
|
*********
|
||||||
|
|
||||||
|
|
||||||
|
paperless-ng 0.9.11
|
||||||
|
###################
|
||||||
|
|
||||||
|
* Fixed an issue with the docker image not starting at all due to a configuration change of the web server.
|
||||||
|
|
||||||
|
|
||||||
paperless-ng 0.9.10
|
paperless-ng 0.9.10
|
||||||
###################
|
###################
|
||||||
|
|
||||||
@@ -15,6 +22,7 @@ paperless-ng 0.9.10
|
|||||||
|
|
||||||
* Other changes and additions
|
* Other changes and additions
|
||||||
|
|
||||||
|
* Thanks to `zjean`_, paperless now publishes a webmanifest, which is useful for adding the application to home screens on mobile devices.
|
||||||
* The Paperless-ng logo now navigates to the dashboard.
|
* The Paperless-ng logo now navigates to the dashboard.
|
||||||
* Filter for documents that don't have any correspondents, types or tags assigned.
|
* Filter for documents that don't have any correspondents, types or tags assigned.
|
||||||
* Tags, types and correspondents are now sorted case insensitive.
|
* Tags, types and correspondents are now sorted case insensitive.
|
||||||
@@ -958,6 +966,7 @@ bulk of the work on this big change.
|
|||||||
|
|
||||||
* Initial release
|
* Initial release
|
||||||
|
|
||||||
|
.. _zjean: https://github.com/zjean
|
||||||
.. _rYR79435: https://github.com/rYR79435
|
.. _rYR79435: https://github.com/rYR79435
|
||||||
.. _Michael Shamoon: https://github.com/shamoon
|
.. _Michael Shamoon: https://github.com/shamoon
|
||||||
.. _jayme-github: http://github.com/jayme-github
|
.. _jayme-github: http://github.com/jayme-github
|
||||||
|
|||||||
@@ -2,5 +2,5 @@ export const environment = {
|
|||||||
production: true,
|
production: true,
|
||||||
apiBaseUrl: "/api/",
|
apiBaseUrl: "/api/",
|
||||||
appTitle: "Paperless-ng",
|
appTitle: "Paperless-ng",
|
||||||
version: "0.9.10"
|
version: "0.9.11"
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
__version__ = (0, 9, 10)
|
__version__ = (0, 9, 11)
|
||||||
|
|||||||
Reference in New Issue
Block a user