Update version information, changelog and readme

This commit is contained in:
Tiiffi
2021-10-30 22:21:25 +03:00
parent fca278e092
commit 05aaff88d4
5 changed files with 13 additions and 5 deletions

View File

@ -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.

View File

@ -1,4 +1,4 @@
Copyright (c) 2012-2020, Tiiffi <tiiffi at gmail>
Copyright (c) 2012-2021, Tiiffi <tiiffi at gmail>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages

View File

@ -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/
---

View File

@ -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

View File

@ -47,7 +47,7 @@
#include <netdb.h>
#endif
#define VERSION "0.7.1"
#define VERSION "0.7.2"
#define IN_NAME "mcrcon"
#define VER_STR IN_NAME" "VERSION" (built: "__DATE__" "__TIME__")"