From 34da6e30e7ed0a7d310928abe9eb344042004f5d Mon Sep 17 00:00:00 2001 From: Eugen Ciur Date: Thu, 28 Nov 2024 09:15:14 +0100 Subject: [PATCH] add whats new in 3.3 --- docs/roadmap.md | 2 +- docs/whatsnew.md | 45 +++++++++++++++++++++++++++++++++++++++++++++ mkdocs.yml | 3 ++- 3 files changed, 48 insertions(+), 2 deletions(-) create mode 100644 docs/whatsnew.md diff --git a/docs/roadmap.md b/docs/roadmap.md index 57f5038..cb48fa3 100644 --- a/docs/roadmap.md +++ b/docs/roadmap.md @@ -1,4 +1,4 @@ -# Roadmap 2025 +# Roadmap 2025 :compass: For year 2025 we plan to implement in {{ extra.project }} following major features: diff --git a/docs/whatsnew.md b/docs/whatsnew.md new file mode 100644 index 0000000..19967b3 --- /dev/null +++ b/docs/whatsnew.md @@ -0,0 +1,45 @@ +# What's new in 3.3? + +Version 3.3 introduces following new major features: + +- Document Types +- Custom Fields +- Path Templates +- S3 storage backend + +## Document Types + +Document types enable you to categorize documents. You +can define types such as "Receipt", "Invoice", or "Contract". + +Read more about [document type in user manual](user/document-types.md) + + +## Custom Fields + +New, extremely powerful, flexible and easy to use feature. Before version 2.1 +custom fields were named "metadata", however, we introduced a significant +twist in the concept: instead of being assigned directly to the document, +custom fields are now assigned via document types. + +Read more about [custom fields in user manual](user/custom-fields.md) + + +## Path Templates + +You need to decide where to place the document only once. +Once decided - you never need to worry in which folder does +the document X or Y belong - it will be handled automatically. +Path templates are per document category. + +Read more about it in [Path Templates](user/path-templates.md) + + +## S3 Storage Backend + + +You can configure S3 compatible storage for you documents. It means that you +may configure {{ extra.project }} to store documents on S3 storage. + +Feature is there, but document is not :slightly_frowning_face:. +Documentation is on this topic is being written :hourglass: ... \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index dd73bfe..9840d05 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,6 +1,7 @@ -site_name: Papermerge 3 +site_name: Papermerge DMS site_url: https://docs.papermerge.io nav: + - whatsnew.md - Setup: - setup/overview.md - setup/requirements.md