forked from albertfares/CommitGrader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtraining_data.json
More file actions
10507 lines (10507 loc) · 314 KB
/
training_data.json
File metadata and controls
10507 lines (10507 loc) · 314 KB
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
[
{
"commit_message": "Added signature check files",
"grade": 2
},
{
"commit_message": "fetch list of todos from database and display in overview section",
"grade": 3
},
{
"commit_message": "formatted using ktfmt",
"grade": 3
},
{
"commit_message": "update error handling that is deprecated and other random fixes that might be useful",
"grade": 2
},
{
"commit_message": "add time for 'build an apk' part of first milestone",
"grade": 2
},
{
"commit_message": "Try merge Maps file",
"grade": 0
},
{
"commit_message": "create empty files needed before the navigation implementation",
"grade": 2
},
{
"commit_message": "implement ToDosRepositoryFirestore with Firestore integration",
"grade": 3
},
{
"commit_message": "fix display of task",
"grade": 2
},
{
"commit_message": "Fix format",
"grade": 1
},
{
"commit_message": "Improve performance for payment gateway integration",
"grade": 3
},
{
"commit_message": "Add Test files",
"grade": 2
},
{
"commit_message": "Remove documentation to improve database query performance",
"grade": 3
},
{
"commit_message": "Implement EditToDo functionality and modify related components",
"grade": 3
},
{
"commit_message": "wrong format date unaccepted",
"grade": 1
},
{
"commit_message": "Fix for com.github.se.bootcamp.model.todo.ListToDosViewModelTest > addToDoCallsRepository FAILED",
"grade": 2
},
{
"commit_message": "tweak calls to firestore database while adding a ToDo to match test expectations",
"grade": 2
},
{
"commit_message": "End-to-End test for Milestone 2",
"grade": 2
},
{
"commit_message": "Quick patch",
"grade": 0
},
{
"commit_message": "introduce logging for production debugging",
"grade": 3
},
{
"commit_message": "reformat Location for improved readability",
"grade": 3
},
{
"commit_message": "update error handling to enhance user experience",
"grade": 2
},
{
"commit_message": "Fix settings to enhance user experience",
"grade": 2
},
{
"commit_message": "Update the task timetable for Milestone B1",
"grade": 3
},
{
"commit_message": "add ability to create a ToDo",
"grade": 3
},
{
"commit_message": "refactored logging that is deprecated which does multiple things and also includes some irrelevant changes.",
"grade": 1
},
{
"commit_message": "add ui tests for todo editing",
"grade": 3
},
{
"commit_message": "improve performance for production debugging to improve a very specific edge case and much more",
"grade": 2
},
{
"commit_message": "implement function to add ToDo",
"grade": 3
},
{
"commit_message": "Update component causing timeout error",
"grade": 3
},
{
"commit_message": "Fix logging in settings configuration",
"grade": 3
},
{
"commit_message": "optimize documentation for payment gateway integration to improve a very specific edge case and much more",
"grade": 3
},
{
"commit_message": "Implement AddToDo with database and navigation still need to abstract logic code more later",
"grade": 3
},
{
"commit_message": "correct ToDoStatus enum and call of OverviewScreen",
"grade": 3
},
{
"commit_message": "add documentation for production debugging",
"grade": 3
},
{
"commit_message": "add tests for the EditToDo screen",
"grade": 3
},
{
"commit_message": "Fix formatting for repository",
"grade": 2
},
{
"commit_message": "fix todostatus button",
"grade": 3
},
{
"commit_message": "Reformat code",
"grade": 1
},
{
"commit_message": "update ListToDosViewModel.kt to have the correct signature",
"grade": 3
},
{
"commit_message": "introduce error handling to enhance user experience which does multiple things and also includes some irrelevant changes.",
"grade": 1
},
{
"commit_message": "update settings for user input validation",
"grade": 3
},
{
"commit_message": "B2 formatted",
"grade": 0
},
{
"commit_message": "Create the content of the add todo file. Update the deliverable.md.",
"grade": 2
},
{
"commit_message": "implement and test B2 deliverable with all functionalities working as expected",
"grade": 3
},
{
"commit_message": "Add missing files",
"grade": 1
},
{
"commit_message": "Remove documentation for user input validation",
"grade": 3
},
{
"commit_message": "fix bug to improve database query performance",
"grade": 3
},
{
"commit_message": "Fix logging for payment gateway integration",
"grade": 3
},
{
"commit_message": "implement firestore repository for ToDos",
"grade": 2
},
{
"commit_message": "reformat code",
"grade": 1
},
{
"commit_message": "Add a test tag to the BottomNavigationItem",
"grade": 2
},
{
"commit_message": "remove bug for payment gateway integration",
"grade": 3
},
{
"commit_message": "finish create a to-do TODO: fix the one navigation test that is not passing",
"grade": 1
},
{
"commit_message": "fix screen changing back when saving invalid todo",
"grade": 3
},
{
"commit_message": "introduce error handling to enhance user experience which does multiple things and also includes some irrelevant changes.",
"grade": 1
},
{
"commit_message": "clean code up and apply ktfmt formatting",
"grade": 3
},
{
"commit_message": "Navigation between views (map, overview and add to do)",
"grade": 2
},
{
"commit_message": "Update OverviewScreen for EditToDo navigation",
"grade": 2
},
{
"commit_message": "add topBar",
"grade": 2
},
{
"commit_message": "add ToDo data class and ToDoStatus enum class",
"grade": 3
},
{
"commit_message": "enhance performance to improve firebase query performance",
"grade": 3
},
{
"commit_message": "make SignInTest pass again",
"grade": 2
},
{
"commit_message": "add sigcheck edit to do",
"grade": 2
},
{
"commit_message": "Implement create ToDo user story but need test",
"grade": 2
},
{
"commit_message": "add app/src/main/java/com/github/se/bootcamp/MainActivity.kt",
"grade": 2
},
{
"commit_message": "Add missing EDIT_TODO Screen",
"grade": 2
},
{
"commit_message": "Fix location not accessible from view",
"grade": 2
},
{
"commit_message": "change settings that are deprecated",
"grade": 3
},
{
"commit_message": "fix logging for user input validation",
"grade": 3
},
{
"commit_message": "B2 Submit",
"grade": 0
},
{
"commit_message": "add MapScreen with Google Maps integration",
"grade": 3
},
{
"commit_message": "correct crash on google authentication failure",
"grade": 3
},
{
"commit_message": "test feature for payment gateway integration which does multiple things and also includes some irrelevant changes.",
"grade": 2
},
{
"commit_message": "Commit to pull",
"grade": 0
},
{
"commit_message": "Optimize settings to improve firebase query performance",
"grade": 3
},
{
"commit_message": "Add AddToDo screen and integrate navigation",
"grade": 3
},
{
"commit_message": "fix format errors",
"grade": 1
},
{
"commit_message": "fix settings for production debugging",
"grade": 2
},
{
"commit_message": "remove functionality for faster page rendering to improve a very specific edge case and much more",
"grade": 2
},
{
"commit_message": "Make some progress on navigation, unfinished",
"grade": 1
},
{
"commit_message": "Clean MainActivity file",
"grade": 1
},
{
"commit_message": "init issue",
"grade": 2
},
{
"commit_message": "Fix ListToDOs",
"grade": 1
},
{
"commit_message": "implement navigation system with simple screens",
"grade": 3
},
{
"commit_message": "add tests",
"grade": 2
},
{
"commit_message": "paste missing firestore repository test from docs/ to src/",
"grade": 2
},
{
"commit_message": "Implement 2-AddAToDo Implement navigation, Create the repository interface, Implement the firestore repository, Create the ViewMode, Create a ToDo Screen",
"grade": 2
},
{
"commit_message": "Create basic navigation logic",
"grade": 3
},
{
"commit_message": "add sigchecks and fix sigcheck error for Add ToDo user story",
"grade": 3
},
{
"commit_message": "add tests",
"grade": 1
},
{
"commit_message": "added navigation actions",
"grade": 2
},
{
"commit_message": "add edit feature for todos",
"grade": 3
},
{
"commit_message": "completed first phase of B2: - As a user, I want to create a new ToDo, so that I can add new tasks to my list",
"grade": 2
},
{
"commit_message": "add ability to edit existing to-dos",
"grade": 3
},
{
"commit_message": "implement overview task",
"grade": 2
},
{
"commit_message": "Deplace SignInScreen Composable in his own directory",
"grade": 1
},
{
"commit_message": "add sigchecks",
"grade": 2
},
{
"commit_message": "remove documentation for user input validation which does multiple things and also includes some irrelevant changes.",
"grade": 1
},
{
"commit_message": "introduce functionality to improve firebase query performance",
"grade": 3
},
{
"commit_message": "fix code format",
"grade": 1
},
{
"commit_message": "Add component for faster page rendering",
"grade": 2
},
{
"commit_message": "make the list of todos state flow update correctly",
"grade": 3
},
{
"commit_message": "Remove init call ListToDosViewModel to pass intermediate tests",
"grade": 2
},
{
"commit_message": "fix merging conflicts",
"grade": 1
},
{
"commit_message": "Removed any mention of Firebase in this abstract VM",
"grade": 2
},
{
"commit_message": "additionnal ktfmtFormat for the CI tests to pass",
"grade": 3
},
{
"commit_message": "add navigation to MainActivity",
"grade": 3
},
{
"commit_message": "Add unit test for ListToDosViewModel",
"grade": 3
},
{
"commit_message": "mark task complete and update spent time",
"grade": 2
},
{
"commit_message": "Run ktfmt",
"grade": 2
},
{
"commit_message": "format Greeting.kt using ktfmt",
"grade": 3
},
{
"commit_message": "Implement the Create a ToDo user story: includes navigation + create a todo feature which dynamically connects and interacts with firebase using the MVVM architecture",
"grade": 2
},
{
"commit_message": "Correct navigation actions in MainActivity",
"grade": 3
},
{
"commit_message": "change onSucess ofthe ToDoViewModel",
"grade": 2
},
{
"commit_message": "remove settings with installation instructions and other random fixes that might be useful to improve a very specific edge case and much more",
"grade": 1
},
{
"commit_message": "update to use onSuccessListener",
"grade": 2
},
{
"commit_message": "gradle ktfmt to catch misses",
"grade": 2
},
{
"commit_message": "Bronze Bootcamp M",
"grade": 0
},
{
"commit_message": "remove component to improve firebase query performance",
"grade": 3
},
{
"commit_message": "complete the AddToDo screen",
"grade": 3
},
{
"commit_message": "Corrected title (capitalized \"Task\")",
"grade": 2
},
{
"commit_message": "base files created",
"grade": 2
},
{
"commit_message": "Create a ToDo user story",
"grade": 3
},
{
"commit_message": "Add Overview.kt and AddToDo.kt",
"grade": 2
},
{
"commit_message": "ran ktfmtFormat on the whole project",
"grade": 3
},
{
"commit_message": "Define a bottom navigation menu",
"grade": 3
},
{
"commit_message": "fix logging to improve database query performance and other random fixes that might be useful to improve a very specific edge case and much more",
"grade": 1
},
{
"commit_message": "Reformat code",
"grade": 1
},
{
"commit_message": "added list view",
"grade": 2
},
{
"commit_message": "Refactor feature that is deprecated",
"grade": 2
},
{
"commit_message": "Improved something",
"grade": 0
},
{
"commit_message": "unused paddingValues error",
"grade": 0
},
{
"commit_message": "Implement Add To Do in the route OverView with the View model",
"grade": 3
},
{
"commit_message": "Add view model for list of ToDos",
"grade": 3
},
{
"commit_message": "implement Firestore functionality in ToDosRepository",
"grade": 3
},
{
"commit_message": "validate and implement to-do creation functionality",
"grade": 3
},
{
"commit_message": "Improve module causing timeout error",
"grade": 2
},
{
"commit_message": "finish milestone 1 by adding bottom navigation and floating button",
"grade": 3
},
{
"commit_message": "change location variable type from String to Location",
"grade": 3
},
{
"commit_message": "Reformat viewmodel code with ktfmt format",
"grade": 3
},
{
"commit_message": "add initial structure for screen navigation",
"grade": 3
},
{
"commit_message": "Got all tests for B1 and ADD_TODO to pass",
"grade": 2
},
{
"commit_message": "introduce error handling that is deprecated and other random fixes that might be useful to improve a very specific edge case and much more",
"grade": 2
},
{
"commit_message": "add ListToDosViewModel (to be completed)",
"grade": 2
},
{
"commit_message": "Add Overview screen test file + signature checks file",
"grade": 3
},
{
"commit_message": "Correct SignIn with the deliverable",
"grade": 1
},
{
"commit_message": "implement the Overview screen for current ToDos",
"grade": 3
},
{
"commit_message": "add beginning of code for overview screen",
"grade": 3
},
{
"commit_message": "refactor documentation for payment gateway integration",
"grade": 3
},
{
"commit_message": "Update B1 with solution",
"grade": 2
},
{
"commit_message": "add OverviewScreenTest for UI validation",
"grade": 3
},
{
"commit_message": "authentication",
"grade": 2
},
{
"commit_message": "add unit tests",
"grade": 2
},
{
"commit_message": "update app/build.gradle.kts",
"grade": 1
},
{
"commit_message": "introduce feature for faster page rendering which does multiple things and also includes some irrelevant changes.",
"grade": 1
},
{
"commit_message": "refactor error handling for better readability",
"grade": 3
},
{
"commit_message": "optimize component for payment gateway integration and other random fixes that might be useful to improve a very specific edge case and much more",
"grade": 2
},
{
"commit_message": "Move Files to designated directories",
"grade": 2
},
{
"commit_message": "Fix the AddToDo as it was crashing the app when adding a todo and Fix the ToDoRepositoryFirestore as it was crashing the app when Sign in",
"grade": 1
},
{
"commit_message": "Add Overview Add-ToDo and Edit-ToDo interfaces and screens",
"grade": 3
},
{
"commit_message": "Add temporary map screen to test bottom bar navigation actions",
"grade": 3
},
{
"commit_message": "test logging to enhance user experience to improve a very specific edge case and much more",
"grade": 2
},
{
"commit_message": "start to implement the model",
"grade": 2
},
{
"commit_message": "refactor error handling for production debugging",
"grade": 2
},
{
"commit_message": "reformat code in SignIn for better readability",
"grade": 3
},
{
"commit_message": "add new dependencies",
"grade": 1
},
{
"commit_message": "update milestones for B2 in Deliverables",
"grade": 2
},
{
"commit_message": "move and rename LoginScreen.kt to authentication/SignIn.kt",
"grade": 3
},
{
"commit_message": "Create BottomNavigationMenu for tab navigation",
"grade": 3
},
{
"commit_message": "Remove module with installation instructions",
"grade": 3
},
{
"commit_message": "Update Overview.kt, AddtoDo.kt, NavigationActions.kt, MainActivity.kt",
"grade": 1
},
{
"commit_message": "introduce functionality with installation instructions and other random fixes that might be useful to improve a very specific edge case and much more",
"grade": 2
},
{
"commit_message": "fix error displaying addToDoScreen",
"grade": 2
},
{
"commit_message": "Document documentation for faster page rendering",
"grade": 1
},
{
"commit_message": "Format code",
"grade": 1
},
{
"commit_message": "Prepare for EditTodo User story",
"grade": 2
},
{
"commit_message": "add useful class extensions",
"grade": 2
},
{
"commit_message": "add EditToDo file for editing existing to-dos",
"grade": 3
},
{
"commit_message": "Run ktfmt format + optimized imports",
"grade": 2
},
{
"commit_message": "Fix Cloud Firestore error caused by sign in",
"grade": 3
},
{
"commit_message": "Correct SignIn with the deliverable",
"grade": 1
},
{
"commit_message": "Add testTags to items",
"grade": 3
},
{
"commit_message": "Modularising utils function in AddToDo",
"grade": 2
},
{
"commit_message": "add of new files BottomNavigationMenu and NavigationActions",
"grade": 2
},
{
"commit_message": "manage state for EditToDoScreen",
"grade": 2
},
{
"commit_message": "Make some progress on navigation, unfinished",
"grade": 1
},
{
"commit_message": "replace B1 solution with navigation",
"grade": 2
},
{
"commit_message": "Add directory with installation instructions",
"grade": 3
},
{
"commit_message": "update signIn implementation with solution code",
"grade": 2
},
{
"commit_message": "Implement navigation between Map, Overview, and AddtoDo and Implement the Firestore Repository",
"grade": 2
},
{
"commit_message": "fix test tag name",
"grade": 3
},
{
"commit_message": "add ListToDosViewModel interaction with rest of app",
"grade": 3
},
{
"commit_message": "Fix the return button not returning to the last screen",
"grade": 3
},
{
"commit_message": "implement the navigation fonctionnality",
"grade": 2
},
{
"commit_message": "Edit SignIn.kt for navigation",
"grade": 2
},
{
"commit_message": "fix CI and tests problems",
"grade": 1
},
{
"commit_message": "Introduce documentation causing timeout error",
"grade": 0
},
{
"commit_message": "added performance causing timeout error which does multiple things and also includes some irrelevant changes.",
"grade": 1
},
{
"commit_message": "Fix sigcheck",
"grade": 1
},
{
"commit_message": "Test Create a ToDo and Clean code",
"grade": 2
},
{
"commit_message": "move Sign-In UI to correct place",
"grade": 3
},
{
"commit_message": "improve logging for easier production debugging",
"grade": 3
},
{
"commit_message": "add floatingActionButton",
"grade": 2
},
{
"commit_message": "improved format",
"grade": 2
},
{
"commit_message": "move login tests file",
"grade": 2
},
{
"commit_message": "introduce documentation for production debugging and other random fixes that might be useful to improve a very specific edge case and much more",
"grade": 2
},
{
"commit_message": "add app/src/main/java/com/github/se/bootcamp/ui/overview/Overview.kt",
"grade": 2
},
{
"commit_message": "Miscellaneous changes",
"grade": 0
},
{
"commit_message": "remove documentation for user input validation which does multiple things and also includes some irrelevant changes.",
"grade": 1
},
{
"commit_message": "Add tests for EditToDoScreen",
"grade": 3
},
{
"commit_message": "create overview directory then create Overview and AddToDo files in it.",
"grade": 3
},
{
"commit_message": "update import in ToDo.kt to use custom Location class",
"grade": 3
},
{
"commit_message": "reformat code",
"grade": 1
},
{
"commit_message": "aesthetic fix of delete button",
"grade": 3
},
{
"commit_message": "define Location data class",
"grade": 3
},
{
"commit_message": "Add SignInScreen to BottomNavigationMenu",
"grade": 3
},
{
"commit_message": "add comment",
"grade": 1
},
{
"commit_message": "add screen to add todo",
"grade": 2
},
{
"commit_message": "add sigchecks for overview",
"grade": 3
},
{
"commit_message": "Fix the AddToDo as it was crashing the app when adding a todo and Fix the ToDoRepositoryFirestore as it was crashing the app when Sign in",
"grade": 1
},
{
"commit_message": "update ListToDosViewModel to use CoroutineDispatcher",
"grade": 3
},
{
"commit_message": "add of new composables Map, AddToDo and Overview",
"grade": 2
},
{
"commit_message": "reformat code",
"grade": 1
},
{
"commit_message": "Remove performance with installation instructions which does multiple things and also includes some irrelevant changes.",
"grade": 2
},
{
"commit_message": "fix the toDosRepositoryFirestore to pass Login test",
"grade": 2
},
{
"commit_message": "Replace the B1 part by the solition provided",
"grade": 2
},
{
"commit_message": "finish navigation and put arrow in AddToDo",
"grade": 2
},
{
"commit_message": "test performance that is deprecated",
"grade": 0
},
{
"commit_message": "Complete creation, edition and listing of ToDo",
"grade": 3
},
{
"commit_message": "implement function to edit ToDo",
"grade": 3
},
{
"commit_message": "correct init method in ToDosRepositoryFirestore to resolve loginTest crash",
"grade": 3
},
{
"commit_message": "fix the navigation",
"grade": 2
},
{
"commit_message": "view of tasks",
"grade": 1
},
{
"commit_message": "Come back to conflicting names for tests to pass",
"grade": 1
},
{
"commit_message": "Update BottomNavigationMenu and enhance OverviewScreen",
"grade": 2
},
{
"commit_message": "Use a FirebaseAuth and check if the user is logged in",
"grade": 2
},
{
"commit_message": "implement the location for a todo",
"grade": 3
},
{
"commit_message": "Run ktfmtFormat",
"grade": 3
},
{
"commit_message": "gradle format",
"grade": 1
},
{
"commit_message": "add documentation causing timeout error",
"grade": 0
},
{
"commit_message": "Add navigation menu",
"grade": 3
},
{
"commit_message": "implement first version of the navigation system",
"grade": 2
},
{
"commit_message": "Add functional todo list.",
"grade": 2
},
{
"commit_message": "milestone-B2 branch into main",
"grade": 2
},
{
"commit_message": "add image icons for bottom menu navigation bar",
"grade": 3
},
{
"commit_message": "Implement navigation and ToDo creation/edit functionality",
"grade": 3
},
{
"commit_message": "modify visual elements to be centered and add test tags",
"grade": 3
},
{
"commit_message": "Add try-catch blocks to handle exceptions",
"grade": 2
},
{
"commit_message": "add the basic setup for navigation",
"grade": 2