Update changelog and some documentation
This commit is contained in:
parent
677a6692c7
commit
57de17c254
4 changed files with 16 additions and 4 deletions
|
|
@ -2,6 +2,11 @@
|
||||||
# CHANGELOG #
|
# CHANGELOG #
|
||||||
#############
|
#############
|
||||||
|
|
||||||
|
Version 0.2.5 (2019-04-22)
|
||||||
|
==========================
|
||||||
|
+ Added baud rate setting
|
||||||
|
* Improved logging and debug mode
|
||||||
|
|
||||||
Version 0.2.4 (2018-04-14)
|
Version 0.2.4 (2018-04-14)
|
||||||
==========================
|
==========================
|
||||||
+ Added support for GMC.MAP
|
+ Added support for GMC.MAP
|
||||||
|
|
|
||||||
1
TODO
1
TODO
|
|
@ -3,7 +3,6 @@
|
||||||
########
|
########
|
||||||
|
|
||||||
* Migrate from init script to systemd service
|
* Migrate from init script to systemd service
|
||||||
* Implement better logging and debug mode
|
|
||||||
* Multithreading: run I/O operations in separate threads
|
* Multithreading: run I/O operations in separate threads
|
||||||
* HTTPS: add SSL support to TCP client
|
* HTTPS: add SSL support to TCP client
|
||||||
* Support for Radioactive@Home (BOINC platform)
|
* Support for Radioactive@Home (BOINC platform)
|
||||||
|
|
|
||||||
12
gclog.1
12
gclog.1
|
|
@ -8,7 +8,7 @@
|
||||||
.B gclog
|
.B gclog
|
||||||
.RB [ \-c
|
.RB [ \-c
|
||||||
.IR file ]
|
.IR file ]
|
||||||
.RB [ \-v ]
|
.RB [ \-vdh ]
|
||||||
|
|
||||||
.SH DESCRIPTION
|
.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.
|
\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
|
.TP
|
||||||
.B -v
|
.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
|
.SH CONFIGURATION FILE OPTIONS
|
||||||
.TP
|
.TP
|
||||||
|
|
|
||||||
2
gclog.c
2
gclog.c
|
|
@ -16,7 +16,7 @@
|
||||||
#include "tcpcli.h"
|
#include "tcpcli.h"
|
||||||
|
|
||||||
#define GCLOG_VERSION "0.2.5"
|
#define GCLOG_VERSION "0.2.5"
|
||||||
#define GCLOG_BUILD "2019-04-19"
|
#define GCLOG_BUILD "2019-04-22"
|
||||||
#define BUF_SIZE 1000
|
#define BUF_SIZE 1000
|
||||||
#ifndef MIN
|
#ifndef MIN
|
||||||
#define MIN(a,b) ((a)<(b)?(a):(b))
|
#define MIN(a,b) ((a)<(b)?(a):(b))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue