forked from galgotuberz/FlamePaper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
h
12217 lines (8208 loc) · 406 KB
/
h
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 370a00abecbdbb6d60634fa2eb261e0d42c5b3a7[m[33m ([m[1;36mHEAD -> [m[1;32mver/1.8.8[m[33m)[m
Author: LinsaFTW <[email protected]>
Date: Sat Jan 14 01:45:30 2023 -0300
Fix Version Command
[33mcommit 2ae641e3a9a421b569904109d950085d2a36f7a9[m[33m ([m[1;31morigin/ver/1.8.8[m[33m, [m[1;31morigin/HEAD[m[33m)[m
Author: LinsaFTW <[email protected]>
Date: Sat Jan 14 00:49:38 2023 -0300
Improved CPU Usage
[33mcommit b174585d54c9d4690b3a4fd059565d54ddb8464c[m
Author: LinsaFTW <[email protected]>
Date: Sat Jan 14 00:15:19 2023 -0300
FlamePaper versioning (1.0.0)
[33mcommit 54e45e42a79c01e53502ec269a2060910e567b50[m
Author: LinsaFTW <[email protected]>
Date: Fri Jan 13 17:43:33 2023 -0300
Fix Incompatible Plugins
[33mcommit 43b9617b10da08ed9e3a337f92ad92b4c51aaeab[m
Author: LinsaFTW <[email protected]>
Date: Fri Jan 13 17:33:53 2023 -0300
Fix NaN errors & NoSuchMethod (Multiverse/KillStats)
[33mcommit f32b221733f90c5cb3c80de0838bbe607ce27b76[m[33m ([m[1;32mspigot[m[33m)[m
Author: LinsaFTW <[email protected]>
Date: Wed Jan 11 18:38:37 2023 -0300
Factions Cannon Improvements & Bucket Fixes
[33mcommit fa1485154138b14ce8e93c4c783107016f5f83f6[m
Author: LinsaFTW <[email protected]>
Date: Mon Dec 26 10:28:38 2022 -0300
Fix low TPS error
[33mcommit a84839cfafdb0f64e95302e384fea74ad8b73ac3[m
Author: LinsaFTW <[email protected]>
Date: Sun Dec 25 22:58:39 2022 -0300
Fix Netty Errors And Bump
[33mcommit a7bb061fc210038a1fc1d0e054109315a0db7f22[m
Author: LinsaFTW <[email protected]>
Date: Thu Dec 22 23:42:35 2022 -0300
Remove Debug Log Idle Player
[33mcommit c03a78dfa41c8a1937a09227f6631febadc7741d[m
Author: LinsaFTW <[email protected]>
Date: Thu Dec 22 23:40:35 2022 -0300
Disable Idle Player Position Updates
[33mcommit 793faa70b920c4439c2730ba2934ae6e25f85eb2[m
Author: LinsaFTW <[email protected]>
Date: Thu Dec 22 22:22:40 2022 -0300
Optimize Head Rotation
[33mcommit 889aaf11fac0235b911233a8d1029ba03aabaf27[m
Author: LinsaFTW <[email protected]>
Date: Sat Dec 17 15:33:06 2022 -0300
Use Netty 4.1.69
[33mcommit 9cd59d13fd005b14eb0acb767938885c92564e0c[m
Author: LinsaFTW <[email protected]>
Date: Mon Dec 12 00:16:25 2022 +0100
Use isActive instead of isOpen
[33mcommit 4818d5ba042b46153bc6b411ec2d571e09256493[m
Merge: 96608d0d 04cf91ca
Author: Juan Cruz Linsalata <[email protected]>
Date: Sun Dec 11 22:11:22 2022 +0100
Merge pull request #45 from KurumiFake/ver/1.8.8
replace vanilla jar download link
[33mcommit 96608d0dc4ad277455d7acf0f9ffa6c873e63042[m
Author: LinsaFTW <[email protected]>
Date: Tue Dec 6 18:21:10 2022 +0000
Fix Null ItemUse Exploit
[33mcommit 04cf91ca222c73d13a198dfe4bd0d5e60a180838[m
Author: KurumiFake <[email protected]>
Date: Wed Nov 23 19:49:15 2022 +0700
replace vanilla jar download link
[33mcommit 325b2f68a0c0aa695d3e9725aeda171c1199ba19[m
Author: LinsaFTW <[email protected]>
Date: Thu Oct 27 14:46:06 2022 +0200
Improve chunk memory leak fix
[33mcommit c9a90c1a3889c995c12f96ac96419cd041cf0ae9[m
Author: LinsaFTW <[email protected]>
Date: Thu Oct 27 13:21:46 2022 +0200
Use netty-all
[33mcommit 327e23b902ea013640d994d9b6803c005dbc5c83[m
Author: LinsaFTW <[email protected]>
Date: Thu Oct 27 13:10:30 2022 +0200
Properly Bump Netty
[33mcommit 3b7fa04488b55ddc55b844ab9ead2e053a425e0c[m
Author: LinsaFTW <[email protected]>
Date: Thu Oct 27 12:57:13 2022 +0200
Disable deprecation mappings
[33mcommit b6c3791f15f9c444e182fe3bc06c8377a44191d1[m
Author: LinsaFTW <[email protected]>
Date: Thu Oct 27 12:53:13 2022 +0200
Bump netty to latest
[33mcommit f6b10d4760fc8a03aaede2f6ddb5043e96a2fd68[m
Merge: acaf625c 59da91e8
Author: Juan Cruz Linsalata <[email protected]>
Date: Sat Apr 30 22:07:45 2022 -0300
Merge pull request #33 from lordhadow1/fix-pom
fix pom
[33mcommit 59da91e88be4c290e8239cf2642110e82b67bb9d[m
Author: lordhadow1 <[email protected]>
Date: Sun May 1 03:03:53 2022 +0200
Delete pom.xml.bak
[33mcommit 5baabaf5ef660af3b16d781d418426eea877c35a[m
Author: lordhadow1 <[email protected]>
Date: Sun May 1 03:02:44 2022 +0200
fix pom
[33mcommit acaf625ca0b7826b76e1c98cf4b62a88127a9f01[m
Author: LinsaFTW <[email protected]>
Date: Tue Apr 26 13:05:46 2022 -0300
Increase ChatComponent Limit to 128
[33mcommit e3e4fb594be0c8fa3154d7a83f71cf737a18db57[m
Author: LinsaFTW <[email protected]>
Date: Fri Apr 22 13:50:52 2022 -0300
Disconnect Spam Options
[33mcommit ac8f21e672f526d4edc4e423eaa060f8a8e16810[m
Author: LinsaFTW <[email protected]>
Date: Fri Apr 22 13:32:39 2022 -0300
Fix Factions & Others ChatComponents
[33mcommit 5a4ffeb9b6430072e15cb74c34ce3cd24b4b7910[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Fri Apr 22 13:17:17 2022 -0300
Create LICENSE
[33mcommit 0dd42fcda461d688f4d1964c9a4bd1a0c7ae1638[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Sun Mar 27 01:43:27 2022 -0300
Update README.md
[33mcommit 4d3e6bd7f58cc79f442741be55a888013a2ba7e0[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Thu Mar 24 23:24:01 2022 -0300
Delete .github/workflows directory
[33mcommit 29e0a4de57e6bb1b58b294fa97368a798d5f2891[m
Author: LinsaFTW <[email protected]>
Date: Thu Mar 24 21:07:21 2022 -0300
Improve hopper performance
[33mcommit 17ed779b2a4b5622cc3af9bd3c05c5ce0df56171[m
Author: LinsaFTW <[email protected]>
Date: Thu Mar 24 04:20:56 2022 -0300
Hopper optimizations
[33mcommit 3c0b34e930806bd4fc14d2b5e0a3b805b4044185[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Sat Mar 19 20:25:37 2022 -0300
Update README.md
[33mcommit e44b226c971bf313789a0aea7f3dad3db88d5eb8[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Sat Mar 19 20:24:51 2022 -0300
Update README.md
[33mcommit f15f7ffb02d781cc6a15a2bcd81c713cccb7b255[m
Author: LinsaFTW <[email protected]>
Date: Tue Mar 15 18:04:03 2022 -0300
Configurable page limit
[33mcommit cd72a86499d860f3dbcd852e115e275a9d5dd717[m
Author: LinsaFTW <[email protected]>
Date: Tue Mar 15 17:30:48 2022 -0300
Fix some plugins not sending messsages correctly
[33mcommit 6b6a156b5c2d63d42916641f72f79db7bb3e9217[m
Author: LinsaFTW <[email protected]>
Date: Tue Mar 15 12:13:07 2022 -0300
Rename to FlamePaper
[33mcommit 9bb3ac0a300506941ee1e90e625358f6db58a101[m
Author: LinsaFTW <[email protected]>
Date: Tue Mar 15 12:06:43 2022 -0300
Adaptative chunk GC
[33mcommit c6ecdea1291709351594bdf1fe0a5fe003ec400b[m
Author: LinsaFTW <[email protected]>
Date: Tue Mar 15 12:06:32 2022 -0300
Fast Versioning
[33mcommit cdbe90b66133d0cea6342242d75dddbd2b0642f6[m
Author: LinsaFTW <[email protected]>
Date: Tue Mar 15 12:06:24 2022 -0300
Disable stackable buckets
[33mcommit 0b4b04bdc6d5cb1a673979b0ff04a7292fdba218[m
Author: LinsaFTW <[email protected]>
Date: Tue Mar 15 12:06:13 2022 -0300
Disable entities loading chunks
[33mcommit 98541026dbd1ca731014dc701696d220665b3dc1[m
Merge: c3fec71f ee40df9a
Author: LinsaFTW <[email protected]>
Date: Tue Mar 15 09:51:38 2022 -0300
Merge branch 'ver/1.8.8' of https://github.com/2lstudios-mc/FlamePaper into ver/1.8.8
[33mcommit c3fec71f17eac699bd5e2feec6ddfba151c604e4[m
Author: LinsaFTW <[email protected]>
Date: Tue Mar 15 09:51:31 2022 -0300
Option for map decorators
[33mcommit ee40df9a66a8af1b4e2526678a25df869e4d7d06[m
Merge: eff5ff82 b9659088
Author: Juan Cruz Linsalata <[email protected]>
Date: Mon Mar 14 17:10:09 2022 -0300
Merge pull request #28 from samupro-dev/ver/1.8.8
Workflows updated and fixed artifact upload
[33mcommit eff5ff8209927da6a24484bd77bfcf91162d1adf[m
Author: LinsaFTW <[email protected]>
Date: Mon Mar 14 17:09:11 2022 -0300
Disable Nether Roof Interaction
[33mcommit b9659088281caaa1338690edec6f61042a9fa721[m
Author: samupro-dev <[email protected]>
Date: Mon Mar 14 16:19:52 2022 +0100
Update flamepaper-pull-request.yml
[33mcommit 73996f7f882ce79957ab895b3e000d6b3e42b849[m
Author: samupro-dev <[email protected]>
Date: Mon Mar 14 16:19:46 2022 +0100
Update flamepaper-build.yml
[33mcommit 052d4cda94218055038cb8358c53260a09f3f704[m
Author: LinsaFTW <[email protected]>
Date: Mon Mar 14 01:19:54 2022 -0300
Improve limit chatcomponents patch
[33mcommit e5cf6f81f56ac79520eaec779c868915ac79e8f9[m
Author: LinsaFTW <[email protected]>
Date: Mon Mar 14 00:53:13 2022 -0300
Color version command no plugin message
[33mcommit a14adef1fd10ede46ab71d4802a0d507068f5277[m
Author: LinsaFTW <[email protected]>
Date: Mon Mar 14 00:31:41 2022 -0300
Add version number to version command
[33mcommit 14916161766bb28330fba06b3e9c12841c61e368[m
Author: LinsaFTW <[email protected]>
Date: Sun Mar 13 23:16:57 2022 -0300
Even more improvements to patch 24
[33mcommit 89c6421fcfd39c56ecc3246a531c4c81075184c3[m
Author: LinsaFTW <[email protected]>
Date: Sun Mar 13 23:06:36 2022 -0300
Improve Disable Unloaded Chunk Movement
[33mcommit 8e6a30a51ca9ff3ecb9d61db0348b4e625e2626f[m
Author: LinsaFTW <[email protected]>
Date: Sun Mar 13 23:03:57 2022 -0300
Disable Unloaded Chunk Movement (Fix many teleport bugs)
[33mcommit 4a0e689a2f88439ab6916b98530e3b3cace9d7a6[m
Author: LinsaFTW <[email protected]>
Date: Sun Mar 13 23:03:37 2022 -0300
Disable even more startup stuff
[33mcommit b30913f7a26a377c29bb898d21d78eaa1875a7ed[m
Author: LinsaFTW <[email protected]>
Date: Sun Mar 13 22:23:18 2022 -0300
Update Version Command
[33mcommit a9ebae8c489f58a5fc70e46af69e6933abb85f07[m
Author: LinsaFTW <[email protected]>
Date: Sun Mar 13 21:07:57 2022 -0300
Readd ArtifactId
[33mcommit 3d9883b40d79c5cfbd82ffd8114eca7b9defd61b[m
Author: LinsaFTW <[email protected]>
Date: Sun Mar 13 21:06:47 2022 -0300
Update Version Command
[33mcommit 94b9a801979982c7052e256f26c5c8c833473012[m
Author: LinsaFTW <[email protected]>
Date: Sun Mar 13 21:01:14 2022 -0300
Final Name: FlamePaper
[33mcommit f940480280c8f82cd0d6029ea4c9af47c5164060[m
Author: LinsaFTW <[email protected]>
Date: Sun Mar 13 20:53:14 2022 -0300
Fix FlamePaper POM
[33mcommit cf01edcb3e1068bd46100f7d1baab01ef7e63149[m
Author: LinsaFTW <[email protected]>
Date: Sun Mar 13 20:47:59 2022 -0300
Fix mc-dev imports
[33mcommit a0f9e646d153b865f94bde83b7e4ca966fb93fb1[m
Author: LinsaFTW <[email protected]>
Date: Sun Mar 13 20:37:58 2022 -0300
Fix PaperSpigot Patches
[33mcommit 76b4d1d83a12c7d65dc3069c80e52f1b465248d3[m
Author: LinsaFTW <[email protected]>
Date: Sun Mar 13 20:16:47 2022 -0300
Make FlamePaper Independent
[33mcommit a3e5879ba79a538c61d6492b088d513dbf14d228[m
Author: LinsaFTW <[email protected]>
Date: Sun Mar 13 17:22:48 2022 -0300
Ignore .vscode
[33mcommit 5e005be5ababedd845c8eef33e134021ff1246d7[m
Author: LinsaFTW <[email protected]>
Date: Sun Mar 13 17:22:06 2022 -0300
Remove .vscode
[33mcommit d1640aaf0359ccccdee7e25c3602e2593276783f[m
Author: LinsaFTW <[email protected]>
Date: Sun Mar 13 17:18:04 2022 -0300
Remove Stackable Bucket Patch
[33mcommit 3578739ed6a6acb67eb3435ba823c7936ec16694[m
Merge: 38692c41 34f23547
Author: LinsaFTW <[email protected]>
Date: Sat Mar 12 23:16:56 2022 -0300
Merge branch 'ver/1.8.8' of https://github.com/2lstudios-mc/FlamePaper into ver/1.8.8
[33mcommit 38692c4102122d72438ba50fa3348004f20073b1[m
Author: LinsaFTW <[email protected]>
Date: Sat Mar 12 23:13:53 2022 -0300
Fix ChatComponent Limiter
[33mcommit 34f235472007a9a9d9c118202f07e8acc366a5b0[m
Author: LinsaFTW <[email protected]>
Date: Sat Mar 12 22:41:34 2022 -0300
Delete old ChatComponent security check patch
[33mcommit 6714178082718e229a3b26ead489a9c1b5630163[m
Author: LinsaFTW <[email protected]>
Date: Sat Mar 12 22:35:15 2022 -0300
Limit ChatComponents Patch
[33mcommit 13d289f82e62c3814a0d567f622655b07f905549[m
Merge: d20910a3 d3525d1f
Author: Juan Cruz Linsalata <[email protected]>
Date: Wed Mar 9 17:02:21 2022 -0300
Merge pull request #27 from samupro-dev/ver/1.8.8
Added workflows
[33mcommit d3525d1fa4382f155b06071e0bf1428b1a62c6fe[m
Author: samupro-dev <[email protected]>
Date: Wed Mar 9 00:23:04 2022 +0100
Add files via upload
[33mcommit 411380fc31c5fe9fb9d6df3acf260d8b04034798[m
Author: samupro-dev <[email protected]>
Date: Wed Mar 9 00:22:39 2022 +0100
Create flamepaper-build.yml
[33mcommit d20910a36a7158a271b642352288d6bb02ca8135[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Sun Feb 27 14:53:20 2022 -0300
update download link
[33mcommit e4654b5cb145dc28d36cb030a656ae55892f1867[m
Author: LinsaFTW <[email protected]>
Date: Fri Feb 25 23:13:46 2022 -0300
Skip Eula
[33mcommit 7619580d64b64c8be4a86615615d782b79ae5354[m
Author: LinsaFTW <[email protected]>
Date: Sat Feb 12 18:13:42 2022 -0300
Downgrade dependencies fix sql errors
[33mcommit 55fa7e69bd592f8c73fbad1445d1bd9bc3d1fc6f[m
Author: LinsaFTW <[email protected]>
Date: Wed Dec 29 18:05:10 2021 -0300
Update log4j
[33mcommit 7d06526e1f115f60545d262952c0871a0ea06038[m
Author: LinsaFTW <[email protected]>
Date: Sun Dec 19 11:12:22 2021 -0300
bump log4j to 2.17.0
[33mcommit 86c378660405a5f29f13d8ec2600bb82989e2ef4[m
Author: LinsaFTW <[email protected]>
Date: Sat Dec 18 18:20:54 2021 -0300
bump log4j to 2.16.0
[33mcommit e152ec020190344109381869991e821e035fb176[m
Author: LinsaFTW <[email protected]>
Date: Sun Dec 12 20:50:59 2021 -0300
Disable InventoryMoveItemEvent
[33mcommit 028e9796675e58bd3f33a4d4cb875a1be8eb9875[m
Author: LinsaFTW <[email protected]>
Date: Sun Dec 12 19:18:23 2021 -0300
Push based hoppers
[33mcommit c92dafe1516c9c4c9d71afbf212cd661325433f1[m
Author: LinsaFTW <[email protected]>
Date: Sun Dec 12 11:51:05 2021 -0300
set source & target to 1.8
[33mcommit 8881befc2e19dfee5001861bfbae838f1d875317[m
Author: LinsaFTW <[email protected]>
Date: Sun Dec 12 11:44:39 2021 -0300
add customizable knockback
[33mcommit 2f3145506aed1d69e878f9fec29d11eb67757b8c[m
Author: LinsaFTW <[email protected]>
Date: Sun Dec 12 11:24:33 2021 -0300
bump jansi 2.4.0
[33mcommit c102b319e8fbb4471881977989522b1e0bf4fc8d[m
Author: LinsaFTW <[email protected]>
Date: Sat Dec 11 20:27:31 2021 -0300
bump sqlite to 3.36.0.3
[33mcommit 2a5099ae3ab0a9b9f50fc5347ac89ba1f87e1bf1[m
Author: LinsaFTW <[email protected]>
Date: Sat Dec 11 11:24:46 2021 -0300
updated mysql connector
[33mcommit 5001293cfc7b65f41137b5d5cfbe1aac1bc081e1[m
Author: LinsaFTW <[email protected]>
Date: Sat Dec 11 10:56:51 2021 -0300
update all dependencies
[33mcommit c804f708adae0ee42c538206e23f74b1be0a974c[m
Author: LinsaFTW <[email protected]>
Date: Fri Dec 10 12:31:39 2021 -0300
fix database compatibility
[33mcommit 97b08b0dc6b27760bd00878635b8e35a18697e0f[m
Author: LinsaFTW <[email protected]>
Date: Fri Dec 10 09:30:17 2021 -0300
improve book exploit patch
[33mcommit a18002fc2d8c8c9155e9fa7cad36a87a5739f3d3[m
Author: LinsaFTW <[email protected]>
Date: Fri Dec 10 09:27:04 2021 -0300
fix compilation issues
[33mcommit 9160d9b4a088361c83d9adcfdd90427da3c44c48[m
Author: LinsaFTW <[email protected]>
Date: Fri Dec 10 09:04:49 2021 -0300
downgrade log4j to 2.15.0
[33mcommit 3fbee7dbe884289b652ae3db1a527f33efe4a148[m
Author: LinsaFTW <[email protected]>
Date: Wed Aug 11 23:26:23 2021 -0300
downgrade sqlite & mysql
[33mcommit 1114d3c94a085750a82d87729a36753d24275f77[m
Author: LinsaFTW <[email protected]>
Date: Wed Aug 11 23:26:03 2021 -0300
update sonatype
[33mcommit 5743a705cfeeb6caf87ecd135c9f9a15bdc8f192[m
Author: LinsaFTW <[email protected]>
Date: Wed Aug 11 21:49:03 2021 -0300
Fix small issue
[33mcommit 9e0816e6273e0e5cb6b91ec73b1d2618e397c2f8[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Wed Aug 11 21:40:55 2021 -0300
Update and rename 0102-Fixed-chunk-memory-leak.patch to 0102-Fix-chunk-memory-leak.patch
[33mcommit 900196a554aca61f8724bd1acf87aed36ad8fd90[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Wed Aug 11 21:40:19 2021 -0300
Update and rename 0115-Patch-Book-Exploits.patch to 0115-Fix-Book-Exploits.patch
[33mcommit 0a2ce795906497154f77b0a3345595d814775c40[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Wed Aug 11 21:39:44 2021 -0300
Update and rename 0105-Fix-memory-leaks-by-Minetick.patch to 0105-Fix-multiple-memory-leaks.patch
[33mcommit 0083f6fb612a6652314937666a235e20a1bc8083[m
Author: LinsaFTW <[email protected]>
Date: Wed Aug 11 21:39:33 2021 -0300
Updated Source
[33mcommit 4926195e8fce559dd951242e20f2437a8d1b42de[m
Author: LinsaFTW <[email protected]>
Date: Sun Jul 11 16:27:24 2021 -0300
Fixed error with pearls
[33mcommit 512e6eedb1abab6e9118813ff9dae17d6bb9c08e[m
Author: LinsaFTW <[email protected]>
Date: Sun Jun 27 20:36:00 2021 -0300
Pearl Passthrough System
[33mcommit 4b5f83f1ede1dc0a9da467ebbc8634aa033ad804[m
Author: LinsaFTW <[email protected]>
Date: Thu Jun 24 14:03:06 2021 -0300
Update to Java 11
[33mcommit 52e061c2428b408445745bf312c66be06982f7bf[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Mon Jun 21 16:37:38 2021 -0300
Update 0001-POM-Changes.patch
[33mcommit 50af85911ac13bbd4fc659f56e2b81939eb11eec[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Mon Jun 21 16:25:15 2021 -0300
Update 0019-Show-PaperSpigot-in-client-crashes-server-lists-and-.patch
[33mcommit b4f5b863ce43c4bce4af135beb60a7dbe68f0379[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Mon Jun 21 16:20:29 2021 -0300
Update 0020-Metrics.patch
[33mcommit b932d335b01202db99c972ab73a634c361f9901b[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Mon Jun 21 16:17:53 2021 -0300
Update 0001-POM-Changes.patch
[33mcommit 97d2594775a565a730c1ac09095cb0fec784eb20[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Mon Jun 21 14:20:25 2021 -0300
Update 0116-iChatBaseComponent-Security-Checks.patch
[33mcommit 249f3cfda7945c0bf9c08e53de1c0e4aaca50cef[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Mon Jun 21 14:09:47 2021 -0300
Update 0116-iChatBaseComponent-Security-Checks.patch
[33mcommit bad2dbe63c049ff2e5e1760ab03ae989eee9d2da[m
Author: LinsaFTW <[email protected]>
Date: Mon Jun 21 04:21:48 2021 -0300
fixed IChatBaseComponent mc import
[33mcommit bb5fde4facc5850fc69faab8a8e4ecf0e5b63a72[m
Author: LinsaFTW <[email protected]>
Date: Mon Jun 21 03:44:50 2021 -0300
Additional DoS mitigations
[33mcommit f01c0d9fbd872c1ca65e88387e7f11162c41d9e1[m
Author: LinsaFTW <[email protected]>
Date: Mon Jun 21 03:43:13 2021 -0300
fix iChatBaseComponent import
[33mcommit 1280e1b3602351a62f6c5871529bebceccf39d36[m
Author: LinsaFTW <[email protected]>
Date: Mon Jun 21 03:13:47 2021 -0300
update mysql dependency
[33mcommit 0049c4c49b6c8c38dbee795b0b313f1b83bcb8dc[m
Author: LinsaFTW <[email protected]>
Date: Mon Jun 21 03:08:46 2021 -0300
added IChatBaseComponent mc import
[33mcommit f2521890c238ff68c6cc2e1e0ca7ab33f418e816[m
Author: LinsaFTW <[email protected]>
Date: Mon Jun 21 02:55:43 2021 -0300
remove paperclip
[33mcommit 8c6ff1016ac9dfd3c295da75a21f44615a5b6bf9[m
Author: linsaftw <[email protected]>
Date: Sat May 8 18:38:43 2021 -0300
Revert pull request #11
[33mcommit 8d49a317a2a87d4c8a105b6d078b41b981fcc70b[m
Merge: f93d19d5 f0764e9a
Author: Juan Cruz Linsalata <[email protected]>
Date: Thu May 6 13:41:49 2021 -0300
Merge pull request #11 from uRyanxD/ver/1.8.8
The most useless pull-request you've ever seen!
[33mcommit f0764e9ac734d12184a2ac2ce2d93d189e23eaf5[m
Author: uRyanxD <[email protected]>
Date: Mon May 3 10:28:23 2021 -0300
Updated Source
[33mcommit b5fca58e3d37fb0fd8501696c60fc916ddff3086[m
Author: uRyanxD <[email protected]>
Date: Mon May 3 10:27:49 2021 -0300
Updated Source
[33mcommit 83b0cd16cc2e0da84974cc20a7f555541c652af1[m
Author: uRyanxD <[email protected]>
Date: Sun May 2 14:10:44 2021 -0300
Updated Source
[33mcommit 26f9778c90211619b5d73ea5885bdaeb8029c3b2[m
Author: uRyanxD <[email protected]>
Date: Sun May 2 14:09:42 2021 -0300
Updated Source
[33mcommit f1afa6599ae4e485d1995e7a5f30e91252aa5e0e[m
Author: uRyanxD <[email protected]>
Date: Sun May 2 13:29:49 2021 -0300
Updated Source
[33mcommit f93d19d50a0b96c4ee5f08d8996bdeff851a3d86[m
Author: linsaftw <[email protected]>
Date: Sun Apr 25 12:34:25 2021 -0300
Fix chunk unload NPE
[33mcommit abe8d00398d94fe01dd7ad7d731a3a02289e033f[m
Author: linsaftw <[email protected]>
Date: Sun Apr 25 12:12:29 2021 -0300
Patch book exploits
[33mcommit dc9ec3fd7c5f1ff2d9dad86477dcc80a783fccbf[m
Author: LinsaFTW <[email protected]>
Date: Wed Apr 14 18:47:22 2021 -0300
Fix patch order
[33mcommit 194718e8752abd60849718478221bd10cfc13c82[m
Merge: cd26d48e 6b97570c
Author: Juan Cruz Linsalata <[email protected]>
Date: Wed Apr 14 18:43:55 2021 -0300
Merge pull request #6 from uRyanxD/ver/1.8.8
Patch for flag optimization!
[33mcommit cd26d48eea49d3a1b5dad6f1559f3c76a575fe48[m
Merge: ecad6f84 fdf89854
Author: Juan Cruz Linsalata <[email protected]>
Date: Wed Apr 14 18:43:41 2021 -0300
Merge pull request #5 from PermisosDev/ver/1.8.8
MacacoLew Fix in NetworkManager patch.
[33mcommit fdf89854d9ad7f8f710a9569aa73ee4004158bc0[m
Author: LinsaFTW <[email protected]>
Date: Wed Apr 14 18:42:49 2021 -0300
Fix comments & Patch name
[33mcommit 6b97570c80f55c09804f0490c68c8c08444ab75d[m
Author: uRyanxD <[email protected]>
Date: Mon Apr 12 16:38:25 2021 -0300
Create 0113-Remove-unused-code-from-beacons.patch
[33mcommit 2851887df971d2c4f43259d127354050024fd3bb[m
Author: Permisos <[email protected]>
Date: Thu Apr 8 19:19:25 2021 -0300
MacacoLew Fix in NetworkManager patch.
[33mcommit ecad6f8448e7374a9800a81e0e7d2950e026e7ea[m
Merge: e3102aa9 d39efb5b
Author: Juan Cruz Linsalata <[email protected]>
Date: Mon Mar 29 22:25:38 2021 -0300
Merge pull request #2 from PermisosDev/patch-1
Change References to FlamePaper.
[33mcommit d39efb5bb36b9e22a5f3ed1f309e5e699f90a724[m
Author: Permisos <[email protected]>
Date: Thu Feb 25 08:11:49 2021 -0300
Change References.
Change all references to flamepaper and add reference links.
[33mcommit e3102aa9fd758c7d316cd371b3dc8eae9f056d62[m
Author: unknown <[email protected]>
Date: Thu Dec 17 02:28:20 2020 -0300
Updated Source
[33mcommit 8fb8e031f55b0a200c15357108003a5ac0ea2475[m
Merge: 0f0fa7af 4aef2ef5
Author: LinsaFTW <[email protected]>
Date: Sat Dec 5 14:05:20 2020 -0300
Merge pull request #1 from Ytnoos/ver/1.8.8
Added Patch to fix crash when someone sents invalid login packets
[33mcommit 4aef2ef582de3d6105fd2144aa9567789add6465[m
Author: unknown <[email protected]>
Date: Sun Nov 29 09:22:15 2020 -0300
Use null instead of 'null'
[33mcommit e29a046928e03510939ff5f4f2a653687ff141dc[m
Author: unknown <[email protected]>
Date: Sun Nov 29 08:59:08 2020 -0300
Fixed pr
[33mcommit a7b165da7ced94d55b2ab4b5fb566b39f5fb9810[m
Author: Ytnoos <[email protected]>
Date: Sat Nov 28 13:51:36 2020 +0100
Added Patch to fix crash when someone sents invalid login packets
Took 32 minutes
[33mcommit 0f0fa7afd8d78be2a8cc8837fe54f4faa8fb5130[m
Author: BuildTools <[email protected]>
Date: Sat Nov 7 16:37:33 2020 -0300
Added new patches
[33mcommit 0ed05fb82c6475fdaf17d60c9a086062e1daf66a[m
Author: LinsaFTW <[email protected]>
Date: Thu Nov 5 23:23:36 2020 -0300
Update 0103-Limit-CraftChatMessage-iterations.patch
Fixed possible issues with signs.
[33mcommit 75d184b3f9dc84ced8eaecf0f5eecb8071be113e[m
Author: BuildTools <[email protected]>
Date: Wed Nov 4 02:45:56 2020 -0300
Updated Source
[33mcommit 104fef43af13167b650fa999979562d27c037b8b[m
Author: BuildTools <[email protected]>
Date: Tue Nov 3 18:16:04 2020 -0300
Fix memoryleaks by Minetick
[33mcommit 1f0ceb8fd2a6d15afea8150a27437fd6a150a477[m
Author: BuildTools <[email protected]>
Date: Tue Nov 3 17:23:28 2020 -0300
Updated Source
[33mcommit bae44aba142630e7103de810e6bf276e99b18173[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Sun Oct 18 15:50:01 2020 -0300
Updated Source
[33mcommit 573bac12d4639c5432b98b1b75915db763f87fca[m
Author: Juan Cruz Linsalata <[email protected]>
Date: Sun Oct 18 15:40:47 2020 -0300
Updated Source
[33mcommit 4c7641d1919222fdf02903bc529af1d6cbbe6146[m
Author: Zach Brown <[email protected]>
Date: Tue Mar 29 23:29:14 2016 -0500
PaperMC/Paper/GH-166
[33mcommit 010c6514734b9676bcb26b36f5290e1a013873bd[m
Author: Joseph Hirschfeld <[email protected]>
Date: Sun Feb 28 20:15:51 2016 -0500
Add exception reporting events
[33mcommit 18b55ae547c8238c2f861a55e0713e825f0613be[m
Author: Sudzzy <[email protected]>
Date: Sun Feb 28 18:34:19 2016 +0000
Fix inter-world teleportation glitches
People are able to abuse the way Bukkit handles teleportation across worlds since it provides a built in teleportation safety check.
To abuse the safety check, players are required to get into a location deemed unsafe by Bukkit e.g. be within a chest or door block. While they are in this block, they accept a teleport request from a player within a different world. Once the player teleports, Minecraft will recursively search upwards for a safe location, this could eventually land within a player's skybase.
Example setup to perform the glitch: http://puu.sh/ng3PC/cf072dcbdb.png
The wanted destination was on top of the emerald block however the player ended on top of the diamond block. This only is the case if the player is teleporting between worlds.
[33mcommit e51180b777da5b60fcd68db6ae33c347152c10f1[m
Author: md_5 <[email protected]>
Date: Sun Feb 21 19:22:37 2016 +1100
SPIGOT-1499: Outdated server message not working
[33mcommit 4c5668268b2b27571591834708789201b82ce099[m
Author: Aikar <[email protected]>
Date: Wed Feb 24 00:32:44 2016 -0600
Fix ServerListPingEvent flagging as Async
[33mcommit 9dbab1fcf845e5a5f0686e1714a57db4cae82e18[m
Author: Aikar <[email protected]>
Date: Tue Feb 23 22:35:34 2016 -0600
More timings for scheduler
[33mcommit 0ba78fc192ebd1ce71a36446cf66ef0187e19d5c[m
Author: Aikar <[email protected]>
Date: Tue Feb 23 21:31:01 2016 -0600
Make Timings use less passes in its benchmark
[33mcommit dcad4c6ea71da82fd8504dbf87e5355e31690e2d[m
Author: Techcable <[email protected]>
Date: Wed Feb 17 19:03:21 2016 -0700
Improve title API
Uses title objects instead of individual update methods
[33mcommit c04cff4f82d5fdca22c33d7ece826bc06b06871d[m
Author: Joseph Hirschfeld <[email protected]>
Date: Mon Feb 22 21:31:24 2016 -0600
Add velocity warnings
Issues #12 & #18
[33mcommit 1182e4135162a35a9e5023e1f7383caa76757c1c[m
Merge: 2ae36698 7ad220f6
Author: Zach <[email protected]>
Date: Mon Feb 22 21:20:02 2016 -0600
Merge pull request #38 from Ichbinjoe/findPortals
Add configurable portal search radius
[33mcommit 7ad220f6e68ed89a5346d72851322a55b1359b6b[m
Author: Joseph Hirschfeld <[email protected]>
Date: Sun Feb 21 01:33:37 2016 -0500
Add configurable portal search radius
[33mcommit 2ae366988778610446720afdde3bad2b82aed88f[m
Author: Zach Brown <[email protected]>
Date: Sun Feb 21 04:28:47 2016 -0600
Update CB
[33mcommit 2a67f0182f43ee0393593f0b67dc13cee2eb36e9[m
Author: Zach Brown <[email protected]>
Date: Sun Feb 21 04:12:03 2016 -0600
Proper maven repo details
[33mcommit a861cc6d8c6d15f3cb2d87522fb73dc1deb46f65[m
Author: Joseph Hirschfeld <[email protected]>
Date: Sat Feb 20 21:34:29 2016 -0600
Change implementation of tile entity removal list
[33mcommit 1d78a73b5d2ada0c21d47b27227831cb0960576e[m
Author: Joseph Hirschfeld <[email protected]>
Date: Sat Feb 20 20:06:47 2016 -0600
Ensure inv drag is in bounds - Fixes #30
[33mcommit ee63dbebdc440a4c9290ae641a60a8ab6361c775[m
Author: Jedediah Smith <[email protected]>
Date: Tue Feb 16 19:55:21 2016 -0600
Player Tab List and Title APIs
[33mcommit 52398f034c89229a53ec4b6d3a7080f4db22bf7a[m
Author: Zach Brown <[email protected]>
Date: Tue Feb 16 19:55:05 2016 -0600
Move bungeecord chat APIs out of spigot subclasses
[33mcommit 752ba5c528ad78620cdccac22d9dbd232f09aaf8[m
Merge: 3ebeccc1 e8118c4a
Author: Zach <[email protected]>
Date: Tue Feb 16 18:48:14 2016 -0600