From e6e1baaad51c15fc2c62fabb15fc3d988600f50a Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Mon, 23 May 2016 19:26:44 +0200 Subject: [PATCH] Updated ChangeLog --- ChangeLog | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ee4a8d6..989300e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,39 @@ -=== tio v1.14 === +=== tio v1.15 === + +Changes since tio v1.14: + + * Removed + to remove potential confusion + + * Added input digit checks + + * Fixed license string + + * Introduced tty_configure() + + Moved tty configuration actions to tty_configure() in tty.c. This way + options.c is strictly about parsing options nothing else. + + * Function names cleanup + + * Updated AUTHORS file + + Added Nick who created the new tio package for Arch Linux. + + * Fixed tx/rx counters type + +Jakob Haufe: + + * Include config.h before standard headers + + This makes use of 8d6d202 (Enable large file support) for real. + +Jakub Wilk: + + * Fixed printf directives for tx/rx counters + + In 9a66de0affda, types of tx/rx counters were changed from "long" to + "unsigned long", but their printf directives remained "%ld". + Change them to "%lu" to match the actual types.