1
0
Commit Graph

754 Commits

Author SHA1 Message Date
e7fbdc2727 fix(i18n): change casing of Ukrainian language in selector
(cherry picked from commit 66d316f0b5c74d3cebf2fd93989284ecae578670)
2024-08-12 20:16:46 +02:00
0ca43dc147 fix: remove console log
(cherry picked from commit 413798b3211ee53e0e1c70a8b616979906c70635)
2024-08-12 20:16:43 +02:00
c47ea2716c chore(i18n): update translations via Crowdin
(cherry picked from commit bf1c8c6119648184a3d55f5653f4f49618b20578)
2024-08-12 20:16:42 +02:00
cbdcc61414 chore(i18n): update translations via Crowdin
(cherry picked from commit 49fa0a846896b8caf86690be5e2b5319cce018a2)
2024-08-12 20:16:41 +02:00
194a7d4cf8 chore(i18n): update translations via Crowdin
(cherry picked from commit 784cd42a7a1d2bdb078b9cc38e6448ed161b798f)
2024-08-12 20:16:37 +02:00
9695785a0c chore(i18n): update translations via Crowdin
(cherry picked from commit 4f74be0247d9ff3e67414325c439e6f169d9d444)
2024-08-12 20:16:35 +02:00
d9f555554e fix: textarea autosize for LanguageTool
(cherry picked from commit 7ef1e0a3e564ae245efc56b0b2764d2561d2929a)
2024-08-12 20:16:32 +02:00
6e38bcf349 chore: improve error message
(cherry picked from commit bc5fd380e55252f360059d90b894ddbe60688d94)
2024-08-12 20:16:30 +02:00
fc780a90ae chore: remove lodash.debounce
(cherry picked from commit bcd306b84d189f7e0d4426121b428eec2637de78)
2024-08-12 20:16:28 +02:00
d586f691b7 feat: add missing peer dependency
(cherry picked from commit ad2870335d4fe183e08840622c480fb0251e6211)
2024-08-12 20:16:26 +02:00
9e8e43bd12 chore(i18n): update translations via Crowdin
(cherry picked from commit 917748777ff20d7d9f7e62613fbcbbf4b9050264)
2024-08-12 20:16:24 +02:00
811ccc1baa feat: improve ProjectSettingsViews
(cherry picked from commit e8be657d9775a592987b684250809eb3d170a6f1)
2024-08-12 20:16:17 +02:00
d7c5451729 feat: add tailwind with prefix (#2513)
Reviewed-on: https://kolaente.dev/vikunja/vikunja/pulls/2513
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Co-committed-by: Dominik Pschenitschni <mail@celement.de>
(cherry picked from commit bbfd5270db78f800a6940e73e36b525b4724c582)
2024-08-12 20:16:16 +02:00
96884372b4 fix(projects): trigger only single mutation
Previously these store methods created multiple edits on deep objects in the store or edited a deep nested object directly.

This is bad because:
- multiple edits lead to multiple triggers of all the watchers on the project.
- in theory we should listen deep to a project if we use some deep reactive value of a project, if we want deep updates. Because this is easy to forget, it's better to update the project directly. For this the method `setProject` already existed in the store. This is no real overhead because Vue is smart enough to only trigger listeners that use data of the modified state.

By modifying only a copy of the view and submitting the modified result __once__ we can save us a lot of headache.

PS: I'm not sure if there were any visible problems, because Vue is really fast and the reactivity system works quite well. Regardless of this we should try not to modify state unnecessarily.
(cherry picked from commit 1e632397d29e9d45609b9271e00111c0a6cb2c57)
2024-08-12 20:16:15 +02:00
dddba4d64a feat: improve priority visibility
(cherry picked from commit d35454c099f1f4aceb513634b7c531272fa8d550)
2024-08-12 20:16:13 +02:00
a0e3efe2d1 feat: improve label store
(cherry picked from commit 2a6ba7e7f0162bb050575908e7ca80f4b0292398)
2024-08-12 20:16:12 +02:00
d707e1576a feat: improve projects store
(cherry picked from commit 1e523a1a39810ffd578f15fbefe034c70ed5a066)
2024-08-12 20:16:11 +02:00
3aaf363413 fix: emit for DatepickerWithValues
(cherry picked from commit fb91e73a3c9d0324b1c9fd6559a47190de5e8b58)
2024-08-12 20:16:08 +02:00
28fff10fec chore(i18n): update translations via Crowdin
(cherry picked from commit ebd6139c1fd62aad1fe55bc9ae096e650ef92837)
2024-08-12 20:16:07 +02:00
8729c24e1d feat: use withDefaults for Reminders
(cherry picked from commit 6990be705c6d47047147dea2930196246f1e2885)
2024-08-12 20:16:01 +02:00
a25834b089 fix(filters): immediately emit filter query when editing saved filter
Resolves https://community.vikunja.io/t/filtering-unexpected-character-relative-dates/2544/12
2024-07-18 16:32:09 +02:00
526bd1f170 fix(filters): reload tasks silently when marking one done in the list
This fixes a UI issue where if a user had a filter set and marked the task done, it would not disappear, even though the filter does not match the done task anymore.
2024-07-18 15:51:03 +02:00
03381f47bf fix(filters): show actual error message from api when the filter query is invalid 2024-07-18 15:35:33 +02:00
ec8f962615 fix(deps): update dependency dayjs to v1.11.12 2024-07-18 13:32:45 +00:00
dd8be14fdb fix(filters): make sure filters are replaced case-insensitively before filtering on the server
Resolves https://community.vikunja.io/t/filtering-startdate-now-is-invalid/2613
2024-07-18 15:21:37 +02:00
12474e5be6 fix(kanban): make sure tasks which changed their done status are moved around in buckets
This fixes a bug where tasks which had their done status changed were not moved in the correct bucket. This affected both frontend and api. The move of the task between buckets is now correctly done in the api and frontend - with a bit of duplicated logic between the two. This could be optimized further in the future.

Resolves https://kolaente.dev/vikunja/vikunja/issues/2610
2024-07-18 12:39:29 +02:00
f98a336920 chore(i18n): update translations via Crowdin 2024-07-18 00:03:00 +00:00
918a05cfda fix(deps): update tiptap to v2.5.4 2024-07-17 22:15:14 +00:00
84e8478e94 chore(deps): update pnpm to v9.5.0 2024-07-17 22:10:27 +00:00
fd6692ea1a feat: remove props destructuring from FilterInput 2024-07-17 23:00:47 +02:00
a4e98a33c5 fix(deps): update font awesome to v6.6.0 2024-07-17 14:11:53 +00:00
acf9f836a7 fix(settings): overflow of select on mobile 2024-07-17 14:46:17 +02:00
7c54d1accf fix(api tokens): show error message when the user tries to create an api token without at least one permission selected 2024-07-17 14:42:47 +02:00
891db0216b fix(deps): update dependency vue to v3.4.32 2024-07-17 12:19:59 +00:00
f1d9e4f25c fix(quick add magic): create the task even when it only contains quick add magic keywords
Resolves https://github.com/go-vikunja/vikunja/issues/282
2024-07-17 14:16:21 +02:00
82ee9f18eb fix(kanban): do not allow to create new tasks in saved filter 2024-07-17 14:00:47 +02:00
ed5feee33a fix(kanban): move task to done bucket when it was marked done from the task detail view 2024-07-17 13:56:43 +02:00
3566b889be fix(task): use backdropView prop 2024-07-17 13:45:31 +02:00
db81701d38 fix: scss deprecation warning 2024-07-17 13:25:18 +02:00
cb706416c6 feat: use withDefaults for DatepickerWithValues 2024-07-17 11:06:57 +00:00
f1481d702c feat: withDefaults for EditAssignees 2024-07-17 10:33:28 +00:00
fe8e0ef78b fix(kanban): use correct text color for deletion button 2024-07-17 10:09:36 +02:00
ee20e6175a fix(deps): update dependency ufo to v1.5.4 2024-07-17 07:29:33 +00:00
c8585d1a69 feat: use withDefaults for RepeatAfter 2024-07-17 06:46:47 +00:00
3be685ad08 chore(deps): update dev-dependencies 2024-07-17 06:15:23 +00:00
aaa2abced4 feat: add withDefaults and emit types to PrioritySelect 2024-07-17 02:33:35 +00:00
ddc18aa177 feat: remove props destructuring from KanbanCard 2024-07-16 23:28:15 +00:00
07130bdc3a feat: remove props destructuring from Attachments 2024-07-16 23:10:57 +00:00
2f92e407cc feat: remove props destructuring from ViewEditForm 2024-07-16 22:59:25 +00:00
6e72606d74 feat: use withDefaults for EditLabels 2024-07-16 22:09:37 +00:00