9853 Commits

Author SHA1 Message Date
5340e00259 chore(deps): update dependency @types/node to v20.14.6
Some checks are pending
continuous-integration/drone/push Build is running
2024-06-20 08:44:17 +00:00
Frederick [Bot]
673edafd87 chore(i18n): update translations via Crowdin
All checks were successful
continuous-integration/drone/push Build is passing
2024-06-20 00:21:58 +00:00
da66eb7314
fix(filters): do not match partial labels
All checks were successful
continuous-integration/drone/push Build is passing
This change fixes a bug where an input query like "labels in test || labels in l" would be replaced with something like "undefinedabels in test || labels in l" or "3abels in test || labels in l" when there was a label starting with "l" - when it should not have touched that.
The matching was changed so that only exact label matches are taken into account when searching for labels.

Now, the above string would be replaced by "labels in 1 || labels in l" (when the label "test" has the id 1).

Maybe resolves https://community.vikunja.io/t/filtering-by-label-ux-issues/2393/8
2024-06-19 17:28:16 +02:00
2690c99438
fix(filters): explicitly use tasks.id as task id filter column
All checks were successful
continuous-integration/drone/push Build is passing
This fixes an error where filtering for labels or other related entities would fail with an error "ambiguous column name id"
2024-06-19 16:58:04 +02:00
9101f26101
fix(comments): do not use whitespace as gap
Some checks failed
continuous-integration/drone/push Build is failing
2024-06-19 16:48:21 +02:00
abdec17d36 fix: disable vetur in case it's installed
All checks were successful
continuous-integration/drone/push Build is passing
2024-06-19 14:05:41 +00:00
9b43c13061 feat: set add tsconfigRootDir option 2024-06-19 14:05:41 +00:00
4546bd6986 feat: add root tsconfig 2024-06-19 14:05:41 +00:00
bf28a0c795 fix(ts): align with create-vue setup 2024-06-19 14:05:41 +00:00
f36115871c feat: camelcase global components
Some checks failed
continuous-integration/drone/push Build is failing
2024-06-19 14:02:14 +00:00
1977a7bee0 feat: add default to custom transition
Some checks failed
continuous-integration/drone/push Build is failing
2024-06-19 13:59:24 +00:00
ff5ee515f9 fix: remove uppercase transformation from username (#2445)
Some checks failed
continuous-integration/drone/push Build is failing
Because usernames might have lowercase letters. Transforming the casing can be confusing and even change meaning.

Reviewed-on: #2445
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Co-committed-by: Dominik Pschenitschni <mail@celement.de>
2024-06-19 13:58:25 +00:00
572f00f78b chore(deps): update dev-dependencies
Some checks failed
continuous-integration/drone/push Build is failing
2024-06-19 13:56:27 +00:00
6d913fcb67 fix(deps): update dependency @sentry/vue to v8.10.0
Some checks failed
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is failing
2024-06-19 13:11:55 +00:00
18e23bf371
fix: use button icon prop
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2024-06-18 17:32:24 +02:00
78eb28b054
feat(views): add filter syntax docs to filter input in views
All checks were successful
continuous-integration/drone/push Build is passing
2024-06-18 17:13:50 +02:00
72fa0ea25c
fix(i18n): remove duplicate key
All checks were successful
continuous-integration/drone/push Build is passing
2024-06-18 16:40:44 +02:00
d12deee977
feat(views): allow reordering views
Some checks failed
continuous-integration/drone/push Build is failing
Resolves https://community.vikunja.io/t/reordering-views/2394
2024-06-18 16:39:52 +02:00
9f604eca79
fix(tasks): clarify usage of repeating modes available in quick add magic.
All checks were successful
continuous-integration/drone/push Build is passing
Originally, it was possible to specify repeating intervals for months or years. This was actually misleading because the interval would be converted to seconds under the hood, causing all kinds of problems with leap years and months with 30 vs 31 days. Because of that, the options for month and year were removed in 7746d3916157e43fca7a24e2a768f7fb83136cf1 to make it clear what these actually meant.
Now, since we do have a repeating mode "Monthly", this commit changes the behaviour to repeat a task monthly when it was specified as "every month", but only that. All other cases were removed from the docs since they are not actually supported.

https://github.com/go-vikunja/vikunja/issues/271
2024-06-18 15:41:30 +02:00
eafd134be5
fix(migration): put "Import from other services" in settings
All checks were successful
continuous-integration/drone/push Build is passing
Resolves #2347
2024-06-18 15:19:56 +02:00
f222ecfa19 chore(mail): update logger to new interface
All checks were successful
continuous-integration/drone/push Build is passing
2024-06-18 12:42:43 +00:00
0799ed4691 fix(deps): update module github.com/wneessen/go-mail to v0.4.1 2024-06-18 12:42:43 +00:00
98c9cd0898
chore(deps): update golangci-lint to 1.59.1
Some checks failed
continuous-integration/drone/push Build is failing
2024-06-18 14:35:20 +02:00
8b028dbc4b
feat(api): add bulk endpoints to api tokens
Some checks failed
continuous-integration/drone/push Build is failing
Previously, the bulk api endpoint were explicitly filtered out. This meant that you couldn't use them with api tokens.
This change adds them to their "parent" token types as another option, allowing users to select and use them when creating api tokens.

Resolves https://community.vikunja.io/t/help-with-bulk-api-complete/2461
2024-06-18 14:33:57 +02:00
6626727d92
fix(tasks): tests
All checks were successful
continuous-integration/drone/push Build is passing
2024-06-18 13:48:09 +02:00
fa6546b6b2
feat(tasks): add tests for moving a task out of the done bucket
Some checks failed
continuous-integration/drone/push Build is failing
2024-06-18 13:40:41 +02:00
5e4b9e38a6 feat: use withDefaults in CreateEdit
Some checks failed
continuous-integration/drone/push Build is failing
2024-06-18 11:29:33 +00:00
a80ac571f2 chore(deps): update goreleaser/nfpm docker tag to v2.37.1
All checks were successful
continuous-integration/drone/push Build is passing
2024-06-18 08:20:51 +00:00
1268145f71 feat: switch to change-case lib
All checks were successful
continuous-integration/drone/push Build is passing
camel-case and snake-case are deprecated
2024-06-18 06:30:39 +00:00
4f1ae248e8 chore(deps): update dev-dependencies
Some checks failed
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is failing
2024-06-18 00:10:29 +00:00
23707fc493 feat: eslint enforce vue/component-name-in-template-casing
All checks were successful
continuous-integration/drone/push Build is passing
2024-06-17 21:01:36 +00:00
8f094c140a chore(deps): update pnpm to v9.4.0
Some checks failed
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is failing
2024-06-17 17:10:25 +00:00
2d358a57cc chore: useDefineOptions for inheritAttrs in Error.vue
All checks were successful
continuous-integration/drone/push Build is passing
2024-06-17 14:38:51 +00:00
657e9a5413
fix(task): do not move task dates when undoing a repeated task
All checks were successful
continuous-integration/drone/push Build is passing
Resolves https://community.vikunja.io/t/undo-on-repeated-task-moves-dates-forward/970
2024-06-17 15:49:28 +02:00
06c3a64594
fix(task): show correct success message when marking a repeating task as done
Some checks failed
continuous-integration/drone/push Build is failing
2024-06-17 15:41:18 +02:00
47143af9d1
fix: missing required prop BackgroundColor
Some checks failed
continuous-integration/drone/push Build is failing
2024-06-17 15:34:33 +02:00
341b8d2045 feat: improve subscription
Some checks failed
continuous-integration/drone/push Build is failing
2024-06-17 13:28:11 +00:00
b1a8bbe760
feat: use withDefaults and defineOptions in Modal
Some checks failed
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is failing
2024-06-17 14:41:03 +02:00
20701ce07a
feat(components): align component name casing ProjectSettings
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2024-06-17 13:50:16 +02:00
4260a504a9
feat(components): align component name casing AddTask 2024-06-17 13:50:16 +02:00
3b38a3faa6
feat(components): align component name casing SingleTaskInProject 2024-06-17 13:50:15 +02:00
a3c3e39e93
feat(components): align component name casing SingleTaskInlineReadonly 2024-06-17 13:50:15 +02:00
1918ffdcff
feat(components): align component name casing RepeatAfter 2024-06-17 13:50:15 +02:00
304779a7de
feat(components): align component name casing Reminders 2024-06-17 13:50:14 +02:00
cb8b685d08
feat(components): align component name casing ReminderPeriod 2024-06-17 13:50:14 +02:00
674e37d7b3
feat(components): align component name casing ReminderDetail 2024-06-17 13:50:13 +02:00
ede60950b4
feat(components): align component name casing RelatedTasks 2024-06-17 13:41:40 +02:00
0d86fced92
feat(components): align component name casing QuickAddMagic 2024-06-17 13:41:40 +02:00
8c9e2b571c
feat(components): align component name casing ProjectSearch 2024-06-17 13:41:40 +02:00
05ebffd5bd
feat(components): align component name casing PrioritySelect 2024-06-17 13:41:40 +02:00