From 57de17c254d878ef037bf0e5cba95d43a0b33370 Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Mon, 22 Apr 2019 18:52:03 +0200 Subject: [PATCH] Update changelog and some documentation --- CHANGELOG | 5 +++++ TODO | 1 - gclog.1 | 12 ++++++++++-- gclog.c | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 64526c1..0854966 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,11 @@ # CHANGELOG # ############# +Version 0.2.5 (2019-04-22) +========================== ++ Added baud rate setting +* Improved logging and debug mode + Version 0.2.4 (2018-04-14) ========================== + Added support for GMC.MAP diff --git a/TODO b/TODO index 7c2f01b..f268a41 100644 --- a/TODO +++ b/TODO @@ -3,7 +3,6 @@ ######## * Migrate from init script to systemd service -* Implement better logging and debug mode * Multithreading: run I/O operations in separate threads * HTTPS: add SSL support to TCP client * Support for Radioactive@Home (BOINC platform) diff --git a/gclog.1 b/gclog.1 index 21f7e42..a5f69ff 100644 --- a/gclog.1 +++ b/gclog.1 @@ -8,7 +8,7 @@ .B gclog .RB [ \-c .IR file ] -.RB [ \-v ] +.RB [ \-vdh ] .SH DESCRIPTION \fBGCLOG\fP is a lightweight daemon running in the background and constantly reporting your Geiger counter readings to various radiation monitoring websites. With a small footprint and minimal dependencies it is aimed to run on Linux embedded computers. @@ -20,7 +20,15 @@ Load configuration from file. .TP .B -v -Activate verbose mode. +Turn on verbose logging. + +.TP +.B -d +Run in debug mode. + +.TP +.B -h +Display help information. .SH CONFIGURATION FILE OPTIONS .TP diff --git a/gclog.c b/gclog.c index e799357..a3787ae 100644 --- a/gclog.c +++ b/gclog.c @@ -16,7 +16,7 @@ #include "tcpcli.h" #define GCLOG_VERSION "0.2.5" -#define GCLOG_BUILD "2019-04-19" +#define GCLOG_BUILD "2019-04-22" #define BUF_SIZE 1000 #ifndef MIN #define MIN(a,b) ((a)<(b)?(a):(b))