-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtat:q
2870 lines (1925 loc) · 83.4 KB
/
tat:q
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
[33mcommit e70f14d0bb5bea10444d7ee334b6bd8c1af518ca[m[33m ([m[1;36mHEAD[m[33m -> [m[1;32mmaster[m[33m)[m
Merge: 819161a28 8fb7dcaa2
Author: 25Pi25 <[email protected]>
Date: Sun Oct 13 14:47:54 2024 -0400
Merge branch 'master' of https://github.com/25Pi25/PMD-collab-wiki
[33mcommit 819161a2888a646b36c2d6069667383c1c7803f2[m
Author: 25Pi25 <[email protected]>
Date: Sun Oct 13 14:47:35 2024 -0400
added credits mode reference to about
[33mcommit 8fb7dcaa2d6bd6367e424b1229d102c1167c5251[m[33m ([m[1;31msec/master[m[33m)[m
Merge: 43c2340d3 a60153755
Author: sec <[email protected]>
Date: Sat Sep 7 19:16:26 2024 -0400
Merge branch 'PMDCollab:master' into master
[33mcommit 43c2340d3f98263be98963a0dded9a58657bdacc[m
Merge: 802e32428 b9cfbe49b
Author: 25Pi25 <[email protected]>
Date: Sat Sep 7 19:11:51 2024 -0400
Merge branch 'master' of https://github.com/25Pi25/PMD-collab-wiki
oopsie i forget!
[33mcommit 802e32428cd57d10d92c6aee279935a6a9ea65d0[m
Author: 25Pi25 <[email protected]>
Date: Sat Sep 7 19:11:41 2024 -0400
linked to bsky/mastodon
[33mcommit a60153755ed8362491a8e2dfe7f2a3a7b125fec6[m
Merge: b9d78558a b9cfbe49b
Author: sec <[email protected]>
Date: Wed Sep 4 17:23:28 2024 -0400
Merge pull request #105 from 25Pi25/master
chainable copyof
[33mcommit b9cfbe49bc9458a1e351eca185cf4d5db3abfdad[m
Merge: 602e4dcfa b9d78558a
Author: sec <[email protected]>
Date: Wed Sep 4 17:23:06 2024 -0400
Merge branch 'PMDCollab:master' into master
[33mcommit 602e4dcfa7d8577147abfcb8c5368501fbba926e[m
Author: 25Pi25 <[email protected]>
Date: Wed Sep 4 17:21:40 2024 -0400
allowed chainable copyof sprites
[33mcommit b9d78558a266b08682d9dc343d7fcd12be0b17bc[m
Merge: d860afcc6 e92a78f92
Author: sec <[email protected]>
Date: Tue Aug 6 21:51:49 2024 -0700
Merge pull request #104 from 25Pi25/master
missing sprite filter
[33mcommit e92a78f92623916f361d93dfae7f4b6f89ff7e30[m
Merge: b013644b1 d860afcc6
Author: sec <[email protected]>
Date: Tue Aug 6 21:51:16 2024 -0700
Merge branch 'PMDCollab:master' into master
[33mcommit b013644b17076078d398324ceec805fa29abb46c[m
Author: 25Pi25 <[email protected]>
Date: Tue Aug 6 21:50:39 2024 -0700
added missing sprite filter
[33mcommit d860afcc6668b472b38cce7911baa16ead62afee[m
Merge: 3036d204e 30fe97422
Author: sec <[email protected]>
Date: Tue Aug 6 14:18:46 2024 -0700
Merge pull request #103 from 25Pi25/master
missing portrait filter
[33mcommit 30fe974220e9c019051fa03e04c3d7edb10df8e4[m
Merge: fb7f3011e 3036d204e
Author: sec <[email protected]>
Date: Tue Aug 6 14:18:06 2024 -0700
Merge branch 'PMDCollab:master' into master
[33mcommit fb7f3011ec00e17dcd479ad989ca2e997a6609f2[m
Merge: edbd42507 895170ce3
Author: 25Pi25 <[email protected]>
Date: Tue Aug 6 14:17:21 2024 -0700
Merge branch 'master' of https://github.com/25Pi25/PMD-collab-wiki
[33mcommit edbd42507b724741261ab7e8c65124d344964647[m
Author: 25Pi25 <[email protected]>
Date: Tue Aug 6 14:17:14 2024 -0700
added missing portrait filter
[33mcommit 3036d204ef70f49bd6ad55e89fcc18a593a6350b[m
Merge: 8f2b6eb23 895170ce3
Author: sec <[email protected]>
Date: Fri Aug 2 01:28:37 2024 -0700
Merge pull request #102 from 25Pi25/master
i forgot a console.log in the code
[33mcommit 895170ce372628b59ea12063ebe8b584889aabbb[m
Merge: 2d9367ce4 8f2b6eb23
Author: sec <[email protected]>
Date: Fri Aug 2 01:27:53 2024 -0700
Merge branch 'PMDCollab:master' into master
[33mcommit 2d9367ce4b595a863043987a364b4ebd9ea47629[m
Merge: 960f5f9e7 0c7ed311f
Author: 25Pi25 <[email protected]>
Date: Fri Aug 2 01:27:11 2024 -0700
Merge branch 'master' of https://github.com/25Pi25/PMD-collab-wiki
[33mcommit 960f5f9e77418346257779917ea466e54d1dca4a[m
Author: 25Pi25 <[email protected]>
Date: Fri Aug 2 01:27:01 2024 -0700
oops i left a console log in the code
[33mcommit 8f2b6eb230493c146404a7b81e44e381743aa59f[m
Merge: b144f6ee8 0c7ed311f
Author: sec <[email protected]>
Date: Fri Aug 2 01:21:24 2024 -0700
Merge pull request #101 from 25Pi25/master
displaying CopyOf animations on pokemon pages
[33mcommit 0c7ed311fcfd9827a73d5c899c5edb9a0dffbeac[m
Merge: 23171d522 b144f6ee8
Author: sec <[email protected]>
Date: Fri Aug 2 01:20:36 2024 -0700
Merge branch 'PMDCollab:master' into master
[33mcommit 23171d522a16c3e3d7e56b96177c93a7ab4ce53d[m
Author: 25Pi25 <[email protected]>
Date: Fri Aug 2 01:19:48 2024 -0700
added CopyOf animations to sprite listings
[33mcommit b144f6ee811e5b74c8060a90a80e98418b710a5d[m
Merge: 4b37a941d 99b5cd9a3
Author: sec <[email protected]>
Date: Tue Jul 23 16:29:15 2024 -0700
Merge pull request #100 from 25Pi25/master
Credits Mode is now available for public use!
[33mcommit 99b5cd9a3fe093cc82628ffab9333f5f244a5e18[m
Author: 25Pi25 <[email protected]>
Date: Tue Jul 23 16:28:55 2024 -0700
added reference to pull request
[33mcommit 1f048cdae77149c2ee181bfef6786481d8e02314[m
Author: 25Pi25 <[email protected]>
Date: Tue Jul 23 16:18:53 2024 -0700
credits mode is now public access
[33mcommit 6aadc79d5ec2cef7a9697a4878f3e63b87afe538[m
Author: 25Pi25 <[email protected]>
Date: Tue Jul 23 15:55:24 2024 -0700
hotfix on failed build
[33mcommit 4b37a941d3b8ab583c0204756f3967aec2b348e8[m[33m ([m[1;31morigin/master[m[33m)[m
Merge: 67ca0b9d0 2c8eea7c0
Author: sec <[email protected]>
Date: Tue Jul 23 15:48:22 2024 -0700
Merge pull request #99 from 25Pi25/master
making credits run decently
[33mcommit 2c8eea7c0667102b56402c04a523bef9f868289a[m
Merge: a9b1a7564 67ca0b9d0
Author: 25Pi25 <[email protected]>
Date: Tue Jul 23 15:46:22 2024 -0700
Merge branch 'master' of https://github.com/25Pi25/PMD-collab-wiki
[33mcommit a9b1a7564acea61f367c7c449e7465ca370e08db[m
Author: 25Pi25 <[email protected]>
Date: Tue Jul 23 15:45:34 2024 -0700
refactored code and fixed credits mode
[33mcommit 67ca0b9d03ed205c5370ecddfa498a266ac543da[m
Merge: fdc3b6f46 c43468dee
Author: sec <[email protected]>
Date: Sun Jun 16 07:14:27 2024 -0400
Merge pull request #98 from 25Pi25/master
removed const type casting since it doesn't merge with a type array
[33mcommit c43468dee080d7d4ea9a92b16a235c1d1cf25851[m
Author: 25Pi25 <[email protected]>
Date: Sun Jun 16 04:13:42 2024 -0700
removed const type casting since it doesn't merge with a type array
[33mcommit fdc3b6f46eb861a39368f56567a06d423b67c14a[m
Merge: a83a5d796 2e8046476
Author: audinowho <[email protected]>
Date: Sat Jun 8 11:32:12 2024 -0800
Merge pull request #97 from 25Pi25/master
URL search parameters for all filters (except ranking method and search bar)
[33mcommit 2e80464761e6c94971196e7eb79be87cebfbc251[m
Merge: 86cd73594 a83a5d796
Author: sec <[email protected]>
Date: Wed Jun 5 20:11:14 2024 -0400
Merge branch 'PMDCollab:master' into master
[33mcommit 86cd73594bdc5f4d70bc68792050caf27d84918b[m
Merge: 8af3c5c00 c7c7457a5
Author: sec <[email protected]>
Date: Wed Jun 5 20:10:49 2024 -0400
Merge pull request #4 from 25Pi25/shopping_cart
Shopping cart
[33mcommit c7c7457a5ff69bb3bfd185176108518e1e402db4[m[33m ([m[1;31msec/shopping_cart[m[33m, [m[1;32mshopping_cart[m[33m)[m
Author: 25Pi25 <[email protected]>
Date: Wed Jun 5 17:10:11 2024 -0700
structured state into url parameters
[33mcommit a83a5d79649f04785ff7ecd2aa4d0523d68408bb[m
Merge: 8af3c5c00 5f9925a0f
Author: audinowho <[email protected]>
Date: Tue May 28 16:32:50 2024 -0800
Merge pull request #96 from 25Pi25/shopping_cart
fixed merging credits
[33mcommit 5f9925a0fb02f9df81cd1b3d49d39e8926a372bd[m
Author: 25Pi25 <[email protected]>
Date: Tue May 28 13:49:49 2024 -0700
fixed merging credits
[33mcommit 8af3c5c00dffe3626a88043897741277ee46d703[m
Merge: 0277b8cfb 0b4e644ca
Author: audinowho <[email protected]>
Date: Mon May 27 18:07:27 2024 -0800
Merge pull request #95 from 25Pi25/shopping_cart
Shopping Cart
[33mcommit 0b4e644caa05dee69eb3dcab700478a12df19744[m
Author: 25Pi25 <[email protected]>
Date: Mon May 27 16:31:33 2024 -0700
implemented context provider for state and added a line break in credit shopping car
[33mcommit eb03e387aac6f1e622bb2836201b5e84ff6da4e0[m
Author: 25Pi25 <[email protected]>
Date: Sat May 25 17:40:03 2024 -0700
idk if this changes anything but im doing it
[33mcommit 13e52cab12e78ba4668444db9bd42091318e41eb[m
Author: 25Pi25 <[email protected]>
Date: Sat May 25 17:27:26 2024 -0700
extra button margin
[33mcommit 5cb7d3151b4df68ecc9cdc6728980bbf602eec48[m
Author: 25Pi25 <[email protected]>
Date: Sat May 25 17:22:35 2024 -0700
finished shopping cart FINALLY
[33mcommit 2898606720b0aafe1fc861fcd3e526417858952f[m
Merge: 510f4b261 99d5c13de
Author: 25Pi25 <[email protected]>
Date: Mon Mar 18 12:29:58 2024 -0400
Merge branch 'master' of https://github.com/25Pi25/PMD-collab-wiki into shopping_cart
[33mcommit 0277b8cfb7a7fa045aa3b1b674ef70422c244a48[m
Merge: 1c8503591 99d5c13de
Author: Keldaan <[email protected]>
Date: Fri Mar 8 19:35:58 2024 +0100
Merge pull request #94 from 25Pi25/master
fixed manual query
[33mcommit 99d5c13de99e24a4bf026da61f41cd28c2163c6b[m
Merge: fc8e9c247 1c8503591
Author: 25Pi25 <[email protected]>
Date: Fri Mar 8 13:24:16 2024 -0500
Merge branch 'PMDCollab:master' into master
[33mcommit fc8e9c247fa72718c8664344d706397c31878388[m
Author: 25Pi25 <[email protected]>
Date: Fri Mar 8 13:23:39 2024 -0500
fixed manual query
[33mcommit 1c8503591899b9b314cf5cfc4a53d20b8403164c[m
Merge: 76aa1c58f f2e545b8f
Author: Keldaan <[email protected]>
Date: Fri Mar 8 16:14:33 2024 +0100
Merge pull request #93 from PMDCollab/revert-pixi
Revert "add warnings"
[33mcommit f2e545b8f9ed987434f6b651c8ec3beae493b56f[m
Author: keldaan <[email protected]>
Date: Fri Mar 8 16:13:52 2024 +0100
Revert "add warnings"
This reverts commit d14c557c1f23307131348f7723b4f18a26f45a3e.
Revert "remove clearTextureCache"
This reverts commit 4e56752dd42e1036ad33440f215c26f640e2b394.
Revert "fix crash"
This reverts commit 11c90c4b65179f98135a2fe7972fba62f86f2877.
Revert "custom hooks"
This reverts commit 57c9b242a70a922ddfe56e342b76e97f8a5bb276.
Revert "refresh"
This reverts commit 351603c43b68992166fb510442797b0d0694ca0c.
Revert "change from phaser to react pixi"
This reverts commit 76f92f8a647597f780ca1ebea9d4c506e0f22eee.
[33mcommit 76aa1c58fa73d4d169c33340f1f88606f9d49e37[m
Merge: 87b2c34ad f83aaff3e
Author: Keldaan <[email protected]>
Date: Fri Mar 8 16:03:40 2024 +0100
Merge pull request #91 from PMDCollab/enable-cache
enable cache for prod
[33mcommit f83aaff3e9f22de932f9810f4741fa63e4b38ac6[m
Author: keldaan <[email protected]>
Date: Fri Mar 8 16:03:03 2024 +0100
enable cache for prod
[33mcommit 87b2c34adc15ac3acdd044eb0766d123d1afd4b4[m
Merge: 587963e5b d14c557c1
Author: Keldaan <[email protected]>
Date: Fri Mar 8 15:52:40 2024 +0100
Merge pull request #89 from PMDCollab/react-pixi
Switch to React pixi
[33mcommit d14c557c1f23307131348f7723b4f18a26f45a3e[m
Author: keldaan <[email protected]>
Date: Fri Mar 8 15:52:17 2024 +0100
add warnings
[33mcommit 587963e5b6d4b0d9de67799033e71dc771dbabed[m
Merge: 260128e3d 44bfbd441
Author: Keldaan <[email protected]>
Date: Fri Mar 8 15:17:38 2024 +0100
Merge pull request #90 from 25Pi25/master
fixed incorrect destructuring on sprite/portrait bounties
[33mcommit 44bfbd4413010bb1f5ad13ec6d94e1ade4aee287[m
Author: 25Pi25 <[email protected]>
Date: Fri Mar 8 09:14:23 2024 -0500
fixed incorrect destructuring on sprite/portrait bounties
[33mcommit 4e56752dd42e1036ad33440f215c26f640e2b394[m
Author: keldaan <[email protected]>
Date: Fri Mar 8 15:09:11 2024 +0100
remove clearTextureCache
[33mcommit 510f4b261becb1d1e54553bfe0dde17509fd2479[m
Author: 25Pi25 <[email protected]>
Date: Fri Mar 8 09:08:42 2024 -0500
shopping cart
[33mcommit 11c90c4b65179f98135a2fe7972fba62f86f2877[m
Author: keldaan <[email protected]>
Date: Fri Mar 8 14:57:46 2024 +0100
fix crash
[33mcommit 57c9b242a70a922ddfe56e342b76e97f8a5bb276[m
Author: keldaan <[email protected]>
Date: Fri Mar 8 12:56:30 2024 +0100
custom hooks
[33mcommit 351603c43b68992166fb510442797b0d0694ca0c[m
Author: keldaan <[email protected]>
Date: Thu Mar 7 23:21:58 2024 +0100
refresh
[33mcommit 76f92f8a647597f780ca1ebea9d4c506e0f22eee[m
Author: keldaan <[email protected]>
Date: Thu Mar 7 21:22:14 2024 +0100
change from phaser to react pixi
[33mcommit 260128e3d7617f606bef5d694283a6cda3224854[m
Merge: b267ad1ee b5d5dc32e
Author: audinowho <[email protected]>
Date: Sun Mar 3 17:48:09 2024 -0800
Merge pull request #88 from 25Pi25/master
hyperlinked with credit
[33mcommit b5d5dc32e7726d871a2ea7c4f3384cceb32e3a52[m
Author: 25Pi25 <[email protected]>
Date: Sun Mar 3 19:58:13 2024 -0500
added credits.txt files to info pages
[33mcommit cb9275e29fd3c829a267e122695891105d1fab63[m
Merge: e6d2708d2 b267ad1ee
Author: 25Pi25 <[email protected]>
Date: Wed Feb 28 12:25:06 2024 -0500
Merge branch 'PMDCollab:master' into master
[33mcommit e6d2708d2044f001bd1d0759b525793ff1eadd5e[m
Author: 25Pi25 <[email protected]>
Date: Wed Feb 28 12:23:14 2024 -0500
changed discord channel name
[33mcommit a28ac22d4dc2c59f6277c7595ec0e598c6a96105[m
Author: 25Pi25 <[email protected]>
Date: Wed Feb 28 12:19:53 2024 -0500
linked it properly
[33mcommit fb9ccca9324687ca0e45e4ebb18f9ed3c6c52e71[m
Author: 25Pi25 <[email protected]>
Date: Wed Feb 28 12:15:14 2024 -0500
redundant property
[33mcommit 302b4288e2cb889ec3e583896652be6fccdce4f0[m
Author: 25Pi25 <[email protected]>
Date: Wed Feb 28 12:11:51 2024 -0500
hyperlinkable credit
[33mcommit b267ad1eec15eb545463d10d315d49e5d96bb32e[m
Merge: 2e26ff1c9 a44e3d96d
Author: audinowho <[email protected]>
Date: Mon Feb 26 18:22:53 2024 -0800
Merge pull request #86 from 25Pi25/master
reverting phaser
[33mcommit a44e3d96d02f5507741d7db4303f9e2f2706726a[m
Author: 25Pi25 <[email protected]>
Date: Mon Feb 26 13:06:36 2024 -0500
destroy canvas on route change
[33mcommit 1da46d6ef7842ec4f949bb5ebab55cfe85d1af9b[m[33m ([m[1;32mmain[m[33m)[m
Merge: 3657fdfcc 08d1d647e
Author: 25Pi25 <[email protected]>
Date: Mon Feb 26 12:53:39 2024 -0500
Merge pull request #3 from 25Pi25/temp
fixed phaser instances not being disposed properly
[33mcommit 08d1d647e1b5644de6c9e5ca2e9f343abb9f18cf[m
Author: 25Pi25 <[email protected]>
Date: Mon Feb 26 12:52:33 2024 -0500
fixed phaser instances not being disposed properly
[33mcommit 3657fdfcc4a43c92eb8945075a7aeef90bbc54b8[m
Merge: b910cc9ce 2e26ff1c9
Author: 25Pi25 <[email protected]>
Date: Mon Feb 26 09:54:29 2024 -0500
Merge branch 'PMDCollab:master' into master
[33mcommit b910cc9ce70b9756b3fa17b1ff0e88d4d0ea217a[m
Merge: ee7772215 b9e5c9293
Author: 25Pi25 <[email protected]>
Date: Mon Feb 26 09:54:19 2024 -0500
Merge pull request #2 from 25Pi25/temp
Temp
[33mcommit b9e5c92933a6b10a8df2cae1f3186c6af0389bdd[m
Author: 25Pi25 <[email protected]>
Date: Mon Feb 26 09:53:50 2024 -0500
reverted phaser
[33mcommit 6204c716ae073b03442df7c19038455f4faf9d6d[m
Author: 25Pi25 <[email protected]>
Date: Mon Feb 26 09:52:24 2024 -0500
reverted phaser
[33mcommit 2e26ff1c9245a07d2518fecb40f90dafd43c37e4[m
Merge: 8d30693e0 ee7772215
Author: audinowho <[email protected]>
Date: Tue Feb 20 16:29:23 2024 -0800
Merge pull request #85 from 25Pi25/master
better mobile view
[33mcommit ee7772215a0f1316ba44a6846649b59b249323bf[m
Author: 25Pi25 <[email protected]>
Date: Tue Feb 20 15:00:06 2024 -0500
better mobile view
[33mcommit 8d30693e0ab2ab844d496213d9720505b33c8ba3[m
Merge: b62e7191a 7eaf3bdd1
Author: audinowho <[email protected]>
Date: Mon Feb 19 21:08:34 2024 -0800
Merge pull request #84 from PMDCollab/creative_commons
remove extra unacceptable use case
[33mcommit 7eaf3bdd11bf791b9da563c0bcc5e9e960d82ae8[m
Author: Audino <[email protected]>
Date: Mon Feb 19 21:08:06 2024 -0800
remove extra unacceptable use case
[33mcommit b62e7191a9a1189352929657e9b818ccbe6c733b[m
Merge: 33d6f61d4 095d3e39c
Author: audinowho <[email protected]>
Date: Mon Feb 19 21:01:53 2024 -0800
Merge pull request #83 from PMDCollab/creative_commons
remove CC images to reduce line height
[33mcommit 095d3e39cf324fa619688ccd2dd63c481f2176ac[m
Author: Audino <[email protected]>
Date: Mon Feb 19 21:01:30 2024 -0800
remove CC images to reduce line height
[33mcommit 33d6f61d4479e63e124b6e1b88da34ac3c884904[m
Merge: 930c6a87c 3d8b82d12
Author: audinowho <[email protected]>
Date: Mon Feb 19 20:56:57 2024 -0800
Merge pull request #82 from PMDCollab/creative_commons
re-add imgs, use one typography tag
[33mcommit 3d8b82d12a138c15a59cf3fbc94ed0d9a5dd8b33[m
Author: Audino <[email protected]>
Date: Mon Feb 19 20:56:29 2024 -0800
re-add imgs, use one typography tag
[33mcommit 930c6a87c72623810a99ecb0607b0ca2a877e279[m
Merge: c97b0cb21 5f3ce4604
Author: audinowho <[email protected]>
Date: Mon Feb 19 20:51:39 2024 -0800
Merge pull request #81 from PMDCollab/creative_commons
remove images from creative commons section
[33mcommit 5f3ce4604b2d530d395d27c59a02abd46263fdd9[m
Author: Audino <[email protected]>
Date: Mon Feb 19 20:50:39 2024 -0800
remove images
[33mcommit c97b0cb218bbeceb40fb732e24bae99f30eeae43[m
Merge: d50b108ec d7aef1558
Author: audinowho <[email protected]>
Date: Mon Feb 19 20:47:42 2024 -0800
Merge pull request #80 from PMDCollab/creative_commons
smaller icons
[33mcommit d7aef1558e8c6ec1af77006b6944cdfa6a6880b0[m
Author: Audino <[email protected]>
Date: Mon Feb 19 20:47:19 2024 -0800
smaller icons
[33mcommit d50b108ecdf156dfc2a12d4421c265f15f93c796[m
Merge: 2a4f5cfe6 dfea25dd1
Author: audinowho <[email protected]>
Date: Mon Feb 19 20:31:44 2024 -0800
Merge pull request #79 from 25Pi25/master
quick hotfix #2 because i did a dumb dumb fumble
[33mcommit dfea25dd15096ee462a8905ed7033377b5bd8caf[m
Merge: 93c69ec0a 2a4f5cfe6
Author: 25Pi25 <[email protected]>
Date: Mon Feb 19 23:30:55 2024 -0500
Merge branch 'PMDCollab:master' into master
[33mcommit 93c69ec0a2986b92704e6899ba052b7df28a04f0[m
Author: 25Pi25 <[email protected]>
Date: Mon Feb 19 23:29:58 2024 -0500
quick hotfix on date
[33mcommit 2a4f5cfe6d00490a5a376d7555ec821f39ab10d4[m
Merge: ad7294eba a0464536c
Author: audinowho <[email protected]>
Date: Mon Feb 19 20:23:33 2024 -0800
Merge pull request #78 from PMDCollab/creative_commons
simplify link
[33mcommit a0464536c5a19a80741acc6e4b22db2aa0722c57[m
Author: Audino <[email protected]>
Date: Mon Feb 19 20:22:59 2024 -0800
simplify link
[33mcommit ad7294ebab4af1dbbbc50aec9fecba85fe764aab[m
Merge: d9a4efa78 1d3c29c76
Author: audinowho <[email protected]>
Date: Mon Feb 19 20:20:47 2024 -0800
Merge pull request #77 from PMDCollab/creative_commons
img maxwidth
[33mcommit 1d3c29c76c068ecac5335e40d0d224ca30d4c3ec[m
Author: Audino <[email protected]>
Date: Mon Feb 19 20:20:06 2024 -0800
img maxwidth
[33mcommit d9a4efa78914075c63025fcf118c3ac364f149a3[m
Merge: 3be8c3e25 ebfb5771a
Author: audinowho <[email protected]>
Date: Mon Feb 19 20:09:19 2024 -0800
Merge pull request #76 from PMDCollab/creative_commons
img closing tags
[33mcommit ebfb5771a6922e53cbad1c7aeebe8420075672cc[m
Author: Audino <[email protected]>
Date: Mon Feb 19 20:08:18 2024 -0800
img closing tags
[33mcommit 3be8c3e25ee9c03aa6c6528b1e1d82d2624b2d09[m
Merge: 9965e0e64 31280a1b4
Author: audinowho <[email protected]>
Date: Mon Feb 19 20:05:26 2024 -0800
Merge pull request #75 from 25Pi25/master
hotfix
[33mcommit 31280a1b4a9d0473f028c09ec0e895f3f41e01e5[m
Merge: 82f6af74c 9965e0e64
Author: 25Pi25 <[email protected]>
Date: Mon Feb 19 22:59:44 2024 -0500
Merge branch 'PMDCollab:master' into master
[33mcommit 82f6af74ca2d88a383fc0323e13f863fe2bdfa7b[m
Author: 25Pi25 <[email protected]>
Date: Mon Feb 19 22:59:15 2024 -0500
quick hotfix on date
[33mcommit 9965e0e64764be5ca8ae7f46ffb67c61deab87e1[m
Merge: 511a2bd55 d5c765b44
Author: audinowho <[email protected]>
Date: Mon Feb 19 19:48:32 2024 -0800
Merge pull request #74 from PMDCollab/creative_commons
add creative commons message with images
[33mcommit d5c765b44630a5d2464566149f87a684770fa7dd[m
Author: Audino <[email protected]>
Date: Mon Feb 19 19:47:13 2024 -0800
add creative commons message
[33mcommit 511a2bd55d64ea42b0ec0b47f9ea19d2a87994fd[m
Merge: 619fbf842 70228bd1f
Author: audinowho <[email protected]>
Date: Mon Feb 19 19:44:38 2024 -0800
Merge pull request #73 from PMDCollab/creative_commons
links only
[33mcommit 70228bd1fe5e96267bf82ee84d3bdd230a082238[m
Author: Audino <[email protected]>
Date: Mon Feb 19 19:41:40 2024 -0800
links only
[33mcommit 619fbf84225f6ad42c9cb1f5bc9e704442473585[m
Merge: e1e58bde6 670d504b4
Author: audinowho <[email protected]>
Date: Mon Feb 19 19:34:47 2024 -0800
Merge pull request #72 from PMDCollab/creative_commons
About fix with license
[33mcommit 670d504b4ddfa04dfd0c12987932b4ed0e84d33b[m
Author: Audino <[email protected]>
Date: Mon Feb 19 19:32:17 2024 -0800
About fix with license
[33mcommit e1e58bde690ac5cdfa82cccc5d9e1ebf12f5f163[m
Merge: 5c2a980b3 2dd99a8c1
Author: audinowho <[email protected]>
Date: Sun Feb 18 08:34:40 2024 -0800
Merge pull request #71 from 25Pi25/master
Error screen and XML loading
[33mcommit 2dd99a8c1b4b57b985d066d35c74a729f34a6dde[m
Author: 25Pi25 <[email protected]>
Date: Sat Feb 17 18:01:38 2024 -0500
expanded site up to the full vertical heigh
[33mcommit c1e5bb1859ee4bf713f743ded2f730a4a2016524[m
Merge: 43173de4b c7b7f2e56
Author: 25Pi25 <[email protected]>
Date: Sat Feb 17 17:53:42 2024 -0500
Merge branch 'master' of https://github.com/25Pi25/PMD-collab-wiki
[33mcommit 43173de4b71297b29116c8dae7fc11f2435faac9[m
Author: 25Pi25 <[email protected]>
Date: Sat Feb 17 17:53:31 2024 -0500
don't parse if unavailale
[33mcommit c7b7f2e56a33226633be2923b529e6783a3130d4[m
Merge: 458f3181f 5c2a980b3
Author: 25Pi25 <[email protected]>
Date: Sat Feb 17 17:49:32 2024 -0500
Merge branch 'PMDCollab:master' into master
[33mcommit 458f3181f770aac41c47da7d747c2458e0def635[m
Author: 25Pi25 <[email protected]>
Date: Sat Feb 17 17:49:11 2024 -0500
added error page and optimized xml loading
[33mcommit 5c2a980b36eaa207f30ae62d0a9ea199d2f2a352[m
Merge: 0478c5645 877514042
Author: audinowho <[email protected]>
Date: Mon Jan 29 09:33:35 2024 -0800
Merge pull request #70 from 25Pi25/master
fix incorrect use of useState on maps
[33mcommit 877514042c98af15b6beb2aa5dab3db5a61d92fe[m
Merge: ddbc95c55 7ccc716fc
Author: 25Pi25 <[email protected]>
Date: Mon Jan 29 08:40:12 2024 -0500
Merge branch 'master' of https://github.com/25Pi25/PMD-collab-wiki
[33mcommit ddbc95c553bfed61cba9a92433189efd7e2456f1[m
Author: 25Pi25 <[email protected]>
Date: Mon Jan 29 08:40:06 2024 -0500
removed console log
[33mcommit 7ccc716fc9710b51794b1c6a58a2e2acd8a80ae5[m
Merge: 7ed1d9bba 0478c5645
Author: 25Pi25 <[email protected]>
Date: Mon Jan 29 08:38:36 2024 -0500
Merge branch 'PMDCollab:master' into master
[33mcommit 7ed1d9bbae89f32fa26fdab421849eb9be39c36b[m
Author: 25Pi25 <[email protected]>
Date: Mon Jan 29 08:38:11 2024 -0500
fixed incorrect useState on map
[33mcommit 0478c564543cde93cebaeebd19fde29142dc3c11[m
Merge: 8c2fdaae5 5018109bc
Author: audinowho <[email protected]>
Date: Fri Jan 26 18:08:10 2024 -0800
Merge pull request #69 from 25Pi25/master
project refactorings in state and filter functionality
[33mcommit 5018109bc7d9d13608272ddb539843c46fc44d05[m
Author: 25Pi25 <[email protected]>
Date: Mon Jan 22 17:22:58 2024 -0500
might as well make all of them consts
[33mcommit 70cacb5da2757ac0bad002604cb02f0fe90121d9[m
Author: 25Pi25 <[email protected]>
Date: Mon Jan 22 17:11:48 2024 -0500
fixed buggy filter params
[33mcommit 11f83ca11e8663ab23e0447cb18b4e1c4a55a7c4[m
Author: 25Pi25 <[email protected]>
Date: Mon Jan 22 16:27:17 2024 -0500
moved use state util type
[33mcommit 2f6a601344a05463d9b6cdf8f60f2702e058b6c5[m
Author: 25Pi25 <[email protected]>
Date: Mon Jan 22 16:26:08 2024 -0500
converted filters/toggles to maps and added better filter functionality
[33mcommit 9478fdac2fcf9749cc99953459d15bc2d835ea33[m
Author: 25Pi25 <[email protected]>
Date: Fri Jan 19 20:50:27 2024 -0500
refactored filter parameters
[33mcommit 117125ae0b9b75c9a7380fa77c99bb9a6d39a3f9[m
Merge: 8c2fdaae5 8caeb511c
Author: 25Pi25 <[email protected]>
Date: Fri Jan 19 19:40:53 2024 -0500
Merge pull request #1 from 25Pi25/temp
refactored toggle parameters
[33mcommit 8caeb511c4d7cd71632cf02f820d877c0696882d[m
Author: 25Pi25 <[email protected]>
Date: Fri Jan 19 19:39:19 2024 -0500
refactored toggle parameters
[33mcommit 8c2fdaae5e77a121647637d3491abaafa90b612f[m
Merge: 416a9d947 547f7e2bb
Author: audinowho <[email protected]>
Date: Sat Dec 30 10:57:09 2023 -0800
Merge pull request #68 from 25Pi25/master
rendering optimizations
[33mcommit 547f7e2bbe46f390a1b51e2d1db61bde6f1a4a60[m
Merge: fe1d40ee6 416a9d947
Author: 25Pi25 <[email protected]>
Date: Fri Oct 20 11:36:16 2023 -0700
Merge branch 'PMDCollab:master' into master
[33mcommit fe1d40ee645fd3259e3de3f6439ae2d94dc4048f[m
Author: 25Pi25 <[email protected]>
Date: Fri Oct 20 14:35:58 2023 -0400
change events for parameters are async and the page will load the first 151 results first
[33mcommit 416a9d947ea62d30e54e12f784fa49d1f73772c6[m
Merge: 9aa5ee7b3 dae906c0a
Author: Keldaan <[email protected]>
Date: Mon Oct 16 13:34:24 2023 +0200
Merge pull request #67 from PMDCollab/remove-reputation
remove reputation
[33mcommit dae906c0ae91d8002ee7b63013d434827b9175fc[m
Author: arnaud.gregoire <[email protected]>
Date: Mon Oct 16 13:33:56 2023 +0200
remove reputation
[33mcommit 9aa5ee7b360ccd47a9901fcab64b3227f23685d9[m
Merge: be2b8fa7a 9953a804e
Author: Keldaan <[email protected]>
Date: Wed Oct 11 14:57:35 2023 +0200
Merge pull request #65 from 25Pi25/master
fixed unnecessary sprites breaking bounties
[33mcommit 9953a804ee10e8eb13b9c3c0c74d03227440f1f5[m
Author: 25Pi25 <[email protected]>
Date: Mon Oct 9 16:38:28 2023 -0400
fixed unnecessary sprites breaking bounties
[33mcommit be2b8fa7af0f9b03f02b6a36596492d8a78948c9[m
Merge: 85b598dea 383933649
Author: Keldaan <[email protected]>
Date: Wed Sep 20 19:54:57 2023 +0200
Merge pull request #64 from 25Pi25/master
fixed text scaling from the initial name to individual names
[33mcommit 383933649eadc27e6ac50d7c54989fb8e51a9c7b[m
Merge: 57fe136d2 85b598dea
Author: 25Pi25 <[email protected]>
Date: Wed Sep 20 05:10:49 2023 -0700
Merge branch 'PMDCollab:master' into master
[33mcommit 57fe136d230a130170f9704f413e528779dcc787[m
Author: 25Pi25 <[email protected]>
Date: Wed Sep 20 08:10:13 2023 -0400
text scales individually instead of by the initial name
[33mcommit 85b598dea36123624c9ba3a833b4da06e94c1eb1[m
Merge: 903cecc25 e727eac12
Author: Keldaan <[email protected]>
Date: Wed Sep 20 09:04:56 2023 +0200
Merge pull request #63 from 25Pi25/master
switching to vite for the development server and auto-sizing for text boxes
[33mcommit e727eac120c17aed6921bdbde47dd0def3ccde44[m
Author: 25Pi25 <[email protected]>
Date: Tue Sep 19 22:51:39 2023 -0400
removed null case that isnt null i guess
[33mcommit 433765ac35aa0dfa1d1dbdb52a6476f51f8eb25a[m
Author: 25Pi25 <[email protected]>
Date: Tue Sep 19 22:40:51 2023 -0400
oops i should fix these words