diff --git a/CHANGELOG.md b/CHANGELOG.md index c8768cb..7e51993 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ #### Version history: +###### 0.7.2 + - Quit gracefully when Ctrl-D or Ctrl+C is pressed + - Remove "exit" and "quit" as quitting commands + * these are actual rcon commands on some servers + - Suppress compiler warning (strncpy) + - fix erroneous string length in packet building function + - Fix typo in ANSI escape sequence for LCYAN + - Make stdout and stderr unbuffered + ###### 0.7.1 - Deprecate `-i` flag for invoking terminal mode - Add workaround to prevent server-side bug. diff --git a/LICENSE b/LICENSE index 454fb9f..86bda18 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2012-2020, Tiiffi +Copyright (c) 2012-2021, Tiiffi This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/README.md b/README.md index 300695a..9961fab 100644 --- a/README.md +++ b/README.md @@ -76,8 +76,7 @@ rcon.password=your_rcon_pasword ##### Contact: * WWW: https://github.com/Tiiffi/mcrcon/ -* MAIL: tiiffi at gmail -* IRC: tiiffi @ quakenet +* MAIL: tiiffi+mcrcon at gmail * BUG REPORTS: https://github.com/Tiiffi/mcrcon/issues/ --- diff --git a/mcrcon.1 b/mcrcon.1 index db9d282..9255407 100644 --- a/mcrcon.1 +++ b/mcrcon.1 @@ -1,7 +1,7 @@ .\" Process this file with .\" groff -man -Tascii mcrcon.1 .\" -.TH MCRCON 1 "January 2020" "Version 0.7.1" +.TH MCRCON 1 "October 2021" "Version 0.7.2" .SH NAME mcrcon \- send rcon commands to a Minecraft server .SH SYNOPSIS diff --git a/mcrcon.c b/mcrcon.c index dadccad..b8f8012 100644 --- a/mcrcon.c +++ b/mcrcon.c @@ -47,7 +47,7 @@ #include #endif -#define VERSION "0.7.1" +#define VERSION "0.7.2" #define IN_NAME "mcrcon" #define VER_STR IN_NAME" "VERSION" (built: "__DATE__" "__TIME__")"