Commit Graph

310 Commits

Author SHA1 Message Date
24701a17f5
fix: new task input focus 2022-04-24 17:26:57 +02:00
Dominik Pschenitschni
9c2438026b fix: remove obsolete watchEffect (#1795)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #1795
Reviewed-by: konrad <k@knt.li>
Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
2022-04-18 17:32:21 +00:00
8473bd6a8b feat: add scroll snapping to kanban view
All checks were successful
continuous-integration/drone/push Build is passing
2022-04-11 22:09:06 +00:00
b2897545e4
fix: properly set list backgrounds when switching between lists
Some checks failed
continuous-integration/drone/push Build is failing
Probably caused by the blur hash feature, switching between lists would not work if the list background was set via unsplash. I've refactored the whole decision tree which checks if a background should be loaded or not. It actually does not matter where the background is from (unsplash or upload) or if we had one in the last list - we only need to know if the current list has a background or if we just changed it and need to update right away.
2022-04-03 14:20:16 +02:00
ba9f69344a
feat: use defineComponent wrapper 2022-04-02 17:16:57 +02:00
a3329f1b42
feat: add lang ts to script block 2022-04-02 17:15:46 +02:00
4cff3ebee1 feat: use blurHash when loading list backgrounds (#1188)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #1188
2022-04-02 15:05:30 +00:00
2e537f6d63
fix: loading list views would sometimes not get loaded
All checks were successful
continuous-integration/drone/push Build is passing
To make sure the tasks of a list are only loaded after the list itself is fetched from the server, we hide the list view until the list is fully loaded. When switching between different views of the same list, this would cause the list view to not be loaded at all because the list was already loaded at that point.

closes #1732
2022-04-02 12:47:13 +02:00
46050611d8 fix: forgotten import
All checks were successful
continuous-integration/drone/push Build is passing
2022-03-27 21:06:30 +00:00
a055a3ea52 fix: lint 2022-03-27 21:06:30 +00:00
b7a976a9cf fix: setting the last viewed list after navigating away from it
The new list background was set on the home page when navigating to the list. This was because the `CURRENT_LIST` was set to the last visited list, even after the call to `this.$store.commit(CURRENT_LIST, null)` because everything is async. I tracked the problem down to the call to `watchEffect` in the ListWrapper component. Apparently, `watchEffect` is called every time _the watched variable is assigned to_ and not only when it changes. When navigating away from the list, that watcher is getting called with the list id, the one already loaded, and sets it in store which in turn overrides the call from the contentAuth component.
2022-03-27 21:06:30 +00:00
42c0fc6185 fix: make sure a list background is set in store when adding one
When creating a new list, setting a background and then navigating to the home page, the list background would not be shown in the list card. Now, we're setting the newly updated list with all its background information properly in store (why are there even multiple places for this?).
2022-03-27 21:06:30 +00:00
7f56a3537c fix: load the list tasks only after the list itself was loaded (#1251)
Some checks failed
continuous-integration/drone/push Build is failing
Currently, when opening a list sometimes the tasks are shown before the list itself is loaded. Because the list contains the rights, this means no edit buttons etc are available at that point which is pretty confusing.

This PR ensures the list-specific view is loaded only after the list itself is loaded.

Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #1251
2022-03-27 19:56:56 +00:00
7f2189b455
fix: don't rotate kanban cards while dragging
All checks were successful
continuous-integration/drone/push Build is passing
The way I implemented that had a few annoying side effects like wiggling around when clicking on the bucket
2022-02-27 19:43:05 +01:00
a23b4a96ee
fix: kanban board layout on mobile
All checks were successful
continuous-integration/drone/push Build is passing
2022-02-27 16:36:20 +01:00
553fd54f78
fix(kanban): background content scrolling when opening a task
All checks were successful
continuous-integration/drone/push Build is passing
2022-02-26 14:39:25 +01:00
5b509da215
fix(kanban): make sure the buckets don't appear glued to the bottom 2022-02-26 14:28:55 +01:00
f54f533700
fix(kanban): transition animation for bucket footer when adding a new task
All checks were successful
continuous-integration/drone/push Build is passing
2022-02-26 14:20:53 +01:00
17ba56f12d
feat: rotate task cards slightly while moving them between buckets
All checks were successful
continuous-integration/drone/push Build is passing
2022-02-26 14:03:30 +01:00
051dd98ff7
fix: undo task done from list view
All checks were successful
continuous-integration/drone/push Build is passing
2022-02-26 13:18:44 +01:00
45e1ae66d6
feat: restore styling / fix styling issues
All checks were successful
continuous-integration/drone/pr Build is passing
2022-02-13 13:49:32 +01:00
e2c81d840f
fix: hack to fix wrong index position 2022-02-13 13:49:32 +01:00
69654b823e
feat: increase task drop area size for bucket list 2022-02-13 13:49:31 +01:00
de626eab31
feat: don't open task detail in modal for list and table view
All checks were successful
continuous-integration/drone/pr Build is passing
2022-01-31 01:31:41 +01:00
de3c47dc69
fix ts errors in various files 2022-01-30 16:53:46 +01:00
76f4cca5fe
fix: move local storage list view to router 2022-01-04 21:55:33 +01:00
5916a44724
feat: provide listId prop via router 2022-01-04 21:55:32 +01:00
6d62ca1ada
fix: check now just once 2022-01-04 21:55:32 +01:00
2db820d926
feat: review changes 2022-01-04 21:55:32 +01:00
700fce3c2c
fix: sharing components 2022-01-04 21:55:32 +01:00
e78d47fdcf
fix: list specs 2022-01-04 21:55:30 +01:00
5937f01cc5
fix: list loading 2022-01-04 21:55:30 +01:00
29a9335844
feat: save current list view just once 2022-01-04 21:55:30 +01:00
7eed0628d0
feat: mount list views as route-views 2022-01-04 21:55:30 +01:00
16b0d03601
fix: readd modal transitions 2022-01-04 21:55:30 +01:00
c70211ad32
feat: unify modal view
fix: List.vue
2022-01-04 21:55:30 +01:00
281c922de1
feat: make taskList a composable 2022-01-04 21:55:29 +01:00
5a0c0eff9f
feat: implement modals with vue router 4
This is an implementation of the modals with the new possibilities of vue router 3.

See: https://github.com/vuejs/vue-router/issues/703#issuecomment-865066913 for a better explanation
and the linked example implementation: https://github.com/vuejs/vue-router-next/blob/master/e2e/modal/index.ts
2022-01-04 21:55:29 +01:00
Dominik Pschenitschni
cdbd1c2ac4 feat: create BaseButton component (#1123)
Some checks are pending
continuous-integration/drone/push Build is running
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #1123
Reviewed-by: konrad <k@knt.li>
Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
2022-01-04 18:58:06 +00:00
8ae84eaf42 fix: padding and centering of the kanban limit and dropdown 2021-12-30 15:59:59 +00:00
7ebca9afc5 feat/alphabetical-sort (#1162)
All checks were successful
continuous-integration/drone/push Build is passing
Alphabetical sorting.
Disables re-ordering when applied.
Does not work with the search button as expected, but neither do the filters tbh... Works fine with the search in the filters menu.

I know we talked about having a dropdown but since this is pretty much finished I thought I'd submit a PR. I am a bit short on time these days but may submit a new PR to add the dropdown ( should be simple enough )

Co-authored-by: Stefan Genov <stefantigro@gmail.com>
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #1162
Reviewed-by: konrad <k@knt.li>
Reviewed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
Co-authored-by: Michaelpalacce <stefantigro@gmail.com>
Co-committed-by: Michaelpalacce <stefantigro@gmail.com>
2021-12-21 16:29:49 +00:00
f8d009a6aa feat: add message component (#1082)
All checks were successful
continuous-integration/drone/push Build is passing
This PR adds a simple message component that replaces bulma's default message.

Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #1082
Reviewed-by: dpschen <dpschen@noreply.kolaente.de>
Co-authored-by: konrad <k@knt.li>
Co-committed-by: konrad <k@knt.li>
2021-11-28 14:18:27 +00:00
46fa43d67f Migrate to bulma-css-variables and introduce dark mode (#954)
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Co-authored-by: Adrian Simmons <adrian@perlucida.co.uk>
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #954
Reviewed-by: dpschen <dpschen@noreply.kolaente.de>
Reviewed-by: konrad <k@knt.li>
Co-authored-by: adrinux <adrian@perlucida.co.uk>
Co-committed-by: adrinux <adrian@perlucida.co.uk>
2021-11-22 21:12:54 +00:00
dpschen
b838e7494d fix attribute coercion for contenteditable (#1025)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #1025
Reviewed-by: konrad <k@knt.li>
Co-authored-by: dpschen <dpschen@noreply.kolaente.de>
Co-committed-by: dpschen <dpschen@noreply.kolaente.de>
2021-11-18 13:00:54 +00:00
ae5d3ecac5 fix: kanban card spacing (#1005)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: kolaente <k@knt.li>
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #1005
Co-authored-by: konrad <k@knt.li>
Co-committed-by: konrad <k@knt.li>
2021-11-16 21:44:07 +00:00
feea191ecf feat: add v-shortcut directive for keyboard shortcuts (#942)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #942
Reviewed-by: dpschen <dpschen@noreply.kolaente.de>
Co-authored-by: konrad <k@knt.li>
Co-committed-by: konrad <k@knt.li>
2021-11-13 20:28:29 +00:00
31f0c384ac feat: add button to clear active filters (#924)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #924
Reviewed-by: dpschen <dpschen@noreply.kolaente.de>
Co-authored-by: konrad <k@knt.li>
Co-committed-by: konrad <k@knt.li>
2021-11-13 19:48:06 +00:00
dpschen
8e6e52bf02 feat: wrap edit-task with card (#948)
Some checks failed
continuous-integration/drone/push Build is failing
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #948
Reviewed-by: konrad <k@knt.li>
Co-authored-by: dpschen <dpschen@noreply.kolaente.de>
Co-committed-by: dpschen <dpschen@noreply.kolaente.de>
2021-11-13 14:13:56 +00:00
c6b24dd8f1
feat: add Done component 2021-10-25 16:39:35 +02:00
9e6afdb752
fix kanban height calculation with hack 2021-10-25 16:39:34 +02:00
87d2b4fed3
fix: use :deep() selector instead of ::v-deep 2021-10-25 16:39:34 +02:00
14dd49e4b0
feat: divide most tasks.scss styles into components
- ShowTasks.vue
- List.vue
- defer-task.vue
- edit-task.vue
- Kanban.vue, relatedTasks.vue and singleTaskInView.vue
2021-10-25 16:39:33 +02:00
f7c7ea50eb
feat: merge table-view.scss with component styles 2021-10-25 16:39:32 +02:00
55bed2e5e8
feat: merge switch-view.scss with component styles 2021-10-25 16:39:32 +02:00
87f7a515a6
feat: divide most list.scss styles into components
- list-card.vue and the Home.vue
- listSearch.vue
- topNavigation.vue
- EditTeam.vue
- List.vue
- ShowList.vue
2021-10-25 16:39:31 +02:00
4d15f7ae98
feat: merge list-backgrounds.scss with component 2021-10-25 16:39:31 +02:00
9ca8857d89
feat: merge kanban.scss styles with component
.ghost-task-drop class was removed because it was used nowhere.
2021-10-25 16:39:31 +02:00
ba1942e757
feat: merge gantt.scss with component styles 2021-10-25 16:39:31 +02:00
f795d2d0f3
fix: ATTR_ENUMERATED_COERCION errors with contenteditable 2021-10-17 22:08:58 +02:00
3ba9cd2d99
fix: ATTR_ENUMERATED_COERCION errors with editor and contenteditable
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2021-10-17 22:05:23 +02:00
571b019c00
fix: ATTR_ENUMERATED_COERCION in a few places
Some checks failed
continuous-integration/drone/pr Build is failing
2021-10-17 18:52:05 +02:00
3f61c6b21a
fix: use correct prop for CreateEdit
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is failing
2021-10-17 17:30:00 +02:00
36d5262f1d
fix: ATTR_ENUMERATED_COERCION spellcheck on kanban board
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is failing
2021-10-17 17:21:33 +02:00
2de94bc902
fix: lint
Some checks failed
continuous-integration/drone/pr Build is failing
2021-10-17 16:26:17 +02:00
9fc158831b
Merge branch 'vue3' into feature/vue3-async-await
Some checks failed
continuous-integration/drone/pr Build is failing
2021-10-17 16:22:43 +02:00
9d48700cd9
fix: vuex store mutation error when moving a task with attributes on kanban
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is passing
2021-10-17 16:21:55 +02:00
2ac3d29c13
Merge branch 'vue3' into feature/vue3-async-await
Some checks failed
continuous-integration/drone/pr Build is failing
# Conflicts:
#	src/i18n/index.js
#	src/store/modules/labels.js
#	src/store/modules/tasks.js
#	src/views/list/views/Kanban.vue
#	src/views/tasks/ShowTasks.vue
#	src/views/tasks/TaskDetailView.vue
2021-10-17 16:06:58 +02:00
0cc7166767
fix: don't search for first letter images
Some checks failed
continuous-integration/drone/pr Build is failing
2021-10-17 15:19:21 +02:00
cc32ca244c
feat: don't update the bucket after updating task position
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2021-10-17 14:52:48 +02:00
c1078255fc
fix: use lodash.debounce for searching unsplash background
Some checks failed
continuous-integration/drone/pr Build is failing
2021-10-17 14:47:30 +02:00
1d2abf56f9
Merge branch 'main' into vue3
# Conflicts:
#	src/components/tasks/mixins/createTask.js
2021-10-17 13:37:20 +02:00
e52c139c9f
fix: task edit pane spacing
All checks were successful
continuous-integration/drone/push Build is passing
2021-10-17 13:36:21 +02:00
a60ad77bdc
fix: use async action to change current list
All checks were successful
continuous-integration/drone/pr Build is passing
2021-10-16 20:44:39 +02:00
7f5f44d7f0
fix: call loadList just once
Some checks reported errors
continuous-integration/drone/pr Build was killed
2021-10-16 18:59:54 +02:00
bb94c1ba3a
feat: use async / await where it makes sense 2021-10-16 18:59:53 +02:00
3b940cb56c
feat: don't rethrow same error and handle errors globally 2021-10-16 18:59:53 +02:00
f05e81190f fix: setting background to state mutation violation (#858)
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is passing
State mutations must be synchronous. Using a promise.then handler to set the background is a violation of that.

Co-authored-by: kolaente <k@knt.li>
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #858
Co-authored-by: konrad <k@knt.li>
Co-committed-by: konrad <k@knt.li>
2021-10-16 15:51:27 +00:00
80163ee992
fix: use componentData prop in draggable to set class
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
2021-10-16 13:54:24 +02:00
a3a3ef850c
chore: remove console.log 2021-10-11 21:25:54 +02:00
0b68a473ef
fix: use correct listId to load next tasks 2021-10-11 18:08:33 +02:00
d7ed5b8f11
fix: use correct listId when deleting bucket 2021-10-11 18:08:32 +02:00
6fee114610
chore: remove unneeded var 2021-10-11 18:08:31 +02:00
4ae18ec162
fix: kanban drag task test 2021-10-11 18:08:30 +02:00
d66ad12f5c
feat: improve kanban implementation 2021-10-11 18:08:30 +02:00
3a7a4bdc42
Merge branch 'main' into vue3
Some checks failed
continuous-integration/drone/pr Build is failing
# Conflicts:
#	src/components/input/editor.vue
#	src/components/list/partials/filters.vue
#	src/components/tasks/partials/editAssignees.vue
#	src/helpers/find.ts
#	src/helpers/time/formatDate.js
#	src/main.ts
#	src/store/modules/attachments.js
#	src/store/modules/kanban.js
#	src/views/list/views/List.vue
#	yarn.lock
2021-10-07 12:20:52 +02:00
7e1a7f3f19 feat: hide priority label for done tasks (#825)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #825
Co-authored-by: konrad <k@knt.li>
Co-committed-by: konrad <k@knt.li>
2021-10-05 05:43:10 +00:00
d284db672e
fix: don't allow reordering tasks in filtered lists
All checks were successful
continuous-integration/drone/push Build is passing
2021-10-04 22:12:39 +02:00
34d0f28678
Merge branch 'main' into fix/vue3
# Conflicts:
#	src/views/list/settings/edit.vue
2021-10-03 13:24:17 +02:00
dpschen
3f9917dfab fix: vuex mutation error in edit list (#813)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #813
Reviewed-by: konrad <k@knt.li>
Co-authored-by: dpschen <dpschen@noreply.kolaente.de>
Co-committed-by: dpschen <dpschen@noreply.kolaente.de>
2021-10-02 18:51:54 +00:00
7bb1b1b769
feat: fix some Kanban errors with vue3 2021-10-01 21:26:47 +02:00
15640e98ec
feat: simplify filter-popup
Some checks failed
continuous-integration/drone/pr Build is failing
2021-10-01 20:14:21 +02:00
8d88b3792d
feat: always use index for buckets 2021-10-01 20:06:06 +02:00
672d63fbed
feat: remove createTask mixin 2021-10-01 20:06:06 +02:00
aeabc42844
fix newList.vue
Some checks failed
continuous-integration/drone/pr Build is failing
2021-10-01 20:06:05 +02:00
e779681905
feat: upgrade to packages for vue 3
- vue3-notification
- vue-advanced-cropper 2
- vuedraggable 4
- vue-shortkey -> moved in repo
2021-10-01 18:49:54 +02:00
72518212da
feat: use vue-router 4 for vue3 2021-10-01 18:47:41 +02:00
421ff9a188
feat: use new async component definition
- fix see: https://v3.vuejs.org/guide/migration/async-components.html
- put async editor in separate component
2021-10-01 18:46:40 +02:00
db49b9b532
fix: directly set arrays, objects and delete directly
Not needed since vue3 uses proxies
2021-10-01 18:45:42 +02:00
697ea12c8e
fix: breaking attribute coercion behavior
see: https://v3.vuejs.org/guide/migration/attribute-coercion.html#overview
2021-09-24 21:46:42 +02:00
fe27a432c7
feat: move unique functions from taskList to List 2021-09-24 21:46:42 +02:00
f51371bbe0
feat: move from life cycle to data or watcher
- remove from created / mounted
- initialize component services in data
- use immediate watcher where appropriate
- deep watch for route changes
2021-09-24 21:46:42 +02:00
ebeca48be4
fix: namespace collision of global error method with draggable error method 2021-09-24 21:46:42 +02:00
0da7a46612
feat: formatting
- remove unneeded data props
- prepare for compiler warnings vue3; see https://v3.vuejs.org/guide/migration/v-bind.html
2021-09-24 21:46:42 +02:00
4454e6cf22
feat: update to new slot syntax
Prepare for vue 3
2021-09-24 21:46:42 +02:00
dpschen
7719ef1bef feat: move pagination to dedicated component (#760)
Some checks failed
continuous-integration/drone/push Build is failing
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #760
Reviewed-by: konrad <k@knt.li>
Co-authored-by: dpschen <dpschen@noreply.kolaente.de>
Co-committed-by: dpschen <dpschen@noreply.kolaente.de>
2021-09-21 19:03:38 +00:00
d88e299358 fix: no drag delay when using mouse on touch device (#748)
Some checks failed
continuous-integration/drone/push Build is failing
Reviewed-on: #748
Reviewed-by: konrad <k@knt.li>
Co-authored-by: simon1506 <simon.sch.dev@gmail.com>
Co-committed-by: simon1506 <simon.sch.dev@gmail.com>
2021-09-21 16:47:42 +00:00
dpschen
07a6a31f47 chore: move constants in folder (#732)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #732
Reviewed-by: konrad <k@knt.li>
Co-authored-by: dpschen <dpschen@noreply.kolaente.de>
Co-committed-by: dpschen <dpschen@noreply.kolaente.de>
2021-09-10 14:21:33 +00:00
9cee720ac9
Fix sort order for table view
Some checks failed
continuous-integration/drone/push Build is failing
2021-09-08 18:13:02 +02:00
6f89863c81
Fix missing translation when creating a new task on the kanban board
All checks were successful
continuous-integration/drone/push Build is passing
2021-09-08 17:49:10 +02:00
332dbc1598
Fix rearranging tasks in a kanban bucket when its limit was reached
All checks were successful
continuous-integration/drone/push Build is passing
2021-09-07 18:38:53 +02:00
dpschen
30d699df2d fix: non unique ids (#672)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #672
Co-authored-by: dpschen <dpschen@noreply.kolaente.de>
Co-committed-by: dpschen <dpschen@noreply.kolaente.de>
2021-08-23 17:42:42 +00:00
187a8f5933
Small cleanups & code improvements
All checks were successful
continuous-integration/drone/push Build is passing
2021-08-06 23:34:37 +02:00
493180d442
Fix lint
All checks were successful
continuous-integration/drone/push Build is passing
2021-08-03 23:28:55 +02:00
e3787b9496
Only add a drag delay if on mobile instead of setting it to 0
Some checks failed
continuous-integration/drone/push Build is failing
2021-08-03 23:26:39 +02:00
c323804c7c
Add drag delay on mobile
All checks were successful
continuous-integration/drone/push Build is passing
2021-07-29 13:08:38 +02:00
3c2d89a0f6
Don't allow dragging a list when the user does not have the rights
All checks were successful
continuous-integration/drone/push Build is passing
2021-07-29 13:05:33 +02:00
c4067c7c35 PWA improvments (#622)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #622
Co-authored-by: konrad <konrad@kola-entertainments.de>
Co-committed-by: konrad <konrad@kola-entertainments.de>
2021-07-28 20:58:12 +00:00
3c7f8d7aa2 Reorder tasks, lists and kanban buckets (#620)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #620
Co-authored-by: konrad <konrad@kola-entertainments.de>
Co-committed-by: konrad <konrad@kola-entertainments.de>
2021-07-28 19:56:29 +00:00
a08306d612 Add vite (#416)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #416
Co-authored-by: konrad <konrad@kola-entertainments.de>
Co-committed-by: konrad <konrad@kola-entertainments.de>
2021-07-25 13:27:15 +00:00
5fd7e3f708
Fix table view scrolling on mobile
All checks were successful
continuous-integration/drone/push Build is passing
2021-07-22 21:48:05 +02:00
d81b4117f5
Fix quick actions not working when nonexisting lists where left over in history
All checks were successful
continuous-integration/drone/push Build is passing
2021-07-20 18:03:38 +02:00
fa8492f97c Add typescript support for helper functions (#598)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #598
Co-authored-by: konrad <konrad@kola-entertainments.de>
Co-committed-by: konrad <konrad@kola-entertainments.de>
2021-07-19 18:20:49 +00:00
306a926c66 Add default list setting & creating tasks from home (#520)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: sytone <github@sytone.com>
Co-authored-by: Sytone <github@sytone.com>
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #520
Reviewed-by: konrad <konrad@kola-entertainments.de>
Co-authored-by: sytone <kolaente@sytone.com>
Co-committed-by: sytone <kolaente@sytone.com>
2021-07-17 21:21:46 +00:00
7fa94a9bd5
Fix loading a list when it was already partially saved in vuex
All checks were successful
continuous-integration/drone/push Build is passing
2021-07-10 12:45:36 +02:00
7355204d2f Improve some translations (#581)
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #581
Reviewed-by: konrad <konrad@kola-entertainments.de>
Co-authored-by: andreymal <andriyano-31@mail.ru>
Co-committed-by: andreymal <andriyano-31@mail.ru>
2021-07-09 08:22:20 +00:00
ac6082a670
Add collapsing kanban buckets
Some checks reported errors
continuous-integration/drone/push Build was killed
2021-07-07 21:58:41 +02:00
d09eff1655
Show last visited list on home page
Some checks failed
continuous-integration/drone/push Build is failing
2021-07-06 22:22:57 +02:00
c8209c6c10 Quick add magic for tasks (#570)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #570
Co-authored-by: konrad <konrad@kola-entertainments.de>
Co-committed-by: konrad <konrad@kola-entertainments.de>
2021-07-05 10:29:04 +00:00
f0498fd767 Add translations (#562)
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #562
Co-authored-by: konrad <konrad@kola-entertainments.de>
Co-committed-by: konrad <konrad@kola-entertainments.de>
2021-06-23 23:24:57 +00:00
cdc805c8da
Refactor success and error messages
All checks were successful
continuous-integration/drone/push Build is passing
2021-06-22 22:07:57 +02:00
a9d3446ce3
Preload labels and use locally stored in vuex
All checks were successful
continuous-integration/drone/push Build is passing
2021-06-03 22:23:04 +02:00
e37145cd43
Add setting for the first day of the week
All checks were successful
continuous-integration/drone/push Build is passing
2021-06-03 18:12:40 +02:00
0cd9d43a7c
Fix showing edit buttons when the user does not have the rights to use them
All checks were successful
continuous-integration/drone/push Build is passing
2021-06-03 16:27:41 +02:00
9d818921a7
Fix not updating list name in store when changing it
Some checks failed
continuous-integration/drone/push Build is failing
2021-05-26 16:46:16 +02:00
f9844384be
Hide the bucket limit input when clicked away
All checks were successful
continuous-integration/drone/push Build is passing
2021-04-15 17:03:26 +02:00
48fb707032
Prevent setting a bucket limit < 0
All checks were successful
continuous-integration/drone/push Build is passing
2021-04-15 16:58:48 +02:00
2435bd68a0 Add a "done" option to kanban buckets (#440)
Some checks reported errors
continuous-integration/drone/push Build was killed
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #440
Co-authored-by: konrad <konrad@kola-entertainments.de>
Co-committed-by: konrad <konrad@kola-entertainments.de>
2021-03-24 20:16:56 +00:00
1686663a3f
Add option to remove a list background
All checks were successful
continuous-integration/drone/push Build is passing
2021-03-21 18:11:24 +01:00
46de7dc822
Fix kanban infinite scrolling on chrome
All checks were successful
continuous-integration/drone/push Build is passing
2021-03-10 17:45:07 +01:00
f7d8095b5a Pagingation for tasks in kanban buckets (#419)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #419
Co-authored-by: konrad <konrad@kola-entertainments.de>
Co-committed-by: konrad <konrad@kola-entertainments.de>
2021-03-10 10:59:29 +00:00
cf47e196d7
Automatically go back after saving from a popup
All checks were successful
continuous-integration/drone/push Build is passing
2021-02-20 17:24:40 +01:00
074b7e53f5
Don't show the list color in the list view
All checks were successful
continuous-integration/drone/push Build is passing
2021-02-20 15:54:12 +01:00
7f5140bbb4
Play a sound when marking a task as done
All checks were successful
continuous-integration/drone/push Build is passing
2021-01-30 21:45:54 +01:00
e0be77d88f Move list edit/namespace to separate pages and in a menu (#397)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #397
Co-authored-by: konrad <konrad@kola-entertainments.de>
Co-committed-by: konrad <konrad@kola-entertainments.de>
2021-01-30 16:17:04 +00:00
06a160f26c
Fix defer due date popup
All checks were successful
continuous-integration/drone/push Build is passing
2021-01-24 15:37:19 +01:00
769975b42b
Fix spacing for lists with no rights to add new tasks
All checks were successful
continuous-integration/drone/push Build is passing
2021-01-24 14:27:52 +01:00
8828426c91 Move all content to cards (#387)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #387
Co-authored-by: konrad <konrad@kola-entertainments.de>
Co-committed-by: konrad <konrad@kola-entertainments.de>
2021-01-24 13:00:21 +00:00
0d64506d73
Make sure all popups & dropdowns are animated
All checks were successful
continuous-integration/drone/push Build is passing
2021-01-23 18:54:22 +01:00
ddadd89c64 Move all create views to better looking popups (#383)
Some checks failed
continuous-integration/drone/push Build is failing
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #383
Co-authored-by: konrad <konrad@kola-entertainments.de>
Co-committed-by: konrad <konrad@kola-entertainments.de>
2021-01-21 22:33:16 +00:00
0667a96376
Fix empty call to actions
Some checks failed
continuous-integration/drone/push Build is failing
2021-01-21 18:14:22 +01:00