mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Merge branch 'main' into dev
This commit is contained in:
commit
7bcfeab85c
14
.github/DISCUSSION_TEMPLATE/feature-requests.yml
vendored
Normal file
14
.github/DISCUSSION_TEMPLATE/feature-requests.yml
vendored
Normal file
@ -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.
|
29
.github/workflows/lock.yml
vendored
Normal file
29
.github/workflows/lock.yml
vendored
Normal file
@ -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.
|
@ -403,7 +403,7 @@ structure as in the previous example above.
|
|||||||
Statement January.pdf
|
Statement January.pdf
|
||||||
Statement February.pdf
|
Statement February.pdf
|
||||||
|
|
||||||
Insurances/ # Insurances
|
Insurances/ # Insurances
|
||||||
Healthcare 123/
|
Healthcare 123/
|
||||||
2022-01-01 Statement January.pdf
|
2022-01-01 Statement January.pdf
|
||||||
2022-02-02 Letter.pdf
|
2022-02-02 Letter.pdf
|
||||||
|
@ -1041,8 +1041,8 @@ barcode is detected.
|
|||||||
pages will be split up before reading the ASN.
|
pages will be split up before reading the ASN.
|
||||||
|
|
||||||
If no ASN barcodes are detected in the uploaded file, no ASN will
|
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
|
be set. If a barcode with an existing ASN is detected, the
|
||||||
will be set either and a warning will be logged.
|
document will not be consumed and an error logged.
|
||||||
|
|
||||||
Defaults to false.
|
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
|
: Additional OCR languages to install. By default, paperless comes
|
||||||
with English, German, Italian, Spanish and French. If your language
|
with English, German, Italian, Spanish and French. If your language
|
||||||
is not in this list, install additional languages with this
|
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
|
``` 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.
|
Make sure it's a space separated list when using several values.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user