Update changelog and some documentation

This commit is contained in:
Steffen Lange 2019-04-22 18:52:03 +02:00
parent 677a6692c7
commit 57de17c254
4 changed files with 16 additions and 4 deletions

View file

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

1
TODO
View file

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

12
gclog.1
View file

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

View file

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