diff --git a/.github/DISCUSSION_TEMPLATE/feature-requests.yml b/.github/DISCUSSION_TEMPLATE/feature-requests.yml new file mode 100644 index 000000000..b24abdb46 --- /dev/null +++ b/.github/DISCUSSION_TEMPLATE/feature-requests.yml @@ -0,0 +1,14 @@ +title: "[Feature Request] " +body: + - type: textarea + id: description + attributes: + label: Description + description: A clear and concise description of what you would like to see. + validations: + required: true + - type: textarea + id: other + attributes: + label: Other + description: Add any other context or information about the feature request here. diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml new file mode 100644 index 000000000..e451a150b --- /dev/null +++ b/.github/workflows/lock.yml @@ -0,0 +1,29 @@ +name: 'Lock Old Threads' + +on: + schedule: + - cron: '0 * * * *' + workflow_dispatch: + +permissions: + issues: write + pull-requests: write + +concurrency: + group: lock + +jobs: + action: + runs-on: ubuntu-latest + steps: + - uses: dessant/lock-threads@v4 + with: + issue-inactive-days: '30' + issue-comment: > + This issue has been automatically locked since there + has not been any recent activity after it was closed. + Please open a new discussion or issue for related concerns. + pr-comment: > + This pull request has been automatically locked since there + has not been any recent activity after it was closed. + Please open a new discussion or issue for related concerns. diff --git a/docs/advanced_usage.md b/docs/advanced_usage.md index 324ea3930..005bdc425 100644 --- a/docs/advanced_usage.md +++ b/docs/advanced_usage.md @@ -403,7 +403,7 @@ structure as in the previous example above. Statement January.pdf Statement February.pdf - Insurances/ # Insurances +Insurances/ # Insurances Healthcare 123/ 2022-01-01 Statement January.pdf 2022-02-02 Letter.pdf diff --git a/docs/configuration.md b/docs/configuration.md index 2770bc84d..fd3d55bd5 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -1041,8 +1041,8 @@ barcode is detected. pages will be split up before reading the ASN. If no ASN barcodes are detected in the uploaded file, no ASN will - be set. If a barcode with an already existing ASN is detected, no ASN - will be set either and a warning will be logged. + be set. If a barcode with an existing ASN is detected, the + document will not be consumed and an error logged. Defaults to false. @@ -1143,10 +1143,13 @@ actual group ID on the host system, which you can get by executing : Additional OCR languages to install. By default, paperless comes with English, German, Italian, Spanish and French. If your language is not in this list, install additional languages with this -configuration option ([find the right LangCodes](https://tesseract-ocr.github.io/tessdoc/Data-Files-in-different-versions.html)): +configuration option. You will need to [find the right LangCodes](https://tesseract-ocr.github.io/tessdoc/Data-Files-in-different-versions.html) +but note that (tesseract-ocr-\* package names)[https://packages.debian.org/bullseye/graphics/] +do not always correspond with the language codes e.g. "chi_tra" should be +specified as "chi-tra". ``` bash - PAPERLESS_OCR_LANGUAGES=tur ces + PAPERLESS_OCR_LANGUAGES=tur ces chi-tra ``` Make sure it's a space separated list when using several values.