Commit Graph

146 Commits

Author SHA1 Message Date
96ed367420 Closes #1121 2021-06-18 01:01:30 +02:00
0af60e5680 Added support for GriefDefender (#1123) 2021-06-17 10:37:53 +02:00
8836d1d75c Update dependency org.mockito:mockito-core to v3.11.1 (#1118)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: NotMyFault <mc.cache@web.de>
2021-06-11 17:20:24 +02:00
e11a2d7f6d Update dependency com.github.luben:zstd-jni to v1.5.0-2 (#1113)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-06-10 17:37:15 +02:00
09b2cfef56 Closes #1107 2021-06-08 23:53:19 +02:00
bae592bf91 Update dependency com.sk89q.worldguard:worldguard-bukkit to v7.0.5 (#1108)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-06-08 23:50:45 +02:00
75935f91e9 Update dependency com.github.luben:zstd-jni to v1.5.0-1 (#1106)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-06-08 23:46:46 +02:00
f139088b6e Update dependency org.mockito:mockito-core to v3.11.0 (#1103)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-06-04 09:07:50 +02:00
c87a19da5a Update dependency org.checkerframework:checker-qual to v3.14.0 (#1102)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-06-03 00:31:30 +02:00
b599769f8c Fixes #1098 2021-05-30 23:49:46 +02:00
04610822a2 Update dependency org.jetbrains:annotations to v21 (#1084)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-05-24 12:01:29 +02:00
aa0ad16a1b Update to Gradle 7 (#1078) 2021-05-14 23:42:37 +02:00
be624d5fe2 Closes #1066 2021-05-13 21:26:16 +02:00
9ff47d3404 Relocate zstd 2021-05-12 18:04:21 +02:00
7b6fde2579 Update ServerLib 2021-05-12 16:35:51 +02:00
036e8473b4 Fix unit tests + Version Determination (#1055)
* Fixed unit tests and determine chunksStretched based on package version

* Fixed requested changes
2021-05-07 23:47:35 +02:00
7e3525a6a2 Closes #1018
And update serverlib
2021-04-27 11:16:12 +02:00
00641c8108 Update ServerLib 2021-04-19 11:19:31 +02:00
b96cea75b8 Update Upstream
609c7b8 Scrapped Logging Framework 4 Java

Closes #997
Closes #998
Closes #999
Closes #1000
Closes #1001
Closes #1002
2021-03-29 15:29:16 +02:00
784db1e9c8 Include project name in jar 2021-03-26 21:21:45 +01:00
786baf09f4 Closes #957 2021-03-14 15:19:07 +01:00
c8db3e0c87 Closes #946 2021-03-08 21:12:42 +01:00
6bd866bdf7 Making renovate happy
Closes #940
Closes #933
Closes #931
2021-02-27 15:52:50 +01:00
0b65533294 Show a message with install instructions when running the jar file
Co-Authored-By: Matthew Miller <mnmiller1@me.com>
2021-02-25 22:58:17 +01:00
bc686a611d Update dependency com.comphenix.protocol:ProtocolLib to v4.6.0 (#921)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-02-23 23:46:29 +01:00
f5956b66a8 Present adventure on compile time
Co-Authored-By: Hannes Greule <SirYwell@users.noreply.github.com>
2021-02-22 11:04:12 +01:00
e3ab9035a8 Fixes #911 2021-02-15 19:40:38 +01:00
366ff738e2 Update bStats
Closes #912
Closes #913
2021-02-14 19:40:15 +01:00
20304bf7ad Cherry-pick build-script changes from upstream 2021-02-11 12:00:28 -05:00
09ba78d1e9 Relocate serverlib properly 2021-02-01 15:23:47 +01:00
bfc37f1628 Update ServerLib 2021-01-30 13:14:48 +01:00
dd65cffe86 Relocate properly 2021-01-24 12:01:03 +01:00
0bba9c5ac7 Update bStats 2021-01-24 10:44:22 +01:00
86ecd9f553 Move to ServerLib 2021-01-22 23:23:08 +01:00
e9da3daf9e Update dependency it.unimi.dsi:fastutil to v8.4.4 2021-01-21 12:53:43 +00:00
ef596664bc Properly name repositories 2021-01-21 13:34:33 +01:00
a300abae41 Properly define WorldGuard version 2021-01-21 13:21:54 +01:00
c35ebd7b53 Only scan used repositories 2021-01-21 13:07:17 +01:00
2ce493ae68 Miscellaneous improvements to build scripts. 2021-01-18 15:58:50 -05:00
9058ecdf34 Slight performance improvement during dependency resolution 2021-01-07 21:31:24 -05:00
3f0b9a2a92 Reorder BuildInClipboardFormat and document changed JNBT classes (#807)
* Get rid of FastSchematicReader/Writer and document changed JNBT classes

This commit includes changes from upstream to the schematic classes
(`com.sk89q.worldedit.extent.clipboard.io`). It also documents the JNBT
classes, specifying what has been changed in FAWE. This was done in preparation
for the upcoming move to adventure-nbt.

The PlotSquared schematic handler classes will now use SpongeSchematicReader/Writer rather than FastSchematicReader/Writer.

This is yet untested and the entire branch is a W.I.P.

* Fix JNBT mutability misuse in FAWE

FAWE previously had mutable compound and list tags. The previous commit changed that, and this commit will fix misuse of the tag API.

I've tried to identify the places where mutability was assumed, but I might have missed something. This needs quite extensive testing.

This is yet another change which increases upstream compatibility in FAWE.

* Fix FAWE_Spigot_<..>#getEntity

* Fix JNBT usage in the AsyncBlockState code

* Readd FastSchematicReader/Writer and add a new schematic format (`FAST`)

* Update dead repository

* Implement missing AsyncChunk#getTileEntities

* handle entities properly and add "brokenentity" format

* Fix fast schematic reader
lazily reading means it's read in order of appearance in the inputstream so we need to read schematic version first (skip past everything) and then reset the stream

* Fix p2 FAWE

* Go back to fast schematics in P2/CompressedSchematicTag (#819)

* Fix compile

Co-authored-by: N0tMyFaultOG <mc.cache@web.de>
Co-authored-by: Alexander Söderberg <Sauilitired@users.noreply.github.com>
Co-authored-by: dordsor21 <dordsor21@gmail.com>
Co-authored-by: Aurora <aurora@relanet.eu>
2021-01-04 19:18:23 +01:00
27512ceab3 Don't shade metrics twice 2020-12-21 19:40:06 +01:00
44f15da5a3 Update Paster 2020-12-21 15:57:57 +01:00
f36afe1907 Paperlib 1.6 2020-12-21 10:52:15 +01:00
675777190f Merge remote-tracking branch 'origin/renovate/io.papermc-paperlib-1.x' into main 2020-12-21 10:51:46 +01:00
b3ecbe8c95 bStats 1.8 2020-12-21 10:50:12 +01:00
d77e16c66f Update dependency org.bstats:bstats-bukkit to v1.8 2020-12-21 02:36:35 +00:00
79f825d21a Update dependency io.papermc:paperlib to v1.0.6 2020-12-21 00:37:05 +00:00
aca45e4ab0 Update dependency com.comphenix.protocol:ProtocolLib to v4.5.1 (#789)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-12-20 23:15:24 +01:00
7444c643a1 Switch to IncendoPaster "library" 2020-12-19 16:18:57 +00:00