Bumped version to 0.39.4

This commit is contained in:
Michiel Broek 2003-12-08 18:13:21 +00:00
parent 49328fa66c
commit fc6e630ed0
5 changed files with 19 additions and 18 deletions

View File

@ -1,6 +1,9 @@
$Id$ $Id$
v0.39.3 26-Nov-2003 v0.39.4 08-Dec-2003
v0.39.3 26-Nov-2003 - 08-Dec-2003.
general: general:
Since this version Posix threads are being used, please let Since this version Posix threads are being used, please let
@ -58,6 +61,7 @@ v0.39.3 26-Nov-2003
mbsebbs: mbsebbs:
Fixed small memory leak. Fixed small memory leak.
Fixed posting to local/echomail areas from bbs users.
mball: mball:
Fixed 2 forgotten fclose functions. Fixed 2 forgotten fclose functions.

5
TODO
View File

@ -74,9 +74,6 @@ mbfido:
N: Code cleanup and make a structure in this program. Remove duplicate N: Code cleanup and make a structure in this program. Remove duplicate
or similar functions. or similar functions.
L: Remove memory leak during toss. (It's ok for less 5000 messages for
each run).
N: Process GoldED filerequest netmails with the filereq flag set, we N: Process GoldED filerequest netmails with the filereq flag set, we
should create a .req file with the contents of the subject line. should create a .req file with the contents of the subject line.
@ -96,7 +93,7 @@ mbfido:
L: Maybe store echomail for unknown areas in badmail area. L: Maybe store echomail for unknown areas in badmail area.
L: Make ik possible to only virus scan the complete archives. L: Make it possible to only virus scan the complete archives.
N: Force processing of arealists so that all tags are forced to N: Force processing of arealists so that all tags are forced to
uppercase. Seems to give problems in some nets. uppercase. Seems to give problems in some nets.

2
configure vendored
View File

@ -1274,7 +1274,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbtask mbsetup unix lang examples html
PACKAGE="mbsebbs" PACKAGE="mbsebbs"
MAJOR="0" MAJOR="0"
MINOR="39" MINOR="39"
REVISION="3" REVISION="4"
VERSION="$MAJOR.$MINOR.$REVISION" VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved" COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2003 M. Broek" SHORTRIGHT="Copyright (C) 1997-2003 M. Broek"

View File

@ -11,7 +11,7 @@ dnl After changeing the version number, run autoconf!
PACKAGE="mbsebbs" PACKAGE="mbsebbs"
MAJOR="0" MAJOR="0"
MINOR="39" MINOR="39"
REVISION="3" REVISION="4"
VERSION="$MAJOR.$MINOR.$REVISION" VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved" COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2003 M. Broek" SHORTRIGHT="Copyright (C) 1997-2003 M. Broek"

View File

@ -4,7 +4,7 @@
* Purpose ...............: Make Web statistics * Purpose ...............: Make Web statistics
* *
***************************************************************************** *****************************************************************************
* Copyright (C) 1997-2002 * Copyright (C) 1997-2003
* *
* Michiel Broek FIDO: 2:280/2802 * Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10 * Beekmansbos 10
@ -105,8 +105,7 @@ char *adate(time_t now)
sprintf(buf, " "); sprintf(buf, " ");
} else { } else {
ptm = *localtime(&now); ptm = *localtime(&now);
sprintf(buf, "%02d-%02d-%04d %02d:%02d", ptm.tm_mday, ptm.tm_mon +1, ptm.tm_year + 1900, sprintf(buf, "%02d-%02d-%04d %02d:%02d", ptm.tm_mday, ptm.tm_mon +1, ptm.tm_year + 1900, ptm.tm_hour, ptm.tm_min);
ptm.tm_hour, ptm.tm_min);
} }
return buf; return buf;
} }
@ -127,6 +126,7 @@ void MakeStat(void)
} }
if (!do_quiet) { if (!do_quiet) {
colour(CYAN, BLACK);
printf("\rMaking statistical HTML pages"); printf("\rMaking statistical HTML pages");
fflush(stdout); fflush(stdout);
} }