version 0.74 v0.74
authorAntoine Jacquet <royale@zerezo.com>
Wed, 19 Sep 2007 22:00:00 +0000 (00:00 +0200)
committerAntoine Jacquet <royale@zerezo.com>
Wed, 19 Sep 2007 22:00:00 +0000 (00:00 +0200)
* added CFLAGS to Makefile (patch by VMiklos)
* added '&' and '~' to list of nick prefix (patch by VMiklos)

CHANGELOG
Makefile
README
irssistats.c

index 4f7ffd9..f69053d 100644 (file)
--- 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
index 5251143..bc45b7d 100644 (file)
--- 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 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-irssistats 0.73
+irssistats 0.74
 site: http://royale.zerezo.com/irssistats/
 mail: royale@zerezo.com
 
index c4e9af2..e287e77 100644 (file)
@@ -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;