-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommits.txt
3264 lines (3263 loc) · 137 KB
/
commits.txt
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 efd678d5fd0704dce921199ce8c201c184dda7b7 (HEAD -> main, origin/main)
|\ Merge: 263c4d3 c738c61
| | Author: Jack Sun <[email protected]>
| | Date: Mon May 22 11:38:43 2023 +0800
| |
| | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP
| |
| * commit c738c61ef35fb3191a622822a2e6b35f4f6e56a2
| | Author: bobojeager <[email protected]>
| | Date: Mon May 22 11:33:26 2023 +0800
| |
| | added project overview
| |
| * commit 1d64e79068d03a00fdfb5d4a5819a062d75118f3
| |\ Merge: 17a1bfb a9d8812
| | | Author: bobojeager <[email protected]>
| | | Date: Mon May 22 11:31:30 2023 +0800
| | |
| | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP
| | |
| * | commit 17a1bfb24c9ffa889f134e98336f5923a5811639
| | | Author: bobojeager <[email protected]>
| | | Date: Mon May 22 11:30:49 2023 +0800
| | |
| | | added project overview
| | |
* | | commit 263c4d35f4a217c8e14c7b25f4c67fb92af25f99
| |/ Author: Jack Sun <[email protected]>
|/| Date: Mon May 22 11:38:21 2023 +0800
| |
| | fix timezone
| |
* | commit a9d881212ac5d5400fa01665dc8c34b1f6bdaa8b
| | Author: Jack Sun <[email protected]>
| | Date: Mon May 22 11:27:04 2023 +0800
| |
| | remove new tab
| |
* | commit 26713af001a2b7de2a7f4cdbb72f4006eb7d164e
| | Author: Jack Sun <[email protected]>
| | Date: Mon May 22 11:24:29 2023 +0800
| |
| | format
| |
* | commit f0e9489b25cbd23c80188848871385d35ce2c133
|\ \ Merge: 07b53ab b3acfda
| | | Author: jsun1590 <[email protected]>
| | | Date: Mon May 22 11:22:24 2023 +0800
| | |
| | | Merge pull request #44 from Agile-Web-Dev/migrations
| | |
| | | Migrations
| | |
| * | commit b3acfda15e45107beb6603d451960adb8af2e035 (origin/migrations, migrations)
| | | Author: Jack Sun <[email protected]>
| | | Date: Mon May 22 11:20:42 2023 +0800
| | |
| | | timezone fix
| | |
| * | commit e6b72e36cbe4c508127d682bcdc841c4f4a625fc
| | | Author: Jack Sun <[email protected]>
| | | Date: Mon May 22 11:16:45 2023 +0800
| | |
| | | update migrations
| | |
* | | commit 07b53abc80af8e4d0cf209be839e298ce4f40363
|\ \ \ Merge: 705fdd3 079261f
| |_|/ Author: Dylan To <[email protected]>
|/| | Date: Mon May 22 11:20:35 2023 +0800
| | |
| | | Merge pull request #41 from Agile-Web-Dev/mobile-sidebar
| | |
| | | Mobile sidebar
| | |
| * | commit 079261f3bf02b1f0f24810b74c59b92beb5c0a67
| | | Author: Dylan To <[email protected]>
| | | Date: Mon May 22 11:19:38 2023 +0800
| | |
| | | Increase breakpoint, remove header responsiveness
| | |
| * | commit 99478317b54ceffcfcc3b3983cfde53baf324df2 (origin/mobile-sidebar, mobile-sidebar)
| |\ \ Merge: d890814 756d82d
| | | | Author: Jack Sun <[email protected]>
| | | | Date: Mon May 22 10:03:34 2023 +0800
| | | |
| | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into mobile-sidebar
| | | |
| * | | commit d89081476c33af833d1d40aef974a814f6757960
| |\ \ \ Merge: a920a97 8c9d032
| | | | | Author: Jack Sun <[email protected]>
| | | | | Date: Mon May 22 09:36:28 2023 +0800
| | | | |
| | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into mobile-sidebar
| | | | |
| * | | | commit a920a97b09bbe0e829f5e2307fbac4612770a368
| |\ \ \ \ Merge: 354b826 9a37641
| | | | | | Author: Dylan To <[email protected]>
| | | | | | Date: Mon May 22 01:47:49 2023 +0800
| | | | | |
| | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into mobile-sidebar
| | | | | |
| * | | | | commit 354b826d2e6f214e97c97afcb9b3ec21fe403d9e
| |\ \ \ \ \ Merge: 8116e54 9d7ca7d
| | | | | | | Author: Dylan To <[email protected]>
| | | | | | | Date: Mon May 22 00:54:25 2023 +0800
| | | | | | |
| | | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into mobile-sidebar
| | | | | | |
| * | | | | | commit 8116e54cf972ff5370dd0914ec013a1833c68d0f
| | | | | | | Author: Dylan To <[email protected]>
| | | | | | | Date: Mon May 22 00:48:26 2023 +0800
| | | | | | |
| | | | | | | FIx sttyling
| | | | | | |
| * | | | | | commit e07c41332839a60db03279d5deaa218cb77701aa
| |\ \ \ \ \ \ Merge: 9c649a5 ebcca65
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Mon May 22 00:48:19 2023 +0800
| | | | | | | |
| | | | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into mobile-sidebar
| | | | | | | |
| * | | | | | | commit 9c649a5f1e27da6da254ac2e3d3c0f2f2a619913
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Mon May 22 00:38:43 2023 +0800
| | | | | | | |
| | | | | | | | Sidebar drawers
| | | | | | | |
| * | | | | | | commit 7115aa525f7657619b8870c81be4850ad3203745
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Sun May 21 21:54:06 2023 +0800
| | | | | | | |
| | | | | | | | Fix notebar responsiveness
| | | | | | | |
| * | | | | | | commit 49c7e9970f35a43e735d2e0841d96b4a75277d88
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Sun May 21 21:16:44 2023 +0800
| | | | | | | |
| | | | | | | | Increase e2e timeout
| | | | | | | |
| * | | | | | | commit 21c94feabc37d7d0718a3ebc3a29d171a935f136
| |\ \ \ \ \ \ \ Merge: 338d1e2 48274f3
| | | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | | Date: Sun May 21 21:14:12 2023 +0800
| | | | | | | | |
| | | | | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into mobile-sidebar
| | | | | | | | |
| * | | | | | | | commit 338d1e2f9847a324c03d08ad6bab6e1a91cf831e
| |\ \ \ \ \ \ \ \ Merge: 5257be5 3920b71
| | | | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | | | Date: Sun May 21 17:03:48 2023 +0800
| | | | | | | | | |
| | | | | | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into mobile-sidebar
| | | | | | | | | |
| * | | | | | | | | commit 5257be50e5761ad2035518966dadbe68f9804dcf
| | | | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | | | Date: Sun May 21 01:08:49 2023 +0800
| | | | | | | | | |
| | | | | | | | | | Working left-drawer
| | | | | | | | | |
* | | | | | | | | | commit 705fdd35d55945a0bdfe16fdf427f8cf20e19967
| |_|_|_|_|_|_|_|/ Author: bobojeager <[email protected]>
|/| | | | | | | | Date: Mon May 22 11:08:36 2023 +0800
| | | | | | | | |
| | | | | | | | | open in new tab
| | | | | | | | |
* | | | | | | | | commit fd17ca9192d94f7ff3f1ddf43f9ab4adfac2f24a
|\ \ \ \ \ \ \ \ \ Merge: 756d82d 33ff2af
| |_|_|_|_|_|_|_|/ Author: jsun1590 <[email protected]>
|/| | | | | | | | Date: Mon May 22 10:55:45 2023 +0800
| | | | | | | | |
| | | | | | | | | Merge pull request #43 from Agile-Web-Dev/documentation
| | | | | | | | |
| | | | | | | | | Documentation
| | | | | | | | |
| * | | | | | | | commit 33ff2af475a963bcc01f55ef9b113a63939fbd98 (origin/documentation, documentation)
| | | | | | | | | Author: Jack Sun <[email protected]>
| | | | | | | | | Date: Mon May 22 10:52:39 2023 +0800
| | | | | | | | |
| | | | | | | | | disabled styling
| | | | | | | | |
| * | | | | | | | commit bdcff993150b03f4bdd81bc75ccb434ec56cb443
| | | | | | | | | Author: Jack Sun <[email protected]>
| | | | | | | | | Date: Mon May 22 10:49:19 2023 +0800
| | | | | | | | |
| | | | | | | | | fix notes search
| | | | | | | | |
| * | | | | | | | commit be5a305d74d6102d429cff4f96daf0cd063cca21
| | | | | | | | | Author: Jack Sun <[email protected]>
| | | | | | | | | Date: Mon May 22 10:26:49 2023 +0800
| | | | | | | | |
| | | | | | | | | openai hotfix
| | | | | | | | |
| * | | | | | | | commit bf4cac85cfe7510bbc5c81878b111e345330877c
| |\ \ \ \ \ \ \ \ Merge: 46ca74d 756d82d
| |/ / / / / / / / Author: Jack Sun <[email protected]>
|/| | | | | | | | Date: Mon May 22 10:04:31 2023 +0800
| | | | | | | | |
| | | | | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into documentation
| | | | | | | | |
* | | | | | | | | commit 756d82dd74bd5c45a23ef4c583217630e2ca26bb
| |_|_|_|_|_|_|/ Author: Jack Sun <[email protected]>
|/| | | | | | | Date: Mon May 22 10:02:17 2023 +0800
| | | | | | | |
| | | | | | | | search hotfix
| | | | | | | |
* | | | | | | | commit 8c9d032f71d565dc1d8286c27160f5aa166ebec6
| |_|_|_|_|_|/ Author: Jack Sun <[email protected]>
|/| | | | | | Date: Mon May 22 09:35:04 2023 +0800
| | | | | | |
| | | | | | | openai hotfix
| | | | | | |
* | | | | | | commit 9a37641fd431900cc6463c12d70bbbce12b8fa2d
|\ \ \ \ \ \ \ Merge: a9f9127 7810084
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Mon May 22 01:47:05 2023 +0800
| | | | | | | |
| | | | | | | | Merge pull request #37 from Agile-Web-Dev/more-e2e-selenium
| | | | | | | |
| | | | | | | | More e2e selenium
| | | | | | | |
| * | | | | | | commit 78100842ec92deb18a481da763c4582ff2489091 (origin/more-e2e-selenium, more-e2e-selenium)
| |\ \ \ \ \ \ \ Merge: b711c63 e47718b
| | | | | | | | | Author: Jack Sun <[email protected]>
| | | | | | | | | Date: Mon May 22 01:44:31 2023 +0800
| | | | | | | | |
| | | | | | | | | Merge branch 'more-e2e-selenium' of https://github.com/Agile-Web-Dev/AGWP into more-e2e-selenium
| | | | | | | | |
| | * | | | | | | commit e47718baf14f2a3a2c04b8ac2c3818e5041db6a1
| | | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | | Date: Mon May 22 01:27:35 2023 +0800
| | | | | | | | |
| | | | | | | | | Try quit driver
| | | | | | | | |
| * | | | | | | | commit b711c634c48465fd1d6cca35de90cc9cda9580b4
| |\ \ \ \ \ \ \ \ Merge: 62fd7c2 a9f9127
| |/ / / / / / / / Author: Jack Sun <[email protected]>
|/| | | | | | | | Date: Mon May 22 01:44:15 2023 +0800
| | | | | | | | |
| | | | | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into more-e2e-selenium
| | | | | | | | |
| * | | | | | | | commit 62fd7c2d5679174351ada5f77f0f34b6ec31f805
| |/ / / / / / / Author: Jack Sun <[email protected]>
| | | | | | | | Date: Mon May 22 01:43:49 2023 +0800
| | | | | | | |
| | | | | | | | fix tests
| | | | | | | |
| * | | | | | | commit f5d8b23525b44315ef2a0b4352c4018b1f360128
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Mon May 22 00:58:50 2023 +0800
| | | | | | | |
| | | | | | | | Headless
| | | | | | | |
| * | | | | | | commit e28c6acf0debb3f2c81b0b0d70d3e10fa5516039
| |\ \ \ \ \ \ \ Merge: 1e6c2e4 9d7ca7d
| | | |_|_|_|_|/ Author: Dylan To <[email protected]>
| | |/| | | | | Date: Mon May 22 00:53:41 2023 +0800
| | | | | | | |
| | | | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into more-e2e-selenium
| | | | | | | |
| * | | | | | | commit 1e6c2e4019b4e165a88fb6d7e0888eb9fe804a15
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Mon May 22 00:50:55 2023 +0800
| | | | | | | |
| | | | | | | | Fix image path
| | | | | | | |
| * | | | | | | commit b410db867e5230c3555445d910a95841fcb0075b
| |\ \ \ \ \ \ \ Merge: da6306e fa3c9e9
| | | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | | Date: Mon May 22 00:50:42 2023 +0800
| | | | | | | | |
| | | | | | | | | Merge branch 'more-e2e-selenium' of https://github.com/Agile-Web-Dev/AGWP into more-e2e-selenium
| | | | | | | | |
| | * | | | | | | commit fa3c9e9e1556fb4e6744d8168b9bdd8bea3be511
| | | | | | | | | Author: Jack Sun <[email protected]>
| | | | | | | | | Date: Mon May 22 00:04:50 2023 +0800
| | | | | | | | |
| | | | | | | | | formatting
| | | | | | | | |
| | * | | | | | | commit 2619fe5e4bd00b79bda90c420dfc6c5b3c1f827d
| | | | | | | | | Author: Jack Sun <[email protected]>
| | | | | | | | | Date: Sun May 21 22:55:14 2023 +0800
| | | | | | | | |
| | | | | | | | | fix most tests
| | | | | | | | |
| * | | | | | | | commit da6306ef8d676d60d07da4b1db14861572da6239
| |\ \ \ \ \ \ \ \ Merge: f2f65e7 ebcca65
| | |/ / / / / / / Author: Dylan To <[email protected]>
| |/| | | | | | / Date: Mon May 22 00:50:31 2023 +0800
| | | |_|_|_|_|/
| | |/| | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into more-e2e-selenium
| | | | | | | |
| * | | | | | | commit f2f65e72d05c8e423203f407640fa16b0bb6843e
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Sun May 21 21:17:10 2023 +0800
| | | | | | | |
| | | | | | | | Increase e2e timeout
| | | | | | | |
| * | | | | | | commit 56e2334869a912ea271fa45fafe44a9db518ab32
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Sun May 21 21:12:25 2023 +0800
| | | | | | | |
| | | | | | | | Fix imports
| | | | | | | |
| * | | | | | | commit 50f229183f7bf05490c7968500a4e36dd3dd1bbc
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Sun May 21 21:09:15 2023 +0800
| | | | | | | |
| | | | | | | | Prevent race condition?
| | | | | | | |
| * | | | | | | commit ecd08a124d7c8dfd97c3d227736d97591b6e53c9
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Sun May 21 21:03:33 2023 +0800
| | | | | | | |
| | | | | | | | Add chat_search test
| | | | | | | |
| * | | | | | | commit b325e2dbdd3f31ff95232e2d15d7c7f868964a84
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Sun May 21 20:40:24 2023 +0800
| | | | | | | |
| | | | | | | | Fix tests + more note e2e tests
| | | | | | | |
| * | | | | | | commit a7a029a9567307607b26bb39d879df707a265ad9
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Sun May 21 20:01:02 2023 +0800
| | | | | | | |
| | | | | | | | Fix image path
| | | | | | | |
| * | | | | | | commit d96a9ef11e042850f1b001ef54d21631a2b766e8
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Sun May 21 20:00:57 2023 +0800
| | | | | | | |
| | | | | | | | Add note test
| | | | | | | |
| * | | | | | | commit 064034e31f2eff99264a69b2cdf042fd87145051
| |\ \ \ \ \ \ \ Merge: fd33112 48274f3
| | | |_|_|_|_|/ Author: Dylan To <[email protected]>
| | |/| | | | | Date: Sun May 21 18:54:18 2023 +0800
| | | | | | | |
| | | | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into more-e2e-selenium
| | | | | | | |
| * | | | | | | commit fd3311295df898ba3062e631133151242b52945e
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Sun May 21 18:09:59 2023 +0800
| | | | | | | |
| | | | | | | | Pass remaining tests + disable web security
| | | | | | | |
| * | | | | | | commit 4f37edf3c09eb36fd9f0c6a541079d84ecaa978a
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Sun May 21 17:59:30 2023 +0800
| | | | | | | |
| | | | | | | | Fix selenium testing with socketio
| | | | | | | |
| * | | | | | | commit 351d62e2b2df9a3d61d1dca864182cae963e0d5c
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Sat May 20 23:25:29 2023 +0800
| | | | | | | |
| | | | | | | | I have no idea why this doesn't work
| | | | | | | |
| * | | | | | | commit 5230837f794f3b5f8cbab2a47f2c93724528e17c
| | | | | | | | Author: Dylan To <[email protected]>
| | | | | | | | Date: Sat May 20 20:19:44 2023 +0800
| | | | | | | |
| | | | | | | | A broken login_as function
| | | | | | | |
| | | | | * | | commit 46ca74d6cd06fb6ca5877aca07649367e5eb24a9
| | | | | | | | Author: Jack Sun <[email protected]>
| | | | | | | | Date: Mon May 22 01:23:08 2023 +0800
| | | | | | | |
| | | | | | | | update docs
| | | | | | | |
| | | | | * | | commit f2f40a835ae0b5afd2a8e8fb55c872bbb9d354a1
| | | | | |\ \ \ Merge: c7df10e a9f9127
| |_|_|_|_|/ / / Author: Jack Sun <[email protected]>
|/| | | | | | | Date: Mon May 22 01:01:40 2023 +0800
| | | | | | | |
| | | | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into documentation
| | | | | | | |
* | | | | | | | commit a9f91279c2625faf2119ef3d0b57fbc28c2195f2
|\ \ \ \ \ \ \ \ Merge: 53e23ae 9d7ca7d
| | |_|_|/ / / / Author: bobojeager <[email protected]>
| |/| | | | | | Date: Mon May 22 00:57:05 2023 +0800
| | | | | | | |
| | | | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP
| | | | | | | |
| * | | | | | | commit 9d7ca7d1d0d0598d72a98e74e32369ae0f63941e
| |\ \ \ \ \ \ \ Merge: ebcca65 881e9e8
| | |_|_|/ / / / Author: Danish Hilmann <[email protected]>
| |/| | | | | | Date: Mon May 22 00:52:13 2023 +0800
| | | | | | | |
| | | | | | | | Merge pull request #42 from Agile-Web-Dev/delete-redundant-functionality
| | | | | | | |
| | | | | | | | Delete redundant functionality
| | | | | | | |
| | * | | | | | commit 881e9e8403448fca264a79b25a8cec97b023c2b0 (origin/delete-redundant-functionality)
| | |\ \ \ \ \ \ Merge: 5a6a03a 0e4267d
| | | | | | | | | Author: bobojeager <[email protected]>
| | | | | | | | | Date: Mon May 22 00:48:35 2023 +0800
| | | | | | | | |
| | | | | | | | | Merge branch 'add_comments' of https://github.com/Agile-Web-Dev/AGWP into delete-redundant-functionality
| | | | | | | | |
| | | * | | | | | commit 0e4267d80b0f84c88942181455664e154f33985f (origin/add_comments)
| | | | | | | | | Author: bobojeager <[email protected]>
| | | | | | | | | Date: Mon May 22 00:46:18 2023 +0800
| | | | | | | | |
| | | | | | | | | fixed linting
| | | | | | | | |
| | * | | | | | | commit 5a6a03a5c5ec5c6d5126606350bd23729c35b3f8
| | |/ / / / / / Author: bobojeager <[email protected]>
| | | | | | | | Date: Mon May 22 00:43:38 2023 +0800
| | | | | | | |
| | | | | | | | deleted menu for redundancy
| | | | | | | |
| | * | | | | | commit 3413615690d8a1a28133f00aeb2e448333aaa87c
| | | | | | | | Author: bobojeager <[email protected]>
| | | | | | | | Date: Mon May 22 00:36:35 2023 +0800
| | | | | | | |
| | | | | | | | added comments to utils in auth
| | | | | | | |
| | * | | | | | commit 30357ca52ca757093c23ba3d39024add841ae6b4
| | | | | | | | Author: bobojeager <[email protected]>
| | | | | | | | Date: Mon May 22 00:35:11 2023 +0800
| | | | | | | |
| | | | | | | | add comments to code
| | | | | | | |
| * | | | | | | commit ebcca654bed264f631327ca2f17af4f95a35c4f8
| |\ \ \ \ \ \ \ Merge: d8597a6 ed3bfe7
| | | | | | | | | Author: jsun1590 <[email protected]>
| | | | | | | | | Date: Mon May 22 00:01:24 2023 +0800
| | | | | | | | |
| | | | | | | | | Merge pull request #39 from Agile-Web-Dev/w3
| | | | | | | | |
| | | | | | | | | w3 compliance
| | | | | | | | |
| | * | | | | | | commit ed3bfe772dba9eaf7bde81858d9078a5fe32883c (origin/w3, w3)
| |/ / / / / / / Author: Jack Sun <[email protected]>
| | | | | | | | Date: Mon May 22 00:00:48 2023 +0800
| | | | | | | |
| | | | | | | | w3 compliance
| | | | | | | |
* | | | | | | | commit 53e23ae5a3f84e2acaaca06f51542e9d462f27e9
| |/ / / / / / Author: bobojeager <[email protected]>
|/| | | | | | Date: Mon May 22 00:56:59 2023 +0800
| | | | | | |
| | | | | | | delete invisible button
| | | | | | |
| | | | * | | commit c7df10e125aa48f594e45065cdab71596ebade22
| | | | | | | Author: Jack Sun <[email protected]>
| | | | | | | Date: Mon May 22 00:59:47 2023 +0800
| | | | | | |
| | | | | | | fix tests
| | | | | | |
| | | | * | | commit a7f03556dc6e79ef4172135415b32525b656cfb7
| | |_|/ / / Author: Jack Sun <[email protected]>
| |/| | | | Date: Mon May 22 00:58:52 2023 +0800
| | | | | |
| | | | | | refactor + docs
| | | | | |
| * | | | | commit d8597a608d07088583cc858befdb23e41f0841e1
|/ / / / / Author: Jack Sun <[email protected]>
| | | | | Date: Sun May 21 23:24:40 2023 +0800
| | | | |
| | | | | welcome styling
| | | | |
* | | | | commit 6ec9435fe0c6fc927ba3778296a9e75074f6fa85
|\ \ \ \ \ Merge: bfd1acf 5f7f743
| | | | | | Author: bobojeager <[email protected]>
| | | | | | Date: Sun May 21 23:04:18 2023 +0800
| | | | | |
| | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP
| | | | | |
| * | | | | commit 5f7f7433da4e45a41611ee1fda8a8478de26cff4
| |\ \ \ \ \ Merge: 178ef2d dd7381c
| | | | | | | Author: jsun1590 <[email protected]>
| | | | | | | Date: Sun May 21 22:55:41 2023 +0800
| | | | | | |
| | | | | | | Merge pull request #38 from Agile-Web-Dev/bot-v3
| | | | | | |
| | | | | | | Bot v3
| | | | | | |
| | * | | | | commit dd7381c237901d75863086fb941860eb0802950b (origin/bot-v3, bot-v3)
| | | | | | | Author: Jack Sun <[email protected]>
| | | | | | | Date: Sun May 21 21:59:37 2023 +0800
| | | | | | |
| | | | | | | update requirements
| | | | | | |
| | * | | | | commit ad6390cbcb47cf7c4330a725ad1f7a695584a45c
| | | | | | | Author: Jack Sun <[email protected]>
| | | | | | | Date: Sun May 21 21:57:27 2023 +0800
| | | | | | |
| | | | | | | format
| | | | | | |
| | * | | | | commit 0cfde2521b27b9d1788e26fc6eaeb648b1362ac8
| | | | | | | Author: Jack Sun <[email protected]>
| | | | | | | Date: Sun May 21 21:57:04 2023 +0800
| | | | | | |
| | | | | | | fix test
| | | | | | |
| | * | | | | commit e077823c6d0ddab45f2eb434924bee94b434cdd0
| | | | | | | Author: Jack Sun <[email protected]>
| | | | | | | Date: Sun May 21 21:45:59 2023 +0800
| | | | | | |
| | | | | | | format
| | | | | | |
| | * | | | | commit f88e028c630b68686dc28cd7db7699ddd16b4b2c
| | |\ \ \ \ \ Merge: 259112c 178ef2d
| | |/ / / / / Author: Jack Sun <[email protected]>
| |/| | | | | Date: Sun May 21 21:44:44 2023 +0800
| | | | | | |
| | | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into bot-v3
| | | | | | |
| | * | | | | commit 259112ced4595b33e9d7389362ef0234c1982931
| | | | | | | Author: Jack Sun <[email protected]>
| | | | | | | Date: Sun May 21 21:43:45 2023 +0800
| | | | | | |
| | | | | | | fix context
| | | | | | |
| | * | | | | commit 8ac6b4add6cae514650947546eaf1e2370e69c74
| | | |_|_|/ Author: Jack Sun <[email protected]>
| | |/| | | Date: Sun May 21 21:37:08 2023 +0800
| | | | | |
| | | | | | add chatgpt notes
| | | | | |
* | | | | | commit bfd1acfb1d59e9a7b132f031351507d18bed1f75
|/ / / / / Author: bobojeager <[email protected]>
| | | | | Date: Sun May 21 23:03:58 2023 +0800
| | | | |
| | | | | change button text to white
| | | | |
* | | | | commit 178ef2d80a918b9d9824990fa6209836cb307305
| |_|/ / Author: bobojeager <[email protected]>
|/| | | Date: Sun May 21 21:32:56 2023 +0800
| | | |
| | | | delete redundant code
| | | |
* | | | commit 48274f3a5d73bc324af7f2ad9dff00c4c0489f94
|\ \ \ \ Merge: 8f7075a 6f0239a
| | | | | Author: Danish Hilmann <[email protected]>
| | | | | Date: Sun May 21 17:58:57 2023 +0800
| | | | |
| | | | | Merge pull request #35 from Agile-Web-Dev/link-bugfix
| | | | |
| | | | | Link bugfix
| | | | |
| * | | | commit 6f0239af9d350cb5b626c8609bd2ed65c0e092ff
| | | | | Author: bobojeager <[email protected]>
| | | | | Date: Sun May 21 17:48:10 2023 +0800
| | | | |
| | | | | fixing links
| | | | |
* | | | | commit 8f7075a95803d1bae918089d0ab73cdc682a8751
|\| | | | Merge: 3920b71 39017b5
| |/ / / Author: Danish Hilmann <[email protected]>
|/| | | Date: Sun May 21 17:58:37 2023 +0800
| | | |
| | | | Merge pull request #36 from Agile-Web-Dev/removing-todoandPrint
| | | |
| | | | Removing todoand print
| | | |
| * | | commit 39017b59f0394bd94f647a0fcb16834318130015
| | | | Author: bobojeager <[email protected]>
| | | | Date: Sun May 21 17:10:58 2023 +0800
| | | |
| | | | removed all instance of print/todos
| | | |
| * | | commit 90f4ee27666f16cf4716c143adaf9c732846b844
| |\ \ \ Merge: 4433ed3 3920b71
| |/ / / Author: bobojeager <[email protected]>
|/| | | Date: Sun May 21 16:54:14 2023 +0800
| | | |
| | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into homepage-responsiveness
| | | |
* | | | commit 3920b71742e5b0dae9699a791f2a0030530d222f
|\ \ \ \ Merge: 0fdd51e 8b6599c
| | | | | Author: jsun1590 <[email protected]>
| | | | | Date: Sun May 21 16:51:31 2023 +0800
| | | | |
| | | | | Merge pull request #34 from Agile-Web-Dev/chatbot-v2
| | | | |
| | | | | WIP chatbot improvements
| | | | |
| * | | | commit 8b6599cbe2540999181fcf217f39c480fdb3c419 (origin/chatbot-v2, chatbot-v2)
| | | | | Author: Jack Sun <[email protected]>
| | | | | Date: Sun May 21 16:47:15 2023 +0800
| | | | |
| | | | | timestamp
| | | | |
| * | | | commit bda25f84accda82490b501b517407a3cbc1fe6e5
| |\ \ \ \ Merge: ce69430 0fdd51e
| |/ / / / Author: Jack Sun <[email protected]>
|/| | | | Date: Sun May 21 15:47:21 2023 +0800
| | | | |
| | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into chatbot-v2
| | | | |
* | | | | commit 0fdd51ec56ca766aac9cba45722cbe12e0ac3132
|\ \ \ \ \ Merge: 53eb956 1708a66
| | | | | | Author: jsun1590 <[email protected]>
| | | | | | Date: Sun May 21 15:47:11 2023 +0800
| | | | | |
| | | | | | Merge pull request #33 from Agile-Web-Dev/refactor-searchbar-styling
| | | | | |
| | | | | | Refactor searchbar stylings
| | | | | |
| | * | | | commit ce694309e83e19e39f558bd98aaa38d4bc106fbf
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sun May 21 15:45:13 2023 +0800
| | | | | |
| | | | | | fix search
| | | | | |
| | * | | | commit 763b25d11535a01b39b594cd55b81730ae2af57e
| | |\ \ \ \ Merge: bbc6147 1708a66
| | |/ / / / Author: Jack Sun <[email protected]>
| |/| | | | Date: Sun May 21 15:14:13 2023 +0800
| | | | | |
| | | | | | Merge branch 'refactor-searchbar-styling' of https://github.com/Agile-Web-Dev/AGWP into chatbot-v2
| | | | | |
| * | | | | commit 1708a66c1bd8a16f619cfae123c807c84461fe8f (origin/refactor-searchbar-styling)
| | | | | | Author: Dylan To <[email protected]>
| | | | | | Date: Sun May 21 01:07:39 2023 -0500
| | | | | |
| | | | | | Align action group
| | | | | |
| * | | | | commit e67dfb85eb0aad8d5ec0f06d5115925441300457
| | | | | | Author: Dylan To <[email protected]>
| | | | | | Date: Sun May 21 01:04:40 2023 -0500
| | | | | |
| | | | | | Fix chatbox margin
| | | | | |
| * | | | | commit 0a4f08ecd180fa6acdf67ae14c41611377d075c8
| |\ \ \ \ \ Merge: 680ffb0 53eb956
| |/ / / / / Author: Dylan To <[email protected]>
|/| | | | | Date: Sun May 21 01:03:30 2023 -0500
| | | | | |
| | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into refactor-searchbar-styling
| | | | | |
| * | | | | commit 680ffb07e32bb57295539b5db6dcb3370df34317
| | |_|/ / Author: Dylan To <[email protected]>
| |/| | | Date: Sat May 20 23:59:02 2023 +0800
| | | | |
| | | | | Refactor searchbar stylings
| | | | |
| | * | | commit bbc6147f1abc8e142abf453b8e97961931adaa64
| | | | | Author: Jack Sun <[email protected]>
| | | | | Date: Sun May 21 15:06:49 2023 +0800
| | | | |
| | | | | fix search button
| | | | |
| | * | | commit 879188f0f1d3c5f77f30078ceba32a41aff32881 (refactor-searchbar-styling)
| | | | | Author: Jack Sun <[email protected]>
| | | | | Date: Sun May 21 14:50:58 2023 +0800
| | | | |
| | | | | style chatroom
| | | | |
| | * | | commit e1cf1997253c586ee802f838af2839d8755beea9
| | | | | Author: Jack Sun <[email protected]>
| | | | | Date: Sun May 21 14:32:19 2023 +0800
| | | | |
| | | | | responsive auth pages
| | | | |
| | * | | commit da5702c95967579c0addfbc904e065c68625f7e2
| |/ / / Author: Jack Sun <[email protected]>
|/| | | Date: Sun May 21 14:20:04 2023 +0800
| | | |
| | | | responsive dashboard
| | | |
* | | | commit 53eb956fcd0e2923b0fc92bcce021c8b2901051d
| | | | Author: Jack Sun <[email protected]>
| | | | Date: Sun May 21 13:27:33 2023 +0800
| | | |
| | | | hotfix remove sortable
| | | |
* | | | commit a62178517408069379aeedc244347336173062ea
| | | | Author: Jack Sun <[email protected]>
| | | | Date: Sun May 21 13:20:40 2023 +0800
| | | |
| | | | tags removal hotfix
| | | |
* | | | commit df042cc8d6c7e6e0d7a86bc1e09d900e83e7c86e (origin/select-classes, select-classes)
| | | | Author: Jack Sun <[email protected]>
| | | | Date: Sun May 21 01:39:08 2023 +0800
| | | |
| | | | format
| | | |
* | | | commit 6d92197779666b372bca1453ad938c596ea87b89
|\ \ \ \ Merge: 9c94725 4c4376e
| | | | | Author: Jack Sun <[email protected]>
| | | | | Date: Sun May 21 01:38:31 2023 +0800
| | | | |
| | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into select-classes
| | | | |
| * | | | commit 4c4376ed62dc9c655900b60067c25754020afdc7
| |\ \ \ \ Merge: c6c6a99 890e9e9
| | | | | | Author: Danish Hilmann <[email protected]>
| | | | | | Date: Sun May 21 00:26:55 2023 +0800
| | | | | |
| | | | | | Merge pull request #32 from Agile-Web-Dev/remove-tags
| | | | | |
| | | | | | Remove tags
| | | | | |
* | | | | | commit 9c94725f5867df47a5e950cec9f759d355b009d1
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sun May 21 01:38:23 2023 +0800
| | | | | |
| | | | | | add classes
| | | | | |
* | | | | | commit dbf13393bae3bde297d9ddd3a8bf3ed517907599
|\| | | | | Merge: 4872948 c6c6a99
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sun May 21 00:10:16 2023 +0800
| | | | | |
| | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into select-classes
| | | | | |
* | | | | | commit 4872948ae287577632dcbb61762cfef07bc775f9 (homepag)
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sat May 20 23:49:54 2023 +0800
| | | | | |
| | | | | | styling
| | | | | |
* | | | | | commit 7cfcddbb4b42d6505fb52a22f6d754013ede3a2c
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sat May 20 21:55:23 2023 +0800
| | | | | |
| | | | | | format
| | | | | |
* | | | | | commit 5f7174a8af973a016a598e7b3a76e4f1dece7202
|\ \ \ \ \ \ Merge: 574df53 94d6445
| | |_|_|_|/ Author: Jack Sun <[email protected]>
| |/| | | | Date: Sat May 20 21:53:01 2023 +0800
| | | | | |
| | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into select-classes
| | | | | |
* | | | | | commit 574df531bda1df493b9dabe5cceb97616c8e8554
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sat May 20 20:47:54 2023 +0800
| | | | | |
| | | | | | fix styling
| | | | | |
* | | | | | commit 1e70ede18e79fd33c5e3a602565638ee7471aa86
|\ \ \ \ \ \ Merge: ee6772f 3e09410
| | | | | | | Author: Jack Sun <[email protected]>
| | | | | | | Date: Sat May 20 20:36:10 2023 +0800
| | | | | | |
| | | | | | | Merge branch 'improve-chatbot' of https://github.com/Agile-Web-Dev/AGWP into select-classes
| | | | | | |
* | | | | | | commit ee6772f68765c1e010744c18efc33df7cc2aa721
|\ \ \ \ \ \ \ Merge: 81355ba b9578b7
| | |_|_|_|/ / Author: Jack Sun <[email protected]>
| |/| | | | | Date: Sat May 20 20:34:58 2023 +0800
| | | | | | |
| | | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into select-classes
| | | | | | |
* | | | | | | commit 81355bae53b87260e037e5e9e0a073ebd0ab7194
| | | | | | | Author: Jack Sun <[email protected]>
| | | | | | | Date: Mon May 8 11:24:01 2023 +0800
| | | | | | |
| | | | | | | add class to user endpoint
| | | | | | |
* | | | | | | commit 711c8a10079518a821cef9ea022b2b8f53df46b8
| | | | | | | Author: Jack Sun <[email protected]>
| | | | | | | Date: Sun May 7 20:42:32 2023 +0800
| | | | | | |
| | | | | | | add accordion for unenrolled classes
| | | | | | |
| | | | | | * commit 4433ed3971e314ce196a6351aeccefab3a273b6d (origin/homepage-responsiveness)
| | | | | | | Author: bobojeager <[email protected]>
| | | | | | | Date: Sun May 21 16:48:36 2023 +0800
| | | | | | |
| | | | | | | responsive
| | | | | | |
| | | | | | * commit 256c10500d74cdd890a3d5e045642ce9bf3fcdcc (origin/Fix-noteDisplay)
| | | | | |/ Author: bobojeager <[email protected]>
| | | | | | Date: Sun May 21 15:56:10 2023 +0800
| | | | | |
| | | | | | fixed bug where modal doesnt read current note
| | | | | |
| | | | | * commit 890e9e93e9a11350c72dd3e49c81146a514a7571
| | | | | | Author: bobojeager <[email protected]>
| | | | | | Date: Sun May 21 00:16:44 2023 +0800
| | | | | |
| | | | | | removed reference to tags
| | | | | |
| | | | | * commit e260151ecfe85373ef50bfbf2e6f099b2f5108e1
| | | | | |\ Merge: cf8bf46 c6c6a99
| | | | | |/ Author: bobojeager <[email protected]>
| | | | |/| Date: Sun May 21 00:10:26 2023 +0800
| | | | | |
| | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into remove-tags
| | | | | |
| | | | * | commit c6c6a99025eb6ce4e32ff5e4b39ea37f076fdfd8
| | | |/| | Merge: 94d6445 6981a14
| | | | | | Author: Danish Hilmann <[email protected]>
| | | | | | Date: Sun May 21 00:10:04 2023 +0800
| | | | | |
| | | | | | Merge pull request #31 from Agile-Web-Dev/homepage
| | | | | |
| | | | | | Homepage
| | | | | |
| | | | * | commit 6981a1473f78328ef59c0d2b1b9d4a6d57983593 (origin/homepage, homepage)
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sun May 21 00:05:52 2023 +0800
| | | | | |
| | | | | | fix test
| | | | | |
| | | | * | commit 218629aa830dd9716d0d23b7f8b98f2bcbc26731
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sat May 20 23:59:26 2023 +0800
| | | | | |
| | | | | | update ci for black
| | | | | |
| | | | * | commit 751485d0599d20498a563f8c3a31ad3f2294c50e
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sat May 20 23:55:56 2023 +0800
| | | | | |
| | | | | | update lint instructions
| | | | | |
| | | | * | commit 4074eddb650b66cc51a2903584e7513bda781fb0
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sat May 20 23:55:14 2023 +0800
| | | | | |
| | | | | | update makefile
| | | | | |
| | | | * | commit 1b3a77a0b84921b90d291c89905ec02787f0a1b7
| | | | | | Author: bobojeager <[email protected]>
| | | | | | Date: Sat May 20 23:46:44 2023 +0800
| | | | | |
| | | | | | linting and formatting
| | | | | |
| | | | | * commit cf8bf4629ccf811f7ab740fd7619dc78cc3cf003 (origin/remove-tags)
| | | | |/ Author: bobojeager <[email protected]>
| | | | | Date: Sat May 20 23:41:32 2023 +0800
| | | | |
| | | | | removed tags from db
| | | | |
| | | | * commit 947430b4f58b62fe0e58a62bcf250dbdc60b07ad
| | | | | Author: bobojeager <[email protected]>
| | | | | Date: Sat May 20 23:36:12 2023 +0800
| | | | |
| | | | | merged with main and changed name of homepage
| | | | |
| | | | * commit 411e4a90e1b681e2944765c7b6ca985a06e0262a
| | | | |\ Merge: f3a2067 94d6445
| | | | |/ Author: bobojeager <[email protected]>
| | | |/| Date: Sat May 20 23:33:39 2023 +0800
| | | | |
| | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into homepage
| | | | |
| | | | * commit f3a2067fc171d0c63a9f4a10266844d4de363378
| | | | | Author: bobojeager <[email protected]>
| | | | | Date: Sat May 20 23:33:10 2023 +0800
| | | | |
| | | | | finished Homepage,styling and writing
| | | | |
| | | | | * commit 8e2a568091831f15aae6f6e8b8d39fe008bce4b7 (origin/improve-chatbot, improve-chatbot)
| | | |_|/| Merge: 3e09410 94d6445
| | |/| |/ Author: Jack Sun <[email protected]>
| | | |/| Date: Sat May 20 21:53:52 2023 +0800
| | | | |
| | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into improve-chatbot
| | | | |
| | | * | commit 94d6445cfa2191a97f65938afe6b4f19d5cde2a0
| | |/| | Merge: b9578b7 e8fd921
| |/| | | Author: Danish Hilmann <[email protected]>
| | | | | Date: Sat May 20 21:51:15 2023 +0800
| | | | |
| | | | | Merge pull request #27 from Agile-Web-Dev/Post_Note
| | | | |
| | | | | Fix Post note
| | | | |
| | | * | commit e8fd9210a4d3d5a34b6e07bb65f4a161ed3afafb (origin/Post_Note, Post_Note)
| | | | | Author: Jack Sun <[email protected]>
| | | | | Date: Sat May 20 21:49:49 2023 +0800
| | | | |
| | | | | format
| | | | |
| | | * | commit c4b80ee888deb37b32b5d33b767627b0dd8f296b
| | | | | Author: Jack Sun <[email protected]>
| | | | | Date: Sat May 20 21:47:47 2023 +0800
| | | | |
| | | | | update env
| | | | |
| * | | | commit b9578b7147a0031197930f45f3413b0bc3cae0b6
| |\ \ \ \ Merge: 026bae0 2c4295c
| | | | | | Author: jsun1590 <[email protected]>
| | | | | | Date: Sat May 20 15:17:59 2023 +0800
| | | | | |
| | | | | | Merge pull request #28 from Agile-Web-Dev/more-styling
| | | | | |
| | | | | | auth and header styling
| | | | | |
| | * | | | commit 2c4295c324d3681d3d96323c49c0bd3f7390389a (origin/more-styling, more-styling)
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sat May 20 14:08:56 2023 +0800
| | | | | |
| | | | | | change link color
| | | | | |
| | * | | | commit f81df21b57f705452e192c1c79a5b21a7417d169
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sat May 20 13:44:33 2023 +0800
| | | | | |
| | | | | | link styling
| | | | | |
| | * | | | commit 66c48115a5f7b8435a39329194ad358c04d3f43d
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sat May 20 13:38:49 2023 +0800
| | | | | |
| | | | | | navbar styling
| | | | | |
| | | * | | commit 3e0941009375ccf0e1ad3c5293a99db71ecb1ee9
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sat May 20 18:41:41 2023 +0800
| | | | | |
| | | | | | fix search js
| | | | | |
| | | * | | commit ca080def02ee4fd32fa1eb6674ebd07f1a5bf3fa
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sat May 20 17:20:10 2023 +0800
| | | | | |
| | | | | | search styling
| | | | | |
| | | * | | commit aeb602ec0a219d4ad583023d45d0b3e1263730f9
| | | |\| | Merge: 00255a1 69a81e9
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sat May 20 17:13:45 2023 +0800
| | | | | |
| | | | | | Merge branch 'Post_Note' of https://github.com/Agile-Web-Dev/AGWP into improve-chatbot
| | | | | |
| | | | * | commit 69a81e9b5268226e614c527b52b3353e6eb3a312
| | | | |\ \ Merge: 6b2613a 026bae0
| | |_|_|/ / Author: bobojeager <[email protected]>
| |/| | | | Date: Sat May 20 14:35:21 2023 +0800
| | | | | |
| | | | | | Merge branch 'main' of https://github.com/Agile-Web-Dev/AGWP into Post_Note
| | | | | |
| * | | | | commit 026bae00dd63adc2862e59483274bd6c8d052f6c
| |\ \ \ \ \ Merge: be8343c 81e016f
| | |/ / / / Author: Danish Hilmann <[email protected]>
| |/| | | | Date: Sat May 20 14:34:49 2023 +0800
| | | | | |
| | | | | | Merge pull request #26 from Agile-Web-Dev/Chatroom-searchbar
| | | | | |
| | | | | | Chatroom searchbar
| | | | | |
| | * | | | commit 81e016f1c992c1584801197fbc653feb05c95a86 (origin/Chatroom-searchbar)
| | |\ \ \ \ Merge: 97a145b bc90826
| | | | | | | Author: bobojeager <[email protected]>
| | | | | | | Date: Thu May 18 22:31:42 2023 +0800
| | | | | | |
| | | | | | | added review changes
| | | | | | |
| | | * | | | commit bc90826a61bba1b3d349ff88e501278678e00b43
| | | | | | | Author: Dylan To <[email protected]>
| | | | | | | Date: Sat May 13 14:36:48 2023 +0800
| | | | | | |
| | | | | | | Autoformatting
| | | | | | |
| | * | | | | commit 97a145b9ae3ad01b37dc7712bc8a80a1fa6759a8
| | |/ / / / Author: bobojeager <[email protected]>
| | | | | | Date: Thu May 18 22:30:35 2023 +0800
| | | | | |
| | | | | | added review changes
| | | | | |
| | | * | | commit 00255a1fc3ecbe51bf3bb727fd00b643fa202f3a
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sat May 20 17:02:38 2023 +0800
| | | | | |
| | | | | | notes fix
| | | | | |
| | | * | | commit d6abd9efc7c8280019cfb5183c46da7dbc9817aa
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sat May 20 16:59:34 2023 +0800
| | | | | |
| | | | | | fix search logic
| | | | | |
| | | * | | commit 985f85ce893918682d9e6705116db094e4bc1f52
| | | | | | Author: Jack Sun <[email protected]>
| | | | | | Date: Sat May 20 16:26:57 2023 +0800
| | | | | |
| | | | | | layout styling
| | | | | |
| | | * | | commit 688b98fe750809945f0ceedeeb72a2651e157e98
| | |/| | | Merge: be8343c 6b2613a
| |/| |/ / Author: Jack Sun <[email protected]>
| | | | | Date: Sat May 20 13:45:50 2023 +0800
| | | | |
| | | | | Merge branch 'Post_Note' of https://github.com/Agile-Web-Dev/AGWP into improve-chatbot
| | | | |
| | | * | commit 6b2613a6ac7499c545c337fd31cf15083345cdf0
| | | | | Author: bobojeager <[email protected]>
| | | | | Date: Sat May 13 11:46:23 2023 +0800
| | | | |
| | | | | Fix test_user
| | | | |
| | | * | commit b19b9bbf38af09381b2b53033847b2efabd6d836
| | | |\| Merge: b7d501f ffae105
| | | | | Author: bobojeager <[email protected]>
| | | | | Date: Sat May 13 11:20:30 2023 +0800
| | | | |
| | | | | Merge branch 'api-tests' of https://github.com/Agile-Web-Dev/AGWP into Post_Note
| | | | |
| | | * | commit b7d501f8be1174aea578eaec1b26d82cb7341850
| | | | | Author: bobojeager <[email protected]>