mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-01 11:19:32 -05:00
version bump
This commit is contained in:
parent
d15f5df1c9
commit
b0275411ed
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -208,7 +208,7 @@ jobs:
|
|||||||
tag_name: ng-${{ steps.get_version.outputs.version }}
|
tag_name: ng-${{ steps.get_version.outputs.version }}
|
||||||
release_name: Paperless-ng ${{ steps.get_version.outputs.version }}
|
release_name: Paperless-ng ${{ steps.get_version.outputs.version }}
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: true
|
prerelease: false
|
||||||
body: |
|
body: |
|
||||||
For a complete list of changes, see the changelog at https://paperless-ng.readthedocs.io/en/latest/changelog.html.
|
For a complete list of changes, see the changelog at https://paperless-ng.readthedocs.io/en/latest/changelog.html.
|
||||||
-
|
-
|
||||||
|
@ -5,6 +5,19 @@
|
|||||||
Changelog
|
Changelog
|
||||||
*********
|
*********
|
||||||
|
|
||||||
|
|
||||||
|
paperless-ng 1.0.0
|
||||||
|
##################
|
||||||
|
|
||||||
|
Nothing special about this release, but since there are relatively few bug reports coming in, I think that this is reasonably stable.
|
||||||
|
|
||||||
|
* Changes and additions
|
||||||
|
|
||||||
|
* Added a language selector to the settings.
|
||||||
|
* Added date format options to the settings.
|
||||||
|
* Range selection with shift clicking is now possible in the document list.
|
||||||
|
|
||||||
|
|
||||||
paperless-ng 0.9.14
|
paperless-ng 0.9.14
|
||||||
###################
|
###################
|
||||||
|
|
||||||
@ -116,7 +129,7 @@ paperless-ng 0.9.10
|
|||||||
* There are some configuration options in the settings to alter the behavior.
|
* There are some configuration options in the settings to alter the behavior.
|
||||||
|
|
||||||
* 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.
|
* 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.
|
||||||
@ -136,7 +149,7 @@ paperless-ng 0.9.10
|
|||||||
The bulk delete operations did not update the search index. Therefore, documents that you deleted remained in the index and
|
The bulk delete operations did not update the search index. Therefore, documents that you deleted remained in the index and
|
||||||
caused the search to return messages about missing documents when searching. Further bulk operations will properly update
|
caused the search to return messages about missing documents when searching. Further bulk operations will properly update
|
||||||
the index.
|
the index.
|
||||||
|
|
||||||
However, this change is not retroactive: If you used the delete method of the bulk editor, you need to reindex your search index
|
However, this change is not retroactive: If you used the delete method of the bulk editor, you need to reindex your search index
|
||||||
by :ref:`running the management command document_index with the argument reindex <administration-index>`.
|
by :ref:`running the management command document_index with the argument reindex <administration-index>`.
|
||||||
|
|
||||||
@ -191,12 +204,12 @@ paperless-ng 0.9.7
|
|||||||
|
|
||||||
* Thanks to the hard work of `Michael Shamoon`_, paperless now comes with a much more streamlined UI for
|
* Thanks to the hard work of `Michael Shamoon`_, paperless now comes with a much more streamlined UI for
|
||||||
filtering documents.
|
filtering documents.
|
||||||
|
|
||||||
* `Michael Shamoon`_ replaced the document preview with another component. This should fix compatibility with Safari browsers.
|
* `Michael Shamoon`_ replaced the document preview with another component. This should fix compatibility with Safari browsers.
|
||||||
|
|
||||||
* Added buttons to the management pages to quickly show all documents with one specific tag, correspondent, or title.
|
* Added buttons to the management pages to quickly show all documents with one specific tag, correspondent, or title.
|
||||||
|
|
||||||
* Paperless now stores your saved views on the server and associates them with your user account.
|
* Paperless now stores your saved views on the server and associates them with your user account.
|
||||||
This means that you can access your views on multiple devices and have separate views for different users.
|
This means that you can access your views on multiple devices and have separate views for different users.
|
||||||
You will have to recreate your views.
|
You will have to recreate your views.
|
||||||
|
|
||||||
@ -214,7 +227,7 @@ paperless-ng 0.9.7
|
|||||||
This option enables you to be logged in into multiple instances by specifying different cookie names for each instance.
|
This option enables you to be logged in into multiple instances by specifying different cookie names for each instance.
|
||||||
|
|
||||||
* Fixes
|
* Fixes
|
||||||
|
|
||||||
* Sometimes paperless would assign dates in the future to newly consumed documents.
|
* Sometimes paperless would assign dates in the future to newly consumed documents.
|
||||||
* The filename format fields ``{created_month}`` and ``{created_day}`` now use a leading zero for single digit values.
|
* The filename format fields ``{created_month}`` and ``{created_day}`` now use a leading zero for single digit values.
|
||||||
* The filename format field ``{tags}`` can no longer be used without arguments.
|
* The filename format field ``{tags}`` can no longer be used without arguments.
|
||||||
|
@ -2,5 +2,5 @@ export const environment = {
|
|||||||
production: true,
|
production: true,
|
||||||
apiBaseUrl: "/api/",
|
apiBaseUrl: "/api/",
|
||||||
appTitle: "Paperless-ng",
|
appTitle: "Paperless-ng",
|
||||||
version: "0.9.14"
|
version: "1.0.0"
|
||||||
};
|
};
|
||||||
|
@ -1 +1 @@
|
|||||||
__version__ = (0, 9, 14)
|
__version__ = (1, 0, 0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user