From 2bcb37f3e9a645b711df512ef56da09f9b96d486 Mon Sep 17 00:00:00 2001 From: kevin <68426071+hf-krechan@users.noreply.github.com> Date: Sun, 19 Jan 2025 15:53:51 +0100 Subject: [PATCH 01/14] Documentation: Add ISO number example (#8809) --- 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 75bbe05a9..76e33b3f1 100644 --- a/docs/advanced_usage.md +++ b/docs/advanced_usage.md @@ -308,7 +308,7 @@ Paperless provides the following variables for use within filenames: - `{{ tag_list }}`: A comma separated list of all tags assigned to the document. - `{{ title }}`: The title of the document. -- `{{ created }}`: The full date (ISO format) the document was created. +- `{{ created }}`: The full date (ISO 8601 format, e.g. `2024-03-14`) the document was created. - `{{ created_year }}`: Year created only, formatted as the year with century. - `{{ created_year_short }}`: Year created only, formatted as the year From 258064b3390091d91b99b2d14551668b1a2aa9ad Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 19 Jan 2025 08:50:26 -0800 Subject: [PATCH 02/14] Fix: better reflect some mail account / rule permissions in UI (#8812) --- .../components/manage/mail/mail.component.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src-ui/src/app/components/manage/mail/mail.component.html b/src-ui/src/app/components/manage/mail/mail.component.html index fc786840c..16e8e88fb 100644 --- a/src-ui/src/app/components/manage/mail/mail.component.html +++ b/src-ui/src/app/components/manage/mail/mail.component.html @@ -45,7 +45,7 @@
  • -
    - + - - + +
    @@ -82,7 +82,7 @@
    -
    @@ -126,7 +126,7 @@ @for (rule of mailRules; track rule) {
  • -
    +
    {{rule.order}}
    {{(mailAccountService.getCached(rule.account) | async)?.name}}
    @@ -144,9 +144,9 @@
    - + - +
    From 0f863ab3785f16462dd0ed69416dd4e019546275 Mon Sep 17 00:00:00 2001 From: Thomas Hess Date: Sun, 19 Jan 2025 19:04:55 +0100 Subject: [PATCH 03/14] Documentation: fix error in storage paths example in advanced_usage.md (#8817) --- 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 76e33b3f1..f7b31c919 100644 --- a/docs/advanced_usage.md +++ b/docs/advanced_usage.md @@ -476,7 +476,7 @@ a document with an ASN of 355 would be placed in `somepath/asn-201-400/asn-3xx/T /{{ title }} ``` -For a PDF document, it would result in `pdfs/Title.pdf`, but for a PNG document, the path would be `pngs/Title.pdf`. +For a PDF document, it would result in `pdfs/Title.pdf`, but for a PNG document, the path would be `pngs/Title.png`. To use custom fields: From 01207a284d37cf841270c18ab9f61ac748b036f2 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 19 Jan 2025 10:37:31 -0800 Subject: [PATCH 04/14] Fix: import router module to not found component (#8821) --- src-ui/src/app/components/not-found/not-found.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src-ui/src/app/components/not-found/not-found.component.ts b/src-ui/src/app/components/not-found/not-found.component.ts index dc381d265..44cd103ec 100644 --- a/src-ui/src/app/components/not-found/not-found.component.ts +++ b/src-ui/src/app/components/not-found/not-found.component.ts @@ -1,4 +1,5 @@ import { Component } from '@angular/core' +import { RouterModule } from '@angular/router' import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons' import { LogoComponent } from '../common/logo/logo.component' @@ -6,7 +7,7 @@ import { LogoComponent } from '../common/logo/logo.component' selector: 'pngx-not-found', templateUrl: './not-found.component.html', styleUrls: ['./not-found.component.scss'], - imports: [LogoComponent, NgxBootstrapIconsModule], + imports: [LogoComponent, NgxBootstrapIconsModule, RouterModule], }) export class NotFoundComponent { constructor() {} From e1dde85c59cd9a2d3f03429d93442e0d24b9e728 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 19 Jan 2025 10:46:57 -0800 Subject: [PATCH 05/14] Fix failing test --- .../src/app/components/not-found/not-found.component.spec.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src-ui/src/app/components/not-found/not-found.component.spec.ts b/src-ui/src/app/components/not-found/not-found.component.spec.ts index 58861da44..219c6c1f9 100644 --- a/src-ui/src/app/components/not-found/not-found.component.spec.ts +++ b/src-ui/src/app/components/not-found/not-found.component.spec.ts @@ -2,7 +2,9 @@ import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { By } from '@angular/platform-browser' +import { RouterModule } from '@angular/router' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { routes } from 'src/app/app-routing.module' import { LogoComponent } from '../common/logo/logo.component' import { NotFoundComponent } from './not-found.component' @@ -16,6 +18,7 @@ describe('NotFoundComponent', () => { NgxBootstrapIconsModule.pick(allIcons), NotFoundComponent, LogoComponent, + RouterModule.forRoot(routes), ], providers: [ provideHttpClient(withInterceptorsFromDi()), From fd425aa618eeff830d79c2f67af35933ed266cf0 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Sun, 19 Jan 2025 12:52:03 -0800 Subject: [PATCH 06/14] Fix: Enforce classifier training ordering to prevent extra training (#8822) --- src/documents/classifier.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/documents/classifier.py b/src/documents/classifier.py index 4c36dc5e0..b3e71711c 100644 --- a/src/documents/classifier.py +++ b/src/documents/classifier.py @@ -170,6 +170,7 @@ class DocumentClassifier: ) .select_related("document_type", "correspondent", "storage_path") .prefetch_related("tags") + .order_by("pk") ) # No documents exit to train against @@ -199,11 +200,10 @@ class DocumentClassifier: hasher.update(y.to_bytes(4, "little", signed=True)) labels_correspondent.append(y) - tags: list[int] = sorted( - tag.pk - for tag in doc.tags.filter( - matching_algorithm=MatchingModel.MATCH_AUTO, - ) + tags: list[int] = list( + doc.tags.filter(matching_algorithm=MatchingModel.MATCH_AUTO) + .order_by("pk") + .values_list("pk", flat=True), ) for tag in tags: hasher.update(tag.to_bytes(4, "little", signed=True)) From e00dd46b223704756dcb1fe0acc418e0fec4e20e Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 19 Jan 2025 13:49:16 -0800 Subject: [PATCH 07/14] Change: allow generate auth token without a usable password (#8824) --- .../profile-edit-dialog/profile-edit-dialog.component.html | 1 - 1 file changed, 1 deletion(-) diff --git a/src-ui/src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html b/src-ui/src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html index f9d57baf3..a8627f19c 100644 --- a/src-ui/src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html +++ b/src-ui/src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -48,7 +48,6 @@ i18n-title buttonClasses=" btn-outline-secondary" iconName="arrow-repeat" - [disabled]="!hasUsablePassword" (confirm)="generateAuthToken()">
    From 475c231c6f495b7fa8aa984e2e2d9b30b6261e85 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 20 Jan 2025 07:43:39 -0800 Subject: [PATCH 08/14] Fix: fix long tag visual wrapping (#8833) --- .../src/app/components/common/input/tags/tags.component.html | 2 +- src-ui/src/app/components/common/tag/tag.component.scss | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src-ui/src/app/components/common/input/tags/tags.component.html b/src-ui/src/app/components/common/input/tags/tags.component.html index d5d5c4a7d..23c680dd0 100644 --- a/src-ui/src/app/components/common/input/tags/tags.component.html +++ b/src-ui/src/app/components/common/input/tags/tags.component.html @@ -17,7 +17,7 @@ (change)="onChange(value)"> -