mirror of
https://github.com/Tiiffi/mcrcon.git
synced 2025-10-27 03:11:07 -04:00
Update version information, changelog and readme
This commit is contained in:
@ -1,5 +1,14 @@
|
|||||||
#### Version history:
|
#### 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
|
###### 0.7.1
|
||||||
- Deprecate `-i` flag for invoking terminal mode
|
- Deprecate `-i` flag for invoking terminal mode
|
||||||
- Add workaround to prevent server-side bug.
|
- Add workaround to prevent server-side bug.
|
||||||
|
|||||||
2
LICENSE
2
LICENSE
@ -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
|
This software is provided 'as-is', without any express or implied
|
||||||
warranty. In no event will the authors be held liable for any damages
|
warranty. In no event will the authors be held liable for any damages
|
||||||
|
|||||||
@ -76,8 +76,7 @@ rcon.password=your_rcon_pasword
|
|||||||
##### Contact:
|
##### Contact:
|
||||||
|
|
||||||
* WWW: https://github.com/Tiiffi/mcrcon/
|
* WWW: https://github.com/Tiiffi/mcrcon/
|
||||||
* MAIL: tiiffi at gmail
|
* MAIL: tiiffi+mcrcon at gmail
|
||||||
* IRC: tiiffi @ quakenet
|
|
||||||
* BUG REPORTS: https://github.com/Tiiffi/mcrcon/issues/
|
* BUG REPORTS: https://github.com/Tiiffi/mcrcon/issues/
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
2
mcrcon.1
2
mcrcon.1
@ -1,7 +1,7 @@
|
|||||||
.\" Process this file with
|
.\" Process this file with
|
||||||
.\" groff -man -Tascii mcrcon.1
|
.\" 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
|
.SH NAME
|
||||||
mcrcon \- send rcon commands to a Minecraft server
|
mcrcon \- send rcon commands to a Minecraft server
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|||||||
2
mcrcon.c
2
mcrcon.c
@ -47,7 +47,7 @@
|
|||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define VERSION "0.7.1"
|
#define VERSION "0.7.2"
|
||||||
#define IN_NAME "mcrcon"
|
#define IN_NAME "mcrcon"
|
||||||
#define VER_STR IN_NAME" "VERSION" (built: "__DATE__" "__TIME__")"
|
#define VER_STR IN_NAME" "VERSION" (built: "__DATE__" "__TIME__")"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user