Skip to content

Commit e72f82d

Browse files
authored
Merge pull request #727 from tu2-atmanand/feat-723/multipleViews
feat 723 : Multiple views for each board
2 parents 211f704 + 5132812 commit e72f82d

63 files changed

Lines changed: 7223 additions & 4755 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ npm run dev # Should start watch mode and display "watching for changes..."
9595
│ │ ├── Column.tsx # Kanban column component
9696
│ │ ├── TaskItem.tsx # Individual task component (26k lines - complex)
9797
│ │ ├── KanbanBoard.tsx # Main board component
98-
│ │ ├── TaskBoardViewContent.tsx # Main board content wrapper
98+
│ │ ├── TaskBoardViewContainer.tsx # Main board content wrapper
9999
│ │ └── MapView.tsx # Map-based view component
100100
│ ├── interfaces/ # TypeScript interfaces (3 files)
101101
│ │ ├── TaskItem.ts # Task data structures

data.json

Lines changed: 21 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.9.5",
2+
"version": "2.0.0-beta-1",
33
"data": {
44
"lang": "en",
55
"openOnStartup": false,
@@ -21,13 +21,13 @@
2121
"values": []
2222
}
2323
},
24-
"firstDayOfWeek": "2",
24+
"firstDayOfWeek": "Mon",
2525
"showTaskWithoutMetadata": true,
2626
"ignoreFileNameDates": false,
2727
"taskPropertyFormat": "2",
28-
"taskCompletionDateTimePattern": "yyyy-MM-ddTHH:mm",
2928
"dailyNotesPluginComp": false,
30-
"universalDateFormat": "yyyy-MM-dd",
29+
"dateFormat": "yyyy-MM-dd",
30+
"dateTimeFormat": "yyyy-MM-dd'T'HH:mm:ss",
3131
"defaultStartTime": "",
3232
"taskCompletionInLocalTime": true,
3333
"taskCompletionShowUtcOffset": false,
@@ -41,7 +41,6 @@
4141
"visiblePropertiesList": [
4242
"id",
4343
"title",
44-
"status",
4544
"tags",
4645
"time",
4746
"reminder",
@@ -53,7 +52,8 @@
5352
"completionDate",
5453
"cancelledDate",
5554
"dependsOn",
56-
"filePath"
55+
"checkbox",
56+
"status"
5757
],
5858
"taskCardStyle": "emoji",
5959
"showVerticalScroll": true,
@@ -141,7 +141,7 @@
141141
"reminderPlugin": false,
142142
"quickAddPlugin": false
143143
},
144-
"taskNoteIdentifierTag": "task",
144+
"taskNoteIdentifierTag": "taskNote",
145145
"preDefinedNote": "Meta/Task_Board/New_Tasks.md",
146146
"archivedTasksFilePath": "",
147147
"taskNoteDefaultLocation": "Meta/Task_Board/Task_Notes",
@@ -245,13 +245,12 @@
245245
],
246246
"hiddenTaskProperties": [],
247247
"autoAddUniqueID": false,
248-
"uniqueIdCounter": 608,
248+
"uniqueIdCounter": 634,
249249
"experimentalFeatures": false,
250250
"safeGuardFeature": true,
251251
"lastViewHistory": {
252-
"viewedType": "kanban",
253-
"boardIndex": 0,
254-
"settingTab": 0,
252+
"boardFilePath": "Meta/Task_Board/Boards/Time Based Workflow.taskboard",
253+
"settingTab": 2,
255254
"taskId": ""
256255
},
257256
"boundTaskCompletionToChildTasks": false,
@@ -261,34 +260,26 @@
261260
"optimizedRender": false,
262261
"arrowDirection": "c2p",
263262
"animatedEdges": false,
264-
"scrollAction": "pan",
263+
"scrollAction": "zoom",
265264
"showMinimap": true,
266265
"renderVisibleNodes": false,
267266
"edgeType": "default"
268267
},
269268
"taskBoardFilesRegistry": {
270-
"2957159294": {
271-
"boardId": "2957159294",
272-
"filePath": "Meta/Task_Board/Boards/Tag Based Workflow.taskboard",
273-
"boardName": "Tag Based Workflow",
274-
"boardDescription": ""
269+
"901052398": {
270+
"boardId": "901052398",
271+
"filePath": "TaskBoard-Template-1774097758616.taskboard",
272+
"boardName": "My Project",
273+
"boardDescription": "This is my personal project. This is a default board created by Task Board for you to kick start your journey with Task Board. Feel free to edit or create new boards."
275274
},
276275
"3103563481": {
277276
"boardId": "3103563481",
278-
"filePath": "Meta/Task_Board/Boards/Time Based Workflow.taskboard",
279-
"boardName": "Time Based Workflow",
280-
"boardDescription": ""
281-
},
282-
"4271106430": {
283-
"boardId": "4271106430",
284-
"filePath": "Meta/Task_Board/Boards/Status Based Workflow.taskboard",
285-
"boardName": "Status Based Workflow",
286-
"boardDescription": ""
277+
"filePath": "Meta/Task_Board/Boards/My Project Board.taskboard",
278+
"boardName": "My Project",
279+
"boardDescription": "This is my personal project. This is a default board created by Task Board for you to kick start your journey with Task Board. Feel free to edit or create new boards."
287280
}
288281
},
289-
"searchQuery": "",
290-
"dateFormat": "yyyy/MM/dd",
291-
"dateTimeFormat": "yyyy-MM-dd'T'HH:mm:ss",
292-
"loadAllBoards": false
282+
"loadAllBoards": false,
283+
"searchQuery": ""
293284
}
294285
}

0 commit comments

Comments
 (0)