Skip to content

v2.0.0

Compare
Choose a tag to compare
@BattlefieldDuck BattlefieldDuck released this 18 Jan 01:41
· 75 commits to main since this release
756c878

🚀 Features

  • Support ASE Protocol
  • Support Battlefield Protocol
  • Support Doom3 Protocol
  • Support FiveM Protocol
  • Support Satisfactory Protocol
  • Support San Andreas Multiplayer Protocol
  • Support Teamspeak 3 Protocol
  • Support Minecraft Protocol
  • Support RakNet Protocol
  • Support Scum Protocol
  • Support Unreal 2 Protocol
  • Support Killing Floor Protocol

🛑 Breaking changes

In the latest version of our library, we have made significant changes to improve performance and usability. One of the key updates is the transition of all query protocol methods to asynchronous methods.

Source source = new Source("45.62.160.71", 27015);

// before 2.0.0
var info = source.GetInfo();

// after 2.0.0
var info = await source.GetInfo();

Full Changelog: v1.3.0...v2.0.0