Update version infos
This commit is contained in:
parent
bc34fe8bd6
commit
39779acb66
7 changed files with 22 additions and 9 deletions
|
|
@ -2,6 +2,10 @@
|
|||
# CHANGELOG #
|
||||
#############
|
||||
|
||||
Version 0.2.4 (2018-04-14)
|
||||
==========================
|
||||
+ Added support for GMC.MAP
|
||||
|
||||
Version 0.2.3 (2016-02-28)
|
||||
=========================
|
||||
+ Added manpage
|
||||
|
|
|
|||
2
PKGBUILD
2
PKGBUILD
|
|
@ -1,6 +1,6 @@
|
|||
# Maintainer: Steffen Lange <gclog@stelas.de>
|
||||
pkgname=gclog
|
||||
pkgver=0.2.3
|
||||
pkgver=0.2.4
|
||||
pkgrel=1
|
||||
pkgdesc="Geiger Counter Logger"
|
||||
arch=('i686' 'x86_64')
|
||||
|
|
|
|||
5
README
5
README
|
|
@ -1,7 +1,7 @@
|
|||
___ Geiger Counter LOGger
|
||||
\_/ Version 0.2.3
|
||||
\_/ Version 0.2.4
|
||||
.--,O.--,
|
||||
\/ \/ Copyright (C) 2014-16 Steffen Lange, gclog@stelas.de
|
||||
\/ \/ Copyright (C) 2014-18 Steffen Lange, gclog@stelas.de
|
||||
|
||||
This program comes with ABSOLUTELY NO WARRANTY.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
|
|
@ -27,6 +27,7 @@ Supported Geiger counter devices:
|
|||
http://arduino-geiger-pcb.blogspot.de/
|
||||
|
||||
Supported radiation monitoring websites:
|
||||
- GMCMAP.com
|
||||
- radmon.org
|
||||
- Safecast.org
|
||||
- NETC.com
|
||||
|
|
|
|||
6
debian/changelog
vendored
6
debian/changelog
vendored
|
|
@ -1,3 +1,9 @@
|
|||
gclog (0.2.4-1) unstable; urgency=low
|
||||
|
||||
* Minor enhancements
|
||||
|
||||
-- Steffen Lange <gclog@stelas.de> Sat, 14 Apr 2018 12:00:00 +0200
|
||||
|
||||
gclog (0.2.3-1) unstable; urgency=low
|
||||
|
||||
* Minor fixes
|
||||
|
|
|
|||
8
gclog.c
8
gclog.c
|
|
@ -14,8 +14,8 @@
|
|||
#include "gqgeiger.h"
|
||||
#include "tcpcli.h"
|
||||
|
||||
#define GCLOG_VERSION "0.2.3"
|
||||
#define GCLOG_BUILD "2016-02-28"
|
||||
#define GCLOG_VERSION "0.2.4"
|
||||
#define GCLOG_BUILD "2018-04-14"
|
||||
#define BUF_SIZE 1000
|
||||
#ifndef MIN
|
||||
#define MIN(a,b) ((a)<(b)?(a):(b))
|
||||
|
|
@ -179,7 +179,7 @@ void print_usage() {
|
|||
printf(" ___ Geiger Counter LOGger daemon\n");
|
||||
printf(" \\_/ Version %s (Build %s)\n", GCLOG_VERSION, GCLOG_BUILD);
|
||||
printf(".--,O.--,\n");
|
||||
printf(" \\/ \\/ Copyright (C) 2014-16 Steffen Lange, gclog@stelas.de\n\n");
|
||||
printf(" \\/ \\/ Copyright (C) 2014-18 Steffen Lange, gclog@stelas.de\n\n");
|
||||
printf("This program comes with ABSOLUTELY NO WARRANTY.\n");
|
||||
printf("This is free software, and you are welcome to redistribute it\n");
|
||||
printf("under certain conditions. See the file COPYING for details.\n\n");
|
||||
|
|
@ -279,7 +279,7 @@ int main(int argc, char *argv[]) {
|
|||
}
|
||||
|
||||
if (debug)
|
||||
printf("Configuration:\n\t\t%s on %s,\n\t\tLocation: %s (%f, %f)\n\t\tnetc.com: %s,\n\t\tradmon.org: %s / %s,\n\t\tsafecast.org: %s (Device ID %u),\n\t\tgmcmap.com: %s (Device ID %s),\n\t\t%us interval\n\n", GeigerNames[device_type], device_port, location, latitude, longitude, netc_id, radmon_user, radmon_pass, safecast_key, safecast_device, gmcmap_user, gmcmap_device, interval);
|
||||
printf("Configuration:\n\t\t%s on %s,\n\t\tLocation: %s (%f, %f)\n\t\tnetc.com: %s,\n\t\tradmon.org: %s / %s,\n\t\tsafecast.org: %s / Device ID %u,\n\t\tgmcmap.com: %s / Device ID %s,\n\t\t%us interval\n\n", GeigerNames[device_type], device_port, location, latitude, longitude, netc_id, radmon_user, radmon_pass, safecast_key, safecast_device, gmcmap_user, gmcmap_device, interval);
|
||||
|
||||
int fd = -1;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
Name: gclog
|
||||
Version: 0.2.3
|
||||
Version: 0.2.4
|
||||
Release: 1%{?dist}
|
||||
Summary: Geiger Counter Logger
|
||||
License: GPLv3
|
||||
|
|
@ -50,6 +50,8 @@ fi
|
|||
%doc README* CHANGELOG TODO COPYING
|
||||
|
||||
%changelog
|
||||
* Sat Apr 14 2018 Steffen Lange <gclog@stelas.de> 0.2.4-1
|
||||
- Minor enhancements
|
||||
* Sun Feb 28 2016 Steffen Lange <gclog@stelas.de> 0.2.3-1
|
||||
- Minor fixes
|
||||
* Sat Apr 25 2015 Steffen Lange <gclog@stelas.de> 0.2.2-1
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=gclog
|
||||
PKG_VERSION:=0.2.3
|
||||
PKG_VERSION:=0.2.4
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue