Commit Graph

587 Commits

Author SHA1 Message Date
kolaente 2b9b9216dc
feat(task): use focus-visible for task focus styles
(cherry picked from commit a7bd9dad24)
2024-09-20 14:27:37 +02:00
kolaente f732082708
fix(a11y): hide unfocusable buttons
(cherry picked from commit 10e245f6d0)
2024-09-20 14:27:35 +02:00
kolaente f56df8aa34
fix(task): open focused task when pressing enter
(cherry picked from commit 010dd1ea22)
2024-09-20 14:27:34 +02:00
kolaente e290d79c15
feat(navigation): use focus-visible for nav items
(cherry picked from commit 65a2814b2a)
2024-09-20 14:27:32 +02:00
kolaente 51f26d14b9
fix(filters): correctly transform and populate saved filter when creating and editing
This fixes a bug where the checkbox "include nulls" during creation was not checked but would be saved as such.

(cherry picked from commit 4dd9d5de67)
2024-09-20 14:27:30 +02:00
kolaente 320fc75c27
fix(task): mark related task as done from the task detail view
Resolves https://github.com/go-vikunja/vikunja/issues/326

(cherry picked from commit ec902b051b)
2024-09-20 14:27:28 +02:00
kolaente 4d2a567c46
fix(modal): make scrolling on iOS Safari work
This fixes a bug where the full-screen modal would not work on iOS Safari (and only there). It's unclear why this is happening due to a single overflow: visible statement though.

Resolves https://github.com/go-vikunja/vikunja/issues/325

(cherry picked from commit 16d7386975)
2024-09-20 14:27:12 +02:00
kolaente 21cc3722a1
fix(projects): description not visible on mobile
(cherry picked from commit 6d9bda8cc1)
2024-09-20 14:27:11 +02:00
kolaente 6a68736ca5
fix(task): dragging and dropping on mobile
This change fixes a regression introduced in 1cbb93ea9b.
In that change, the whole task area was made clickable using mouse events directly. Unfortunately, this also prevented the parent component of the task component to recieve them, essentially never getting notified about the mouse movement and thus never dragging the task. I don't know why this is only a problem on Safari, but it might be related to https://github.com/SortableJS/Sortable/issues/1571#issuecomment-535684451

Resolves https://community.vikunja.io/t/task-re-ordering-is-not-working-in-safari/1916
Resolves https://kolaente.dev/vikunja/vikunja/issues/2092
Resolves https://github.com/go-vikunja/vikunja/issues/304

(cherry picked from commit abf92e29fa)
2024-09-20 14:27:09 +02:00
kolaente 9e5d6bad8d
chore(tasks): move drag options to direct attributes instead of v-bind
(cherry picked from commit f4d628550f)
2024-09-20 14:27:08 +02:00
kolaente 1e7d9c982d
chore: remove console.log
(cherry picked from commit a1105434bf)
2024-09-20 14:27:03 +02:00
kolaente 20c52a8325
fix(editor): restore the current value, not the one from a previous task
Resolves https://community.vikunja.io/t/task-description-is-overwritten-when-pressing-esc-key/2813

(cherry picked from commit acc7c9f8f5)
2024-09-20 14:27:02 +02:00
kolaente a46009dfc9
fix(task): align task title on mobile popup
(cherry picked from commit cc64ca6406)
2024-09-20 14:27:00 +02:00
kolaente 983c02964c
fix(modal): do not prevent scrolling on mobile
Maybe related to https://github.com/go-vikunja/vikunja/issues/325

(cherry picked from commit 6a5342bd49)
2024-09-20 14:26:44 +02:00
kolaente 53d62d35f4
fix: lint
(cherry picked from commit bf5cafc03f)
2024-09-20 14:26:40 +02:00
kolaente a266fbf2b9
fix(filter): do not replace labels keyword when the value is 'label'
Resolves https://community.vikunja.io/t/filtering-by-label-ux-issues/2393/16

(cherry picked from commit f4a7326b68)
2024-09-20 14:26:39 +02:00
kolaente 971f328256
fix(kanban): correctly paginate filtered kanban buckets
Resolves https://github.com/go-vikunja/vikunja/issues/314

(cherry picked from commit 1451f6e46f)
2024-09-20 14:26:39 +02:00
Frederick [Bot] 89d643b9cf
chore(i18n): update translations via Crowdin
(cherry picked from commit 427eb2a618)
2024-09-20 14:26:38 +02:00
kolaente a1c4fbf936
fix(view): correctly get paginated task results
(cherry picked from commit e4b541e653)
2024-09-20 14:26:36 +02:00
kolaente 6b850c56f7
fix(view): correctly resolve label for filtered views or buckets
(cherry picked from commit 5a7c3927f3)
2024-09-20 14:26:33 +02:00
kolaente 614f70db36
fix(filters): do not replace filter or project values when the id value resolves to undefined
This change fixes a bug where the label title in the query string would be replaced to undefined, resulting in an invalid filter. The underlying problem was the resolved filter query string got re-parsed and the id value of the labels were resolved to undefined (and rendered as that string) in the process.

Resolves https://community.vikunja.io/t/filtering-by-label-ux-issues/2393/14

(cherry picked from commit f425d98b4d)
2024-09-20 14:26:32 +02:00
kolaente b297cb5398
fix(task): multiple overlapping defer due date popups
Resolves https://github.com/go-vikunja/vikunja/issues/131

(cherry picked from commit 4c55016c1a)
2024-09-20 14:26:31 +02:00
kolaente 8e32d099c4
fix(kanban): do not mark first bucked as done bucket in filter bucket mode
Resolves https://github.com/go-vikunja/vikunja/issues/313

(cherry picked from commit 1a8f12ac13)
2024-09-20 14:26:31 +02:00
kolaente 19a1dc9daf
fix(table): make sorting for two-word properties work
Resolves https://community.vikunja.io/t/various-sorting-filtering-issues/2781/8

(cherry picked from commit 7b873ec31c)
2024-09-20 14:26:29 +02:00
Frederick [Bot] 44f5e42c0b
chore(i18n): update translations via Crowdin
(cherry picked from commit 14710d0bba)
2024-09-20 14:26:27 +02:00
kolaente 2fc9504285
fix(kanban): make kanban full width on mobile
Related to https://github.com/go-vikunja/vikunja/issues/309

(cherry picked from commit 945f25b818)
2024-09-20 14:26:26 +02:00
kolaente 2b15bb5154
fix(modal): make sure modal and its content scrolls properly on mobile
Related to https://github.com/go-vikunja/vikunja/issues/309

(cherry picked from commit f53b93d98a)
2024-09-20 14:26:26 +02:00
kolaente f1451abebe
fix(home): explicitly use filter for tasks on home page when one is set
Resolves https://github.com/go-vikunja/vikunja/issues/289
Resolves https://community.vikunja.io/t/various-sorting-filtering-issues/2781/5

(cherry picked from commit 97e030a1fc)
2024-09-20 14:26:24 +02:00
kolaente 42b33d6553
fix(filters): immediately propagate changes
Resolves https://community.vikunja.io/t/filtering-startdate-now-is-invalid/2613/6

(cherry picked from commit 6bfe71b30e)
2024-09-20 14:26:21 +02:00
kolaente 4a40bdfe89
fix(kanban): make task creation loading spinner actually visible
(cherry picked from commit 7e38a9f442)
2024-09-20 14:26:13 +02:00
kolaente 02ab944020
fix(labels): remove input interactivity when label edit is disabled
(cherry picked from commit bdccd633fe)
2024-09-20 14:26:10 +02:00
kolaente 1df4a4ea2e
chore: fix comment
(cherry picked from commit 1f3eb8f2a3)
2024-09-20 14:26:08 +02:00
kolaente 02b8ea40af
fix(multiselect): make selectPlaceholder optional
(cherry picked from commit 3b8ccbad4f)
2024-09-20 14:26:05 +02:00
kolaente b5eaa51560
fix(task): make print styles work when printing task detail view from kanban
Resolves https://community.vikunja.io/t/feature-request-export-a-task-as-pdf/2735/6

(cherry picked from commit cc1b4bbd1b)
2024-09-20 14:26:03 +02:00
Frederick [Bot] dfda2e5500
chore(i18n): update translations via Crowdin
(cherry picked from commit e1ea84fcd4)
2024-09-20 14:25:58 +02:00
kolaente 52fb43a6f7
fix(project): show description in title attribute without html
Resolves https://community.vikunja.io/t/feedback-to-vikunja-0-24-0/2557/6

(cherry picked from commit 4aeb228c3a)
2024-09-20 14:25:53 +02:00
kolaente 8f5273600a
fix(projects): do not hide 6th project on project overview
(cherry picked from commit b52d6dbf59)
2024-09-20 14:25:51 +02:00
kolaente 40105ee4ce
chore: remove console.log
(cherry picked from commit 76f7797e56)
2024-09-20 14:25:50 +02:00
kolaente 5bfd99dd77
fix(task): specify task index when creating multiple tasks at once
This change allows to specify the task index when creating a task, which will then be checked to avoid duplicates and used. This allows us to calculate the indexes for all tasks beforehand when creating them at once using quick add magic.
The method is not bulletproof, but already fixes a problem where multiple tasks would have the same index when created that way.

Resolves https://community.vikunja.io/t/add-multiple-tasks-at-once/333/16

(cherry picked from commit 55dd7d2981)
2024-09-20 14:25:48 +02:00
kolaente ac87035742
fix(auth): restrict max password length to 72 bytes
Bcrypt allows a maximum of 72 bytes. This is part of the algorithm and not something we could change in Vikunja. The solution here was to restrict the password during registration to a max length of 72 bytes. In the future, this should be changed to hash passwords with sha512 or similar before hashing them with bcrypt. Because they should also be salted in that case and the added complexity during the migration phase, this was not implemented yet.
The change in this commit only improves the error handling to return an input error instead of a server error when the user enters a password > 72 bytes.

Resolves https://vikunja.sentry.io/share/issue/e8e0b64612d84504942feee002ac498a/

(cherry picked from commit 44a43b9f86)
2024-09-20 14:25:46 +02:00
kolaente 10edeafa46
fix(password): validate password before sending request to api
(cherry picked from commit eb95caf757)
2024-09-20 14:25:42 +02:00
kolaente e70f5bcce3
chore(attachments): refactor building image preview
(cherry picked from commit 02c1de55c4)
2024-09-20 14:24:53 +02:00
kolaente 761d278b9a
fix(kanban): save updated position to store
This fixes a bug where the position of a task would not be calculated correctly when the task was moved next to another recently moved task. The problem was caused by the calculation of the new position referring to the old value of the position attribute, because it was not updated in the local store.

Resolves https://community.vikunja.io/t/kanban-cards-in-wrong-order/2731/6

(cherry picked from commit 22e594e253)
2024-09-20 14:22:54 +02:00
Frederick [Bot] 1c9590075a
chore(i18n): update translations via Crowdin
(cherry picked from commit 7bd84a845c)
2024-09-20 14:22:31 +02:00
kolaente 800f4545c1
fix(service worker): use correct workbox version
Resolves https://github.com/go-vikunja/vikunja/issues/322

(cherry picked from commit 165ee9e7f3)
2024-09-20 14:22:29 +02:00
Frederick [Bot] 01c4f1fc0e
chore(i18n): update translations via Crowdin
(cherry picked from commit 14c862d284)
2024-09-20 14:22:21 +02:00
Frederick [Bot] 499f3f000c
chore(i18n): update translations via Crowdin
(cherry picked from commit c38aaeb224)
2024-09-20 14:21:02 +02:00
Frederick [Bot] 1059b00298
chore(i18n): update translations via Crowdin
(cherry picked from commit 1b9139b9b0)
2024-09-20 14:21:00 +02:00
kolaente 72db97203a
fix(view): do not crash when saving a view
Resolves https://github.com/go-vikunja/vikunja/issues/312

(cherry picked from commit 435cb2e7f7)
2024-09-20 14:20:54 +02:00
Frederick [Bot] 27c14b6903
chore(i18n): update translations via Crowdin
(cherry picked from commit 9ed33f5c08)
2024-09-20 14:20:53 +02:00