Releases: gorcon/rcon
Releases · gorcon/rcon
v1.3.5
v1.3.4
v1.3.3
v1.3.2
v1.3.1
v1.3.0
v1.2.4
Added
- Added the ability to run tests on a real Project Zomboid server. To do this, set environment variables
TEST_PZ_SERVER=true
,TEST_PZ_SERVER_ADDR
andTEST_PZ_SERVER_PASSWORD
with address and password from Project Zomboid
remote console. - Added the ability to run tests on a real Rust server. To do this, set environment variables
TEST_RUST_SERVER=true
,
TEST_RUST_SERVER_ADDR
andTEST_RUST_SERVER_PASSWORD
with address and password from Rust remote console. - Added invalid padding test.
Changed
- Changed CI workflows and related badges. Integration with Travis-CI was changed to GitHub actions workflow. Golangci-lint
job was joined with tests workflow.
v1.2.3
v1.2.2
Added
- Added one more workaround for Rust server. When sent command "Say" there is no response data from server
with packet.ID = SERVERDATA_EXECCOMMAND_ID, only previous console message that command was received with
packet.ID = -1, therefore, forcibly set packet.ID to SERVERDATA_EXECCOMMAND_ID.