Releases: MegavexNetwork/scoreboard-library
Releases · MegavexNetwork/scoreboard-library
2.2.2
2.2.1
2.2.0
Legacy Packet Adapter
The v1_8_R3
adapter has been replaced with legacy
, which supports all server versions between 1.7.10 and 1.12.2.
For backwards compatibility, v1_8_R3
is now simply an alias to legacy
.
Bug Fixes
- Fixed PacketEvents adapter sending invalid packets on 1.13+ servers with 1.12.2- clients and 1.12.2- servers with 1.13+ clients.
- Fixed possible concurrent modification error when using teams
- Fixed several other issues related to sidebar lines
2.1.12
2.1.11
2.1.10
2.1.9
2.1.8
- Marked Minecraft 1.20.6 as supported
- Added
net.megavex.scoreboardlibrary.forceModern
system property, which when set totrue
will attempt to load the modern packet adapter even if the server version is not explicitly marked as supported. To use it, add-Dnet.megavex.scoreboardlibrary.forceModern=true
as a startup parameter or useSystem.setProperty("net.megavex.scoreboardlibrary.forceModern", "true")
2.1.7
Added initial support for Minecraft 1.20.5. Please report any issues you find in the issue tracker or Discord!
If using Paper plugins and don't care about older versions or Spigot, you can now also use a Mojang mapped variant of the modern packet adapter:
runtimeOnly("net.megavex:scoreboard-library-modern:2.1.7:mojmap")
<dependency>
<groupId>net.megavex</groupId>
<artifactId>scoreboard-library-modern</artifactId>
<version>2.1.7</version>
<scope>runtime</scope>
<classifier>mojmap</classifier>
</dependency>
2.1.6
Added a missing null check to the sidebar implementation which was causing stacktraces to be printed in some cases
Note: as of 2.1.5 the library is now on maven central. JitPack no longer works. See installation for how to switch.