574 Commits

Author SHA1 Message Date
Frederick [Bot]
427eb2a618 chore(i18n): update translations via Crowdin
Some checks reported errors
continuous-integration/drone/push Build encountered an error
2024-09-14 00:25:59 +00:00
e4b541e653
fix(view): correctly get paginated task results
All checks were successful
continuous-integration/drone/push Build is passing
2024-09-13 22:56:41 +02:00
5a7c3927f3
fix(view): correctly resolve label for filtered views or buckets
All checks were successful
continuous-integration/drone/push Build is passing
2024-09-13 19:14:54 +02:00
f425d98b4d
fix(filters): do not replace filter or project values when the id value resolves to undefined
All checks were successful
continuous-integration/drone/push Build is passing
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
2024-09-13 18:42:42 +02:00
4c55016c1a
fix(task): multiple overlapping defer due date popups
All checks were successful
continuous-integration/drone/push Build is passing
Resolves https://github.com/go-vikunja/vikunja/issues/131
2024-09-13 17:44:26 +02:00
1a8f12ac13
fix(kanban): do not mark first bucked as done bucket in filter bucket mode
All checks were successful
continuous-integration/drone/push Build is passing
Resolves https://github.com/go-vikunja/vikunja/issues/313
2024-09-13 11:52:44 +02:00
7b873ec31c
fix(table): make sorting for two-word properties work
All checks were successful
continuous-integration/drone/push Build is passing
Resolves https://community.vikunja.io/t/various-sorting-filtering-issues/2781/8
2024-09-13 11:03:38 +02:00
Frederick [Bot]
14710d0bba chore(i18n): update translations via Crowdin
Some checks failed
continuous-integration/drone/push Build is failing
2024-09-13 00:25:12 +00:00
945f25b818
fix(kanban): make kanban full width on mobile
Some checks failed
continuous-integration/drone/push Build is failing
Related to https://github.com/go-vikunja/vikunja/issues/309
2024-09-12 16:42:12 +02:00
f53b93d98a
fix(modal): make sure modal and its content scrolls properly on mobile
Some checks failed
continuous-integration/drone/push Build is failing
Related to https://github.com/go-vikunja/vikunja/issues/309
2024-09-12 16:22:18 +02:00
97e030a1fc
fix(home): explicitly use filter for tasks on home page when one is set
All checks were successful
continuous-integration/drone/push Build is passing
Resolves https://github.com/go-vikunja/vikunja/issues/289
Resolves https://community.vikunja.io/t/various-sorting-filtering-issues/2781/5
2024-09-12 15:51:08 +02:00
6bfe71b30e
fix(filters): immediately propagate changes
Some checks failed
continuous-integration/drone/push Build is failing
Resolves https://community.vikunja.io/t/filtering-startdate-now-is-invalid/2613/6
2024-09-12 15:28:39 +02:00
7e38a9f442
fix(kanban): make task creation loading spinner actually visible
Some checks failed
continuous-integration/drone/push Build is failing
2024-09-12 14:33:44 +02:00
bdccd633fe
fix(labels): remove input interactivity when label edit is disabled
Some checks failed
continuous-integration/drone/push Build is failing
2024-09-12 13:39:03 +02:00
1f3eb8f2a3
chore: fix comment 2024-09-12 13:39:03 +02:00
3b8ccbad4f
fix(multiselect): make selectPlaceholder optional
All checks were successful
continuous-integration/drone/push Build is passing
2024-09-12 11:29:39 +02:00
cc1b4bbd1b
fix(task): make print styles work when printing task detail view from kanban
All checks were successful
continuous-integration/drone/push Build is passing
Resolves https://community.vikunja.io/t/feature-request-export-a-task-as-pdf/2735/6
2024-09-12 11:02:38 +02:00
Frederick [Bot]
e1ea84fcd4 chore(i18n): update translations via Crowdin
Some checks failed
continuous-integration/drone/push Build is failing
2024-09-12 00:26:38 +00:00
4aeb228c3a
fix(project): show description in title attribute without html
Some checks failed
continuous-integration/drone/push Build is failing
Resolves https://community.vikunja.io/t/feedback-to-vikunja-0-24-0/2557/6
2024-09-11 18:23:43 +02:00
b52d6dbf59
fix(projects): do not hide 6th project on project overview
Some checks failed
continuous-integration/drone/push Build is failing
2024-09-11 18:20:57 +02:00
76f7797e56
chore: remove console.log
Some checks failed
continuous-integration/drone/push Build is failing
2024-09-11 18:14:10 +02:00
55dd7d2981
fix(task): specify task index when creating multiple tasks at once
Some checks failed
continuous-integration/drone/push Build is failing
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
2024-09-11 17:58:42 +02:00
44a43b9f86
fix(auth): restrict max password length to 72 bytes
Some checks failed
continuous-integration/drone/push Build is failing
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/
2024-09-10 18:23:06 +02:00
eb95caf757
fix(password): validate password before sending request to api
Some checks failed
continuous-integration/drone/push Build is failing
2024-09-10 17:44:52 +02:00
02c1de55c4
chore(attachments): refactor building image preview
Some checks failed
continuous-integration/drone/push Build is failing
2024-09-06 09:43:59 +02:00
22e594e253
fix(kanban): save updated position to store
All checks were successful
continuous-integration/drone/push Build is passing
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
2024-09-05 14:51:47 +02:00
Frederick [Bot]
7bd84a845c chore(i18n): update translations via Crowdin
Some checks failed
continuous-integration/drone/push Build is failing
2024-09-03 00:25:53 +00:00
165ee9e7f3
fix(service worker): use correct workbox version
Some checks failed
continuous-integration/drone/push Build is failing
Resolves https://github.com/go-vikunja/vikunja/issues/322
2024-09-02 23:40:17 +02:00
Frederick [Bot]
14c862d284 chore(i18n): update translations via Crowdin
All checks were successful
continuous-integration/drone/push Build is passing
2024-08-30 00:25:55 +00:00
429c7ca2c1
feat(task): always insert new tasks at the top
All checks were successful
continuous-integration/drone/push Build is passing
Resolves https://community.vikunja.io/t/kanban-cards-in-wrong-order/2731
2024-08-28 15:30:40 +02:00
Frederick [Bot]
c38aaeb224 chore(i18n): update translations via Crowdin
All checks were successful
continuous-integration/drone/push Build is passing
2024-08-28 00:25:41 +00:00
Frederick [Bot]
1b9139b9b0 chore(i18n): update translations via Crowdin
All checks were successful
continuous-integration/drone/push Build is passing
2024-08-27 00:25:53 +00:00
56bab7485f
feat(i18n): add Lithuanian translation for selection
All checks were successful
continuous-integration/drone/push Build is passing
2024-08-26 17:05:01 +02:00
435cb2e7f7
fix(view): do not crash when saving a view
All checks were successful
continuous-integration/drone/push Build is passing
Resolves https://github.com/go-vikunja/vikunja/issues/312
2024-08-25 15:53:51 +02:00
Frederick [Bot]
9ed33f5c08 chore(i18n): update translations via Crowdin
All checks were successful
continuous-integration/drone/push Build is passing
2024-08-23 00:25:56 +00:00
Frederick [Bot]
83669fd9e0 chore(i18n): update translations via Crowdin
All checks were successful
continuous-integration/drone/push Build is passing
2024-08-21 00:25:43 +00:00
Frederick [Bot]
35578e0021 chore(i18n): update translations via Crowdin
All checks were successful
continuous-integration/drone/push Build is passing
2024-08-20 00:25:51 +00:00
Frederick [Bot]
e281de30b5 chore(i18n): update translations via Crowdin
Some checks reported errors
continuous-integration/drone/push Build encountered an error
2024-08-17 00:15:36 +00:00
Frederick [Bot]
ec2c2e74f0 chore(i18n): update translations via Crowdin
All checks were successful
continuous-integration/drone/push Build is passing
2024-08-15 00:03:11 +00:00
f22420d502
fix(kanban): always make cover image full width
All checks were successful
continuous-integration/drone/push Build is passing
2024-08-12 17:22:26 +02:00
9576f72d7c
fix(task): set current project after moving a task 2024-08-12 15:22:14 +02:00
7efc4d1bc8
fix(task): do not allow moving a task to the project the task already belongs to 2024-08-12 15:18:45 +02:00
e2a87036e0
feat(editor): support custom protocol for links
All checks were successful
continuous-integration/drone/push Build is passing
Resolves https://github.com/go-vikunja/vikunja/issues/306
2024-08-12 11:42:43 +02:00
Frederick [Bot]
4a4ed2cf89 chore(i18n): update translations via Crowdin
All checks were successful
continuous-integration/drone/push Build is passing
2024-08-10 00:03:08 +00:00
Frederick [Bot]
6137d07138 chore(i18n): update translations via Crowdin
All checks were successful
continuous-integration/drone/push Build is passing
2024-08-08 00:03:17 +00:00
66d316f0b5
fix(i18n): change casing of Ukrainian language in selector
All checks were successful
continuous-integration/drone/push Build is passing
2024-08-07 16:51:22 +02:00
413798b321 fix: remove console log
All checks were successful
continuous-integration/drone/push Build is passing
2024-08-07 13:29:56 +00:00
Frederick [Bot]
bf1c8c6119 chore(i18n): update translations via Crowdin
All checks were successful
continuous-integration/drone/push Build is passing
2024-07-31 00:02:59 +00:00
Frederick [Bot]
49fa0a8468 chore(i18n): update translations via Crowdin
All checks were successful
continuous-integration/drone/push Build is passing
2024-07-27 00:03:15 +00:00
Frederick [Bot]
784cd42a7a chore(i18n): update translations via Crowdin
All checks were successful
continuous-integration/drone/push Build is passing
2024-07-24 00:03:08 +00:00