mirror of
https://github.com/Tiiffi/mcrcon.git
synced 2025-10-27 19:31:07 -04:00
Version history draft for v0.6.0, updated version numbering and changed console prompt character back to original one.
This commit is contained in:
11
CHANGELOG.md
11
CHANGELOG.md
@ -1,4 +1,15 @@
|
|||||||
####Version history:
|
####Version history:
|
||||||
|
######0.6.0
|
||||||
|
- Version numbering changed to more sane system (0.0.5 -> 0.6.0)
|
||||||
|
- Fixed munged output
|
||||||
|
- Support for using environment variables to set some basic options
|
||||||
|
- Cleaned networking code
|
||||||
|
- Various code cleanups
|
||||||
|
- Changes and updates in usage text and error reporting
|
||||||
|
- Version option flag (-v) added
|
||||||
|
- Man page added
|
||||||
|
- Proper makefile added
|
||||||
|
|
||||||
######0.0.5
|
######0.0.5
|
||||||
- IPv6 support!
|
- IPv6 support!
|
||||||
* Thanks to 'Tanja84dk' for addressing the real need of IPv6.
|
* Thanks to 'Tanja84dk' for addressing the real need of IPv6.
|
||||||
|
|||||||
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 "December 2016" "Version 0.0.6"
|
.TH MCRCON 1 "December 2016" "Version 0.6.0"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mcrcon \- sends rcon commands to a Minecraft server
|
mcrcon \- sends rcon commands to a Minecraft server
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|||||||
4
mcrcon.c
4
mcrcon.c
@ -46,7 +46,7 @@
|
|||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define VERSION "0.0.6"
|
#define VERSION "0.6.0"
|
||||||
#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__")"
|
||||||
|
|
||||||
@ -757,7 +757,7 @@ int get_line(char *buffer, int bsize)
|
|||||||
{
|
{
|
||||||
int ch, len;
|
int ch, len;
|
||||||
|
|
||||||
fputs("/", stdout);
|
fputs(">", stdout);
|
||||||
(void) fgets(buffer, bsize, stdin);
|
(void) fgets(buffer, bsize, stdin);
|
||||||
|
|
||||||
if (buffer[0] == 0)
|
if (buffer[0] == 0)
|
||||||
|
|||||||
Reference in New Issue
Block a user