From 3425d01853b139e00474b31b8de35d3a17111780 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 5 Apr 2023 16:22:28 -0700 Subject: [PATCH 1/5] Create feature-requests.yml --- .github/DISCUSSION_TEMPLATE/feature-requests.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/DISCUSSION_TEMPLATE/feature-requests.yml 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. From d872423a7649540d5d23311bc8765b993329e1cc Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 10 Apr 2023 14:04:30 -0700 Subject: [PATCH 2/5] Add info re tesseract language codes Closes #3065 --- docs/configuration.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 046904eaf..aca9961e2 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -1088,10 +1088,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. From e576f1b0c4e66e3a7d0cc215c377f71e1bcbef10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denilson=20S=C3=A1=20Maia?= Date: Thu, 13 Apr 2023 22:03:40 +0200 Subject: [PATCH 3/5] Whitespace changes, making sure the example is correcly aligned MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If desired, we could also replace spaces with [Box-drawing characters](https://en.wikipedia.org/wiki/Box-drawing_character), like this: ``` 🗁 Documents folder ├─🗁 2019/ # By Year │ └─🗁 My bank/ │ ├─🗎 Statement January.pdf │ └─🗎 Statement February.pdf └─🗁 Insurances/ # Insurances ├─🗁 Healthcare 123/ │ ├─🗎 2022-01-01 Statement January.pdf │ ├─🗎 2022-02-02 Letter.pdf │ └─🗎 2022-02-03 Letter.pdf └─🗁 Dental 456/ └─🗎 2021-12-01 New Conditions.pdf ``` But rendering this with proper fixed-width characters can be troublesome on some systems. --- docs/advanced_usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced_usage.md b/docs/advanced_usage.md index 0c0b14120..61f88cff9 100644 --- a/docs/advanced_usage.md +++ b/docs/advanced_usage.md @@ -400,7 +400,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 From ad746be010987dafce3d6d6ad092c463d5eae657 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 14 Apr 2023 17:50:54 -0700 Subject: [PATCH 4/5] Lock old threads --- .github/workflows/lock.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/lock.yml 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. From 6934fc6510c4925ab540f4d8dcae1a6ed2614972 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 15 Apr 2023 14:40:53 -0700 Subject: [PATCH 5/5] Correct duplicate ASN handling in docs Closes #3082 --- docs/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index aca9961e2..89ba83f49 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -986,8 +986,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.