From: Antoine Jacquet Date: Wed, 19 Sep 2007 22:00:00 +0000 (+0200) Subject: version 0.74 X-Git-Tag: v0.74 X-Git-Url: http://royale.zerezo.com/git/?p=irssistats;a=commitdiff_plain;h=b0ce1f03b1c243f376a37773641161c55349bcf3;hp=bee112ed64c16e0642a15bce9f37a428cb062736 version 0.74 * added CFLAGS to Makefile (patch by VMiklos) * added '&' and '~' to list of nick prefix (patch by VMiklos) --- diff --git a/CHANGELOG b/CHANGELOG index 4f7ffd9..f69053d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,9 @@ Change log file for irssistats +version 0.74 (2007-09-20) + * added CFLAGS to Makefile (patch by VMiklos) + * added '&' and '~' to list of nick prefix (patch by VMiklos) + version 0.73 (2007-05-20) * added last weeks and last months options (suggested by Gouki) * fixed theme option when generating output diff --git a/Makefile b/Makefile index 5251143..bc45b7d 100644 --- a/Makefile +++ b/Makefile @@ -3,9 +3,10 @@ BIN = $(PRE)/bin DAT = $(PRE)/share/irssistats/data DOC = $(PRE)/share/doc/irssistats MAN = $(PRE)/share/man/man1 +CFLAGS ?= -O2 irssistats:irssistats.c - gcc -O2 -o irssistats irssistats.c + gcc $(CFLAGS) -o irssistats irssistats.c clean: rm -f irssistats diff --git a/README b/README index 062a010..eb94446 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -irssistats 0.73 +irssistats 0.74 site: http://royale.zerezo.com/irssistats/ mail: royale@zerezo.com diff --git a/irssistats.c b/irssistats.c index c4e9af2..e287e77 100644 --- a/irssistats.c +++ b/irssistats.c @@ -1,5 +1,5 @@ /* - * irssistats version 0.73 + * irssistats version 0.74 * * This tool generates IRC stats based on irssi logs. * Usage: irssistats [/path/to/file.conf] @@ -49,7 +49,7 @@ #define MINWORDLENGTH 5 /* irssistats */ -#define VERSION "0.73" +#define VERSION "0.74" #define URL "http://royale.zerezo.com/irssistats/" /* Counters */ @@ -1097,6 +1097,8 @@ void parse_log(char *logfile) case '@': case '%': case '+': + case '&': + case '~': case ' ': nickstart = timelen+2; break;