source_server 2.0.5-beta source_server: ^2.0.5-beta copied to clipboard
A dart implementation of Source's Query Protocol and RCON from the developer.valvesoftware.com wiki.
1.0.0 #
- Initial version, created by Stagehand
1.0.7 #
- Throw exception when writing to null
1.1.0 #
- Add support for MinecraftServer.
var server = MinecraftServer(InternetAddress('127.0.0.1'), 27015, 'mypassword');
await server.connect();
print(await server.send('say hello'));
server.close();
- Add skipFirst parameter for RconSocket to skip the first optionally packet.
1.1.1 #
- Random port for UDP socket
1.1.2 #
- Fix random port
2.0.0 Breaking change #
- Added types: BasePlayer, Player and ServerInfo
- Now getStatus, getPlayers and getInfo return respectively: a List of Player (inside the status map), a List of BasePlayer and a ServerInfo class.