-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tasks.json
2114 lines (2114 loc) · 76.5 KB
/
tasks.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Pending": {
"TODO.md": [
{
"id": 1249964214,
"title": "Upload this image : ![[Pasted image 20241203231257.png]]",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "TODO.md",
"completed": ""
},
{
"id": 3031502755,
"title": "New temp task, lets see if this comes after 5 minutes",
"body": [
"\t- [ ] Lets add another sub-Task",
"\tUpdating the body line. Adding a link into this body content now : [tu2-atmanand/Task-Board](https://github.com/tu2-atmanand/Task-Board).",
"\tAnother thing i will put is link to a markdown file from my Vault : [[0-ImportantData]]",
"\tSimply adding another line in the description.",
"\t- [x] Also adding this new Subtask, first",
"\t- [ ] And adding second subtask. Now editing will make any difference. Updating"
],
"time": "13:49 - 14:49",
"due": "2024-11-28",
"tags": [
"#Test",
"#New"
],
"priority": 2,
"filePath": "TODO.md",
"completed": ""
}
],
"Testing4.md": [
{
"id": 624176075,
"title": "Need to finish the following pending tasks before next Task Board release.",
"body": [
"\tThese features will help the plugin to achieve its intended functionality.",
"\tThe plugin will start having all the features to document all about the task properly. Here is the image of how the `Edit Task window` should look like in future : ",
"\t- [ ] **Drag and Drop** feature to update the task fields easily.",
"\t- [x] Sorting feature for each individual Column.",
"\t- [ ] Adding *comments and activities* in the Edit Task Window to collect resources/solution for the task and discussions."
],
"time": "21:10 - 23:10",
"due": "2024-10-31",
"tags": [
"#Test",
"#feat"
],
"priority": 2,
"filePath": "Testing4.md",
"completed": ""
},
{
"id": 3604543623,
"title": "Directly copy pasting the task content, to create this GIF. You can add the task at your own pace.",
"body": [
"\t- [ ] This is a new adding task, lets see.",
"\t**Description :** After you finished writting this task in this file switch to other tab or *Task Board* View to see you task automatically get added in the board.",
"\t- [ ] This is a simple sub-tasks to break down.",
"\t- [ ] Divide and rule is a great approach."
],
"time": "",
"due": "2024-11-01",
"tags": [],
"priority": 2,
"filePath": "Testing4.md",
"completed": ""
}
],
"Testing 3.md": [
{
"id": 250972026,
"title": "Suppose say this is a Main task which will going to have only Sub-Tasks and their Sub-sub Tasks",
"body": [
"\t- [ ] This is the first Sub Task, updating",
"\t\t- [ ] This is the first sub-sub Task",
"\t\t\t- [ ] This is first sub-sub-sub task",
"\t\t\t- [ ] Adding New three level Indentation subTask.",
"\t\t- [ ] This is second sub-sub Task",
"\t This is an H1 heading",
"\tAdding a line here, the below tasks has been achieved. This line was added from the Modal using textArea box.",
"\t- [x] This is the Second Sub Task",
"\t\t- [x] This is the first sub-sub Task",
"\t\t- [x] This is second sub-sub Task, Updated"
],
"time": "",
"due": "2024-11-15",
"tags": [
"#Test",
"#SubTasks/🔥bugs",
"#bug"
],
"priority": 2,
"filePath": "Testing 3.md",
"completed": ""
}
],
"Testing 2.md": [
{
"id": 2648324177,
"title": "So This is to add a simple Task for testing. UPdated",
"body": [
"\tBasically with this new sessionStorage feature, i will now have to trace how the tasks are getting loaded and refreshed on the board, because with the refresh button the tasks are getting updated. But after i edit any task, or checkbox change, or anything else. The REFRESH_COLUMN command is not working properly. ",
"\tOne probable solution i can think of is, because now everything is asynchronous, thats why this shit is happening.",
"\t- [x] Trace how you code is running for the REFRESH_COLUMN command.",
"\t- [x] Accordingly update the code to get smooth refresh and not hard refresh like REFRESH_Board. Updated",
"\t\t- [ ] A sub-sub Task for the first time."
],
"time": "19:34 - 20:34",
"due": "2024-11-07",
"tags": [
"#Test",
"#bug/solver"
],
"priority": 0,
"filePath": "Testing 2.md",
"completed": ""
}
],
"Testing 1.md": [
{
"id": 2078978972,
"title": "This is a normal task, I am adding in the file, Updating",
"body": [
"\tThis a line as a description for the Task Description.",
"\t- [ ] Adding a Subtask in file manually.",
"\t- [ ] Adding a Second SubTask Manually in the file, to see if it will show up in the board automatically. No, its wont show up automatically REFRESH_COLUMN not working."
],
"time": "15:46 - 16:46",
"due": "2024-11-02",
"tags": [
"#Feat",
"#secondTag😀/fun",
"#Bug"
],
"priority": 0,
"filePath": "Testing 1.md",
"completed": ""
},
{
"id": 3008177198,
"title": "Adding a new task to encounter a different issue",
"body": [
"\t- [ ] This is a first level Sub-Task so this will going to get detected very well, without any problem.",
"\t\tThis is the body/Description of this task. This line should be bigger in size so the overall content looks good",
"\t\t- [ ] This is a Third level of SubTask I dont know anything about this.",
"\t\t\t- [ ] This is a fourth level Sub-Task, lets see what will happen with this.",
"\t\tThis is another line in the description , with one level of indentation and this line is followed by multiple bulletes :",
"\t\t- This is a bullete point in the Desc, with two levels of indentation.",
"\t\t\t- This is another line in the body with third level of indentation.",
"\t\t\t\t- This the a fourth level of indentation.",
"\t\t\t\t- This the another fourth level of indentation.",
"\t\tThis is a normal line in the Desc with two levels of indentation.",
"\t\t\tThis is a normal line in Desc with three levels of Indentation.",
"\t\t\t\tThis is a normal line in Desc with four levels of indentation. Updating"
],
"time": "",
"due": "2024-10-29",
"tags": [
"#Test",
"#Bug"
],
"priority": 0,
"filePath": "Testing 1.md",
"completed": ""
},
{
"id": 2448287804,
"title": "Adding Many tasks right after one another.",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Testing 1.md",
"completed": ""
}
],
"Spintly Details.md": [
{
"id": 2840035461,
"title": "Just a new Task without tag or date",
"body": [
"\t- [ ] Adding a new Sub Task",
"\tFirst normal line for body is added.",
"\t- Adding a bullete point in the body.",
"\tAdding one more line in Desc.",
"\t- Adding another bullete point in the description",
"\t- [ ] Adding one subTask with image: ![[UANnumber-Spintly.png]]",
"\t- [ ] Adding another subTask, second one, updaing"
],
"time": "10:30 - 11:30",
"due": "2024-11-02",
"tags": [
"#Test"
],
"priority": 0,
"filePath": "Spintly Details.md",
"completed": ""
}
],
"Pending Document Work.md": [
{
"id": 260114472,
"title": "Get 8th Semester Provisional Marksheet and Apply for :",
"body": [
"\tAll the this documents have been submitted properly, now truly believe that my joining will come very very soon.",
"\t- [x] **Provisional Degree Certificate**",
"\t- [x] **Bonafide Letter (with percentage and aggregate marks)**",
"\t- [x] **Consolidated Marksheet**",
"\t- [x] **Leaving Certificate**"
],
"time": "",
"due": "2024-11-21",
"tags": [
"#Test"
],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 1359240213,
"title": "Relieving Letter : Relieving Letter cannot be given for Internship Employees.",
"body": [
"\tThis is a line in the Desc",
"\t- There is no subTask for this task, and adding a new line in the Desc with bullete point."
],
"time": "",
"due": "",
"tags": [
"#Test"
],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 3175257680,
"title": "ID Proof : Voter ID",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 2468982829,
"title": "Copy of Person of India Origin (PIO) card : Passport",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 1629695412,
"title": "NSR eCard : [[NSR_eCard.pdf]]",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 553022716,
"title": "Passport : [[Passport.pdf]]",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 3429757382,
"title": "PAN Card : [[PanCard.pdf]]",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 1682390128,
"title": "Birth Certificate : [[BirthCertificate.pdf]]",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 1458132478,
"title": "Non-Criminal Affidavit : [[NCA_TCS.pdf]]",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 99077051,
"title": "Graduation Certificate : [[CollegeDegreeCertificate.pdf]]",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 3750889300,
"title": "Bonafied Letter : [[CollegeBonafideCertificate.pdf]]",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 3364834202,
"title": "XII Grade Certificate : [[XII_Grade_Certificate.pdf]]",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 1560712659,
"title": "XII Grade Marksheet : [[12_Marksheet.pdf]]",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 1369213584,
"title": "X Grade Certificate : [[X_Grade_Certificate.pdf]]",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 1054087966,
"title": "X Grade Mark Sheet : [[10_Marksheet.pdf]]",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 969058770,
"title": "Photo with Yellow Background : [[MyPassportPhoto.jpg]]",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 917397210,
"title": "Graduate All Semester Marksheets :",
"body": [
"\t- [x] Semester 1 : [[Semester_1_Marksheet.pdf]]",
"\t- [x] Semester 2 : [[Semester_2_Marksheet.pdf]]",
"\t- [x] Semester 3 : [[Semester_3_Marksheet.pdf]]",
"\t- [x] Semester 4 : [[Semester_4_Marksheet.pdf]]",
"\t- [x] Semester 5 : [[Semester_5_Marksheet.pdf]]",
"\t- [x] Semester 6 : [[Semester_6_Marksheet.pdf]]",
"\t- [x] Semester 7 : [[Semester_7_Marksheet.pdf]]",
"\t- [x] Semester 8 : [[Semester_8_Marksheet.pdf]]"
],
"time": "",
"due": "",
"tags": [
"#Test"
],
"priority": 1,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 1992283428,
"title": "Create new `Income Certificate` of father before joining.",
"body": [],
"time": "",
"due": "",
"tags": [
"#Note"
],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 1225919396,
"title": "Only one Recording Course is remaining of JavaOk",
"body": [
"\tNow i am removing all the points from the body and changing them into a one line sentence.",
"\t- [ ] Now i am adding this subtask, this should be updated inside the json file.",
"\t- [ ] Adding a second Subtask with image to see the preview : ![[Pasted image 20241008192305.png]]"
],
"time": "21:10 - 22:10",
"due": "2024-11-03",
"tags": [
"#Test",
"#New"
],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 4037382860,
"title": "This is a normal task to add a task and then to mark it, to get a different completion date format",
"body": [],
"time": "",
"due": "2024-11-03",
"tags": [
"#Testing"
],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
},
{
"id": 1840239082,
"title": "Adding a simple task to see if now the board refreshes with the new task added, since now i will add a new task inside task.json",
"body": [],
"time": "",
"due": "2024-10-20",
"tags": [
"#Test"
],
"priority": 0,
"filePath": "Pending Document Work.md",
"completed": ""
}
],
"Parent/Child/12-JAN-2002.md": [
{
"id": 1431215805,
"title": "Adding temp task",
"body": [
"\tAdding a line in body to see if it instantly updates in the board. That Bro.",
"\t> No, just found that after you add a fresh line and click save button, the taskItem is not refreshed, so i was not able to see the `Show Description` button.",
"\t> Also, when i updated this body, it didnt updated later.",
"\t> Adding another in the Description using the Modal.",
"\t- [ ] Adding a subTask, to see if shows up instantly in the board. > No, I didnt saw any SubTask inside the taskItem Card"
],
"time": "21:15 - 22:15",
"due": "2024-10-26",
"tags": [
"#Test",
"#feat"
],
"priority": 0,
"filePath": "Parent/Child/12-JAN-2002.md",
"completed": ""
}
],
"DocsForPlugin/Readme of CardBoard.md": [
{
"id": 4204243959,
"title": "run erands @due(2022-12-02)",
"body": [],
"time": "",
"due": "2022-12-02",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard.md",
"completed": ""
},
{
"id": 1093016459,
"title": "Task title @autocomplete(true)",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard.md",
"completed": ""
},
{
"id": 2871148234,
"title": "My task @due(2021-10-31)",
"body": [],
"time": "",
"due": "2021-10-31",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard.md",
"completed": ""
},
{
"id": 991854159,
"title": "My task [due:: 2021-10-31]",
"body": [],
"time": "",
"due": "2021-10-31",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard.md",
"completed": ""
},
{
"id": 1149144402,
"title": "My task 📅 2021-10-31",
"body": [],
"time": "",
"due": "2021-10-31",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard.md",
"completed": ""
},
{
"id": 301376068,
"title": "My task @due(none)",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard.md",
"completed": ""
},
{
"id": 1118076995,
"title": "this task will automatically have the recipe and cooking tags",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard.md",
"completed": ""
}
],
"DocsForPlugin/Readme of CardBoard-HTML.md": [
{
"id": 1590469336,
"title": "My task [due:: 2021-10-31]",
"body": [],
"time": "",
"due": "2024-10-04",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard-HTML.md",
"completed": ""
},
{
"id": 3403937644,
"title": "run erands @due(2022-12-02)",
"body": [],
"time": "",
"due": "2022-12-02",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard-HTML.md",
"completed": ""
},
{
"id": 3909503175,
"title": "Task title @autocomplete(true)",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard-HTML.md",
"completed": ""
},
{
"id": 2868317047,
"title": "My task @due(2021-10-31)",
"body": [],
"time": "",
"due": "2021-10-31",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard-HTML.md",
"completed": ""
},
{
"id": 3641785018,
"title": "My task [due:: 2021-10-31]",
"body": [],
"time": "",
"due": "2021-10-31",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard-HTML.md",
"completed": ""
},
{
"id": 2231261596,
"title": "My task 📅 2021-10-31",
"body": [],
"time": "",
"due": "2021-10-31",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard-HTML.md",
"completed": ""
},
{
"id": 3384509476,
"title": "My task @due(none)",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard-HTML.md",
"completed": ""
},
{
"id": 3144475353,
"title": "this task will automatically have the recipe and cooking tags",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard-HTML.md",
"completed": ""
}
],
"DocsForPlugin/Readme of CardBoard - Archived.md": [
{
"id": 3605640628,
"title": "run erands @due(2022-12-02)",
"body": [],
"time": "",
"due": "2022-12-02",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard - Archived.md",
"completed": ""
},
{
"id": 2955076921,
"title": "Task title @autocomplete(true)",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard - Archived.md",
"completed": ""
},
{
"id": 1269187712,
"title": "My task @due(2021-10-31)",
"body": [],
"time": "",
"due": "2021-10-31",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard - Archived.md",
"completed": ""
},
{
"id": 1394765389,
"title": "My task [due:: 2021-10-31]",
"body": [],
"time": "",
"due": "2021-10-31",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard - Archived.md",
"completed": ""
},
{
"id": 1254535183,
"title": "My task 📅 2021-10-31",
"body": [],
"time": "",
"due": "2021-10-31",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard - Archived.md",
"completed": ""
},
{
"id": 1527229560,
"title": "My task @due(none)",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard - Archived.md",
"completed": ""
},
{
"id": 1544069651,
"title": "this task will automatically have the recipe and cooking tags",
"body": [],
"time": "",
"due": "",
"tags": [],
"priority": 0,
"filePath": "DocsForPlugin/Readme of CardBoard - Archived.md",
"completed": ""
}
],
"Daily_Notes/30-09-2024.md": [
{
"id": 338169406,
"title": "This is a task, and this is very bad way since the board is getting refreshed but it is refreshing the whole shit.",
"body": [],
"time": "",
"due": "2024-09-30",
"tags": [
"#RealTime"
],
"priority": 0,
"filePath": "Daily_Notes/30-09-2024.md",
"completed": ""
},
{
"id": 2577313840,
"title": "Now after this board is updated only the file will be contineously scanned in the background and its tasks will be scanned. But user will have to refresh the board manually by himself for this version.",
"body": [
"\tAdding a body line, updating. more updating.",
"\tAnd for those who dont want their cpu to keep running at 20% all the time when i am doing the simplest thing that is typing then they can directly disable this feature, the best way .",
"\t- [ ] Alright now the refreshing should look faster, since removed the sleep, but no, still seeing equal amount of delay."
],
"time": "",
"due": "2024-10-11",
"tags": [],
"priority": 0,
"filePath": "Daily_Notes/30-09-2024.md",
"completed": ""
}
],
"Daily_Notes/28-09-2024.md": [
{
"id": 2812270657,
"title": "This is a new task with due date with the format of dataview. Updating",
"body": [],
"time": "",
"due": "2024-09-28",
"tags": [
"#Test"
],
"priority": 0,
"filePath": "Daily_Notes/28-09-2024.md",
"completed": ""
}
],
"Daily_Notes/25-08-2024.md": [
{
"id": 3780868572,
"title": "Cut Nails",
"body": [],
"time": "10:00 - 11:00",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Daily_Notes/25-08-2024.md",
"completed": ""
}
],
"Daily_Notes/24-09-2024.md": [
{
"id": 2136599136,
"title": "This is a simple task with random note, but this doesnt have either a body nor subtasks. But the problem is this has a tab on the immediate next line.",
"body": [
"\tNo tab doesnt come on the next line now anymore."
],
"time": "17:08 - 18:08",
"due": "2024-10-04",
"tags": [
"#Testing"
],
"priority": 0,
"filePath": "Daily_Notes/24-09-2024.md",
"completed": ""
},
{
"id": 190016330,
"title": "Adding a Task to see if this task dont have body and only have the subtasks, then there shouldnt be any empty line between Main task and SubTasks.",
"body": [],
"time": "17:51 - 18:51",
"due": "2024-11-06",
"tags": [
"#Error"
],
"priority": 0,
"filePath": "Daily_Notes/24-09-2024.md",
"completed": ""
},
{
"id": 2201001588,
"title": "Now please dont come empty line between title and subtasks, removing body",
"body": [
"\tFirst adding a body so i can delete this complete task to test delete functionality",
"\t- [ ] First sub task",
"\t- [ ] Second tasks"
],
"time": "22:35 - 23:35",
"due": "2024-10-03",
"tags": [
"#Working"
],
"priority": 0,
"filePath": "Daily_Notes/24-09-2024.md",
"completed": ""
}
],
"Daily_Notes/24-08-2024.md": [
{
"id": 2466196605,
"title": "Completed Three Hand-on Courses",
"body": [],
"time": "11:00 - 13:30",
"due": "",
"tags": [],
"priority": 0,
"filePath": "Daily_Notes/24-08-2024.md",
"completed": ""
}
],
"Daily_Notes/23-09-2024.md": [
{
"id": 1081991810,
"title": "Now for sure there wont be any empty line between title and subtasks",
"body": [
"\t- [ ] This is first subtask"
],
"time": "23:37 - 24:37",
"due": "2024-10-03",
"tags": [],
"priority": 0,
"filePath": "Daily_Notes/23-09-2024.md",
"completed": ""
}
],
"Daily_Notes/23-08-2024.md": [
{
"id": 1539428961,
"title": "Learn the questions that will come for tomorrows Hackathon ⏳ 2024-08-24",
"body": [],
"time": "11:00 - 12:00",
"due": "2024-10-31",
"tags": [],
"priority": 0,
"filePath": "Daily_Notes/23-08-2024.md",
"completed": ""
}
],
"Daily_Notes/22-09-2024.md": [
{
"id": 1247941907,
"title": "Adding task from command to see if the taskboard refreshes now",
"body": [],
"time": "16:17 - 17:17",
"due": "2024-10-24",
"tags": [
"#Testing"
],
"priority": 0,
"filePath": "Daily_Notes/22-09-2024.md",
"completed": ""
},
{
"id": 1742356239,
"title": "A tempararory new task",
"body": [
"\tJust updating the body.",
"\t- Adding one bullete line in body.",
"\t- [ ] Just adding a simple new subTask to see if first all the boards are getting empty."
],
"time": "20:45 - 21:45",
"due": "2024-10-18",
"tags": [
"#Test"
],
"priority": 0,
"filePath": "Daily_Notes/22-09-2024.md",
"completed": ""
},
{
"id": 2137781742,
"title": "This is a main Task, updating, Updating more",
"body": [
"\tThis is a body i am going to replace all the three bullete lines with this one sentence, because i think usually people will going to simply add a one sentence for the body or maybe bullete points also.",
"\t- How this will look like in the TaskItem Card on board.",
"\t- [ ] This is a second sub-task of the main task and so on other tasks.",
"\t- [ ] Adding a third sub task",
"\t- [ ] Forth task, ill add more",
"\t- [ ] Fifth task"
],
"time": "20:00 - 21:00",
"due": "2024-10-18",
"tags": [
"#Tested"
],
"priority": 0,
"filePath": "Daily_Notes/22-09-2024.md",
"completed": ""
}
],
"Daily_Notes/22-08-2024.md": [
{
"id": 2307906820,
"title": "Give a shot to Java Hackathon ➕ 2024-08-22",
"body": [],
"time": "17:00 - 18:00",
"due": "2024-10-17",
"tags": [],
"priority": 0,
"filePath": "Daily_Notes/22-08-2024.md",
"completed": ""
}
],
"Daily_Notes/21-09-2024.md": [
{
"id": 1526330533,
"title": "Adding random task for today to see how the board updates.",
"body": [
"\tAdding body to this task from file itself not using any Modal. So, now when this file will be scanned, it will first get detected as well as, the whole board should re-render. updating more...",
"\t- [ ] Changing the complete content of the subTask, updating",
"\t- [ ] Adding another subTask, Second"
],
"time": "12:02 - 13:02",
"due": "2024-09-29",
"tags": [
"#Testing"
],
"priority": 0,
"filePath": "Daily_Notes/21-09-2024.md",
"completed": ""
}
],
"Daily_Notes/2024-10-27.md": [
{
"id": 3431019508,
"title": "Adding a new task",
"body": [],
"time": "",
"due": "",
"tags": [
"#Test"
],
"priority": 0,
"filePath": "Daily_Notes/2024-10-27.md",
"completed": ""
}
],
"Daily_Notes/2024-10-10.md": [
{
"id": 1973043721,
"title": "Adding a new task, to see if everything works fine",
"body": [
"\tJust a simple line in body",
"\t- [ ] Adding a simple SubTask- [ ] 20:10 - 21:10 This is a new Task I am adding from the Combined Modal. | @due(2024-10-14) 🔼 #Test",
"\tI will be adding all the fields.",
"\t- This is a bullete point in the Description.",