1
0
Commit Graph

10281 Commits

Author SHA1 Message Date
15cde08db6 fix(typesense): add new tasks to typesense properly
Maybe related to https://github.com/go-vikunja/vikunja/issues/317

(cherry picked from commit 9e39ef939786d175a2036166de4c2c8be550b295)
2024-09-20 14:27:46 +02:00
96835f6a28 fix(deps): update module github.com/typesense/typesense-go to v2
(cherry picked from commit c54181eeda593ab0c06e4358802d442338ffa5bf)
2024-09-20 14:27:44 +02:00
b1c4f0c216 fix(typesense): only fail silently when a project was not found during indexing
(cherry picked from commit b3bf92b7ce15576f41f4109c02dd2bc005a58575)
2024-09-20 14:27:42 +02:00
d2fbd468e6 fix(deps): update tiptap to v2.7.2
(cherry picked from commit 05dd05216d39692a025b4d61451bb9c0ae4a8707)
2024-09-20 14:27:40 +02:00
a751178c8b fix(views): add migration for filtered kanban buckets
(cherry picked from commit cd0ab54d572a5187ced45ee15da149be36c3553c)
2024-09-20 14:27:38 +02:00
2b9b9216dc feat(task): use focus-visible for task focus styles
(cherry picked from commit a7bd9dad24edfa8eabf1ba6617361d6ffeb2256f)
2024-09-20 14:27:37 +02:00
f732082708 fix(a11y): hide unfocusable buttons
(cherry picked from commit 10e245f6d0b28051c3750d16db61c31ff6f0fdef)
2024-09-20 14:27:35 +02:00
f56df8aa34 fix(task): open focused task when pressing enter
(cherry picked from commit 010dd1ea22094a8fe6cce46ab9d10292fc87853e)
2024-09-20 14:27:34 +02:00
e290d79c15 feat(navigation): use focus-visible for nav items
(cherry picked from commit 65a2814b2a43384dd6f3d412c8ab8094725d3255)
2024-09-20 14:27:32 +02:00
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 4dd9d5de6777967203533b8f88756c3cab4d2bd5)
2024-09-20 14:27:30 +02:00
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 ec902b051bcbb2c1382feb7c5ca0155d9d5fc4b7)
2024-09-20 14:27:28 +02:00
4857bfbbdb chore: rearrange cron registers
(cherry picked from commit 4b2b8e3b83caad72bd9a1574f9967bed8e06d3d7)
2024-09-20 14:27:28 +02:00
62c238e4bc fix(filter): make sure tasks are in a correct bucket and position when they are part of a date filter
Whenever a task is part of a date filter, it might fall in or out of a filter bucket without anything changing, other than the current time. For example, a filter condition like due_date > now may include different tasks depending on the current time.
For these kinds of tasks to properly show up in the kanban view of a filter, there has to be an entry in the task_buckets table. These entries only got updated when either a task was updated or the filter itself was updated. To account for th changing of time, we also need to check periodically if tasks are now part or not anymore part of that filter.
This change adds a cron task to do precisely that.
We'll have to see if this works resource-wise, but the cron is not the only one doing a bunch of sql queries so it might be fine after all.

Resolves https://community.vikunja.io/t/tasks-in-saved-filter-appear-in-list-view-but-are-not-visible-in-kanban-view/2800

(cherry picked from commit bc52da4029170bfd10cddea28cf5c6983969cb42)
2024-09-20 14:27:26 +02:00
d27b62db6e fix(task): cleanup old task positions and task buckets when adding an updated or created task to filter
(cherry picked from commit 2123da49a38e8683a2a0272b89617634d45f7f45)
2024-09-20 14:27:23 +02:00
a21036340e fix(task): add task to filter view after it was updated
Maybe resolves https://community.vikunja.io/t/tasks-in-saved-filter-appear-in-list-view-but-are-not-visible-in-kanban-view/2800

(cherry picked from commit c53a76139616b9cfbdc748a5e6caf23585517e42)
2024-09-20 14:27:21 +02:00
3398dee481 fix(labels): trigger task updated for bulk label task update
(cherry picked from commit c84b50b3ee793091f5501fa65129c168e728565e)
2024-09-20 14:27:19 +02:00
063aa7afec fix: test selector
(cherry picked from commit c5b82fc591c9056758eafeeae7f23c9652e8fb7f)
2024-09-20 14:27:17 +02:00
df3f5e73ed fix(deps): update dependency vue to v3.5.6
(cherry picked from commit 1f00180af6cd075eabcbb46f754a38cc0cc1ceca)
2024-09-20 14:27:16 +02:00
c57636182a fix(deps): update dependency tailwindcss to v3.4.12
(cherry picked from commit 33e851f54394675a21b716807fb0786e49021112)
2024-09-20 14:27:14 +02:00
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 16d73869752cea8ffcc73ee6be3021994cd6b6c1)
2024-09-20 14:27:12 +02:00
21cc3722a1 fix(projects): description not visible on mobile
(cherry picked from commit 6d9bda8cc1a44bcd3446df2e3a414802f96dc476)
2024-09-20 14:27:11 +02:00
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 abf92e29facfa91a75fdce4ab04729010cb510f1)
2024-09-20 14:27:09 +02:00
9e5d6bad8d chore(tasks): move drag options to direct attributes instead of v-bind
(cherry picked from commit f4d628550f361fb514bdc887727ca542958520ef)
2024-09-20 14:27:08 +02:00
2b0fbe2575 chore(devenv): do not install cypress on darwin
(cherry picked from commit 1d352fcbf300f3994b27207f2a0ea0385205b01d)
2024-09-20 14:27:06 +02:00
1e7d9c982d chore: remove console.log
(cherry picked from commit a1105434bff981e721640f31bc7f7cf3d1f34859)
2024-09-20 14:27:03 +02:00
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 acc7c9f8f5442e5008bfd86b1615a72f6f763ee8)
2024-09-20 14:27:02 +02:00
a46009dfc9 fix(task): align task title on mobile popup
(cherry picked from commit cc64ca640635ad888670cb48bba390d2a8a07d8d)
2024-09-20 14:27:00 +02:00
6ab12b9dd1 chore: add go and direnv to recommended vscode extensions
(cherry picked from commit 89f78cd36970fb38df4e6e6ebffcc62d7c63968a)
2024-09-20 14:26:59 +02:00
aeb404f313 fix(deps): update tiptap to v2.7.1
(cherry picked from commit 14c3b13823e500babd1d4fb5fc6381ff153b8ae9)
2024-09-20 14:26:57 +02:00
9c5df7d389 chore(deps): update dev-dependencies
(cherry picked from commit c2a7438814729172ad6af7f4b01023c7a3f613c7)
2024-09-20 14:26:56 +02:00
ffd36261cb fix(deps): update tiptap to v2.7.0
(cherry picked from commit 8fe37fd900fa17b877f35b610f9fba0f80da6553)
2024-09-20 14:26:54 +02:00
8812af2d77 fix(deps): update module github.com/prometheus/client_golang to v1.20.4
(cherry picked from commit 88b4ab17684e44423d08cae12cffe3b9a7722e9e)
2024-09-20 14:26:52 +02:00
93f7dd611a fix: reset id before creating
(cherry picked from commit c252c8f0cd1c09a74b564e67a855cca4cd436585)
2024-09-20 14:26:51 +02:00
0e683ae7bf fix(deps): update vueuse to v11.1.0
(cherry picked from commit 410ff28b71897cd2fafdabdf437ff7fc1507f23e)
2024-09-20 14:26:49 +02:00
deef8da370 chore(deps): update dev-dependencies
(cherry picked from commit d98dd7ecbb605c88abfd9fa81164756e1d8a2c96)
2024-09-20 14:26:47 +02:00
a0988daeaf fix(deps): update dependency date-fns to v4
(cherry picked from commit fc73085876199b1f3cde46f18e36484e3e9d05c9)
2024-09-20 14:26:46 +02:00
6225b24da8 chore(deps): update dev-dependencies
(cherry picked from commit c71f7334b4cb70d40f2e08a76ba9e66120a0d559)
2024-09-20 14:26:44 +02:00
983c02964c fix(modal): do not prevent scrolling on mobile
Maybe related to https://github.com/go-vikunja/vikunja/issues/325

(cherry picked from commit 6a5342bd49b53903e19ac4297312963c7dcdad32)
2024-09-20 14:26:44 +02:00
7bc93757c7 fix(deps): update dependency vue-router to v4.4.5
(cherry picked from commit b4ea1bb86a55841f68d763c0e3078444bc24b224)
2024-09-20 14:26:42 +02:00
b4c5df1ef8 fix(deps): update dependency vue to v3.5.5
(cherry picked from commit 378d0ae9bb1db0bacf72e10a21a763093a465934)
2024-09-20 14:26:41 +02:00
fd7d83bdaf fix(user): do not create user with existing id
Resolves https://vikunja.sentry.io/share/issue/6f1e37d4b8b248188e20650234a45cde/

(cherry picked from commit 6f27e1401ae00710b1ec5df3cad3fcd6193d455b)
2024-09-20 14:26:40 +02:00
53d62d35f4 fix: lint
(cherry picked from commit bf5cafc03f661bc534f47adfff4b92f06ca2ab57)
2024-09-20 14:26:40 +02:00
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 f4a7326b684cbfbad20a496ddc1c79c59c0672f0)
2024-09-20 14:26:39 +02:00
971f328256 fix(kanban): correctly paginate filtered kanban buckets
Resolves https://github.com/go-vikunja/vikunja/issues/314

(cherry picked from commit 1451f6e46f03c30384834ff99e0cbe7f15958536)
2024-09-20 14:26:39 +02:00
89d643b9cf chore(i18n): update translations via Crowdin
(cherry picked from commit 427eb2a618925e033ca69b6a99946acf94ec10f2)
2024-09-20 14:26:38 +02:00
a1c4fbf936 fix(view): correctly get paginated task results
(cherry picked from commit e4b541e6535885bf3e7b1b60f0f75f56aa43e3e4)
2024-09-20 14:26:36 +02:00
1049b27d37 fix(view): correctly resolve bucket filter when paginating
(cherry picked from commit 45ff5907e69b24f00926841790d0f4f3d11e530a)
2024-09-20 14:26:34 +02:00
6b850c56f7 fix(view): correctly resolve label for filtered views or buckets
(cherry picked from commit 5a7c3927f39fc6b677fd5a76452e1b658d5cf84f)
2024-09-20 14:26:33 +02:00
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 f425d98b4d7593445ab2fda74f827ad8b5abe759)
2024-09-20 14:26:32 +02:00
b297cb5398 fix(task): multiple overlapping defer due date popups
Resolves https://github.com/go-vikunja/vikunja/issues/131

(cherry picked from commit 4c55016c1a450f75f0a8c5acd8ed01517ed08a1d)
2024-09-20 14:26:31 +02:00