mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Merge branch 'dev'
This commit is contained in:
commit
ab34ea724d
@ -665,11 +665,13 @@ completely.
|
|||||||
|
|
||||||
Specifying 1 here will only use the first page.
|
Specifying 1 here will only use the first page.
|
||||||
|
|
||||||
|
The value must be greater than or equal to 1 to be used.
|
||||||
|
|
||||||
When combined with `PAPERLESS_OCR_MODE=redo` or
|
When combined with `PAPERLESS_OCR_MODE=redo` or
|
||||||
`PAPERLESS_OCR_MODE=force`, paperless will not modify any text it
|
`PAPERLESS_OCR_MODE=force`, paperless will not modify any text it
|
||||||
finds on excluded pages and copy it verbatim.
|
finds on excluded pages and copy it verbatim.
|
||||||
|
|
||||||
Defaults to 0, which disables this feature and always uses all
|
Defaults to unset, which disables this feature and always uses all
|
||||||
pages.
|
pages.
|
||||||
|
|
||||||
#### [`PAPERLESS_OCR_IMAGE_DPI=<num>`](#PAPERLESS_OCR_IMAGE_DPI) {#PAPERLESS_OCR_IMAGE_DPI}
|
#### [`PAPERLESS_OCR_IMAGE_DPI=<num>`](#PAPERLESS_OCR_IMAGE_DPI) {#PAPERLESS_OCR_IMAGE_DPI}
|
||||||
@ -683,7 +685,7 @@ fails, it uses this value as a fallback.
|
|||||||
|
|
||||||
Set this to the DPI your scanner produces images at.
|
Set this to the DPI your scanner produces images at.
|
||||||
|
|
||||||
Default is none, which will automatically calculate image DPI so
|
Defaults to unset, which will automatically calculate image DPI so
|
||||||
that the produced PDF documents are A4 sized.
|
that the produced PDF documents are A4 sized.
|
||||||
|
|
||||||
#### [`PAPERLESS_OCR_MAX_IMAGE_PIXELS=<num>`](#PAPERLESS_OCR_MAX_IMAGE_PIXELS) {#PAPERLESS_OCR_MAX_IMAGE_PIXELS}
|
#### [`PAPERLESS_OCR_MAX_IMAGE_PIXELS=<num>`](#PAPERLESS_OCR_MAX_IMAGE_PIXELS) {#PAPERLESS_OCR_MAX_IMAGE_PIXELS}
|
||||||
|
@ -179,9 +179,9 @@ export class WorkflowEditDialogComponent
|
|||||||
filter_filename: new FormControl(trigger.filter_filename),
|
filter_filename: new FormControl(trigger.filter_filename),
|
||||||
filter_path: new FormControl(trigger.filter_path),
|
filter_path: new FormControl(trigger.filter_path),
|
||||||
filter_mailrule: new FormControl(trigger.filter_mailrule),
|
filter_mailrule: new FormControl(trigger.filter_mailrule),
|
||||||
matching_algorithm: new FormControl(MATCH_NONE),
|
matching_algorithm: new FormControl(trigger.matching_algorithm),
|
||||||
match: new FormControl(''),
|
match: new FormControl(trigger.match),
|
||||||
is_insensitive: new FormControl(true),
|
is_insensitive: new FormControl(trigger.is_insensitive),
|
||||||
filter_has_tags: new FormControl(trigger.filter_has_tags),
|
filter_has_tags: new FormControl(trigger.filter_has_tags),
|
||||||
filter_has_correspondent: new FormControl(
|
filter_has_correspondent: new FormControl(
|
||||||
trigger.filter_has_correspondent
|
trigger.filter_has_correspondent
|
||||||
@ -242,6 +242,9 @@ export class WorkflowEditDialogComponent
|
|||||||
filter_has_tags: [],
|
filter_has_tags: [],
|
||||||
filter_has_correspondent: null,
|
filter_has_correspondent: null,
|
||||||
filter_has_document_type: null,
|
filter_has_document_type: null,
|
||||||
|
matching_algorithm: MATCH_NONE,
|
||||||
|
match: null,
|
||||||
|
is_insensitive: true,
|
||||||
})
|
})
|
||||||
|
|
||||||
this.updateTriggerActionFields()
|
this.updateTriggerActionFields()
|
||||||
|
@ -5,7 +5,7 @@ export const environment = {
|
|||||||
apiBaseUrl: document.baseURI + 'api/',
|
apiBaseUrl: document.baseURI + 'api/',
|
||||||
apiVersion: '4',
|
apiVersion: '4',
|
||||||
appTitle: 'Paperless-ngx',
|
appTitle: 'Paperless-ngx',
|
||||||
version: '2.3.0',
|
version: '2.3.0-dev',
|
||||||
webSocketHost: window.location.host,
|
webSocketHost: window.location.host,
|
||||||
webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
|
webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
|
||||||
webSocketBaseUrl: base_url.pathname + 'ws/',
|
webSocketBaseUrl: base_url.pathname + 'ws/',
|
||||||
|
@ -238,7 +238,7 @@ class RasterisedDocumentParser(DocumentParser):
|
|||||||
ocrmypdf_args["rotate_pages"] = True
|
ocrmypdf_args["rotate_pages"] = True
|
||||||
ocrmypdf_args["rotate_pages_threshold"] = self.settings.rotate_threshold
|
ocrmypdf_args["rotate_pages_threshold"] = self.settings.rotate_threshold
|
||||||
|
|
||||||
if self.settings.pages is not None:
|
if self.settings.pages is not None and self.settings.pages > 0:
|
||||||
ocrmypdf_args["pages"] = f"1-{self.settings.pages}"
|
ocrmypdf_args["pages"] = f"1-{self.settings.pages}"
|
||||||
else:
|
else:
|
||||||
# sidecar is incompatible with pages
|
# sidecar is incompatible with pages
|
||||||
|
Loading…
x
Reference in New Issue
Block a user