Prepare 0.38.0 release

This commit is contained in:
Michiel Broek 2003-10-03 19:48:15 +00:00
parent 3f28b714f4
commit d1c10dc2e2
7 changed files with 451 additions and 605 deletions

1012
ChangeLog

File diff suppressed because it is too large Load Diff

View File

@ -22,6 +22,7 @@ mbsebbs-0_33_21_release 04-Jun-2002 Version 0.33.21 release.
mbsebbs-0_35_01_current 05-Jun-2002 Start 0.35.01 development. mbsebbs-0_35_01_current 05-Jun-2002 Start 0.35.01 development.
mbsebbs-0_36_00_release 26-Dec-2002 Version 0.36.00 release. mbsebbs-0_36_00_release 26-Dec-2002 Version 0.36.00 release.
mbsebbs-0_37_00_current 26-Dec-2002 Start version 0.37 development. mbsebbs-0_37_00_current 26-Dec-2002 Start version 0.37 development.
mbsebbs-0.38_00_release 03-Oct-2003 Version 0.38.00 release.
CVS usage. CVS usage.

9
TODO
View File

@ -1,7 +1,7 @@
$Id$ $Id$
MBSE BBS V0.37.05 TODO list. MBSE BBS V0.38.0 TODO list.
---------------------------- ---------------------------
These are a list of things that must be implemented one way or These are a list of things that must be implemented one way or
another. Some things are urgent and necessary to operate the bbs another. Some things are urgent and necessary to operate the bbs
@ -114,6 +114,8 @@ mbcico:
N: Support binkp Argus freqs (Radius too?). N: Support binkp Argus freqs (Radius too?).
U: Fix binkp file resume when mbcico silently dies.
mbfile: mbfile:
L: Add a check to see if the magic filenames are (still) valid. L: Add a check to see if the magic filenames are (still) valid.
@ -125,6 +127,9 @@ mbfile:
N: Add area sorting N: Add area sorting
N: If area is missing on the commandline, mbfile searches for record
0 wich doesn't exist.
mbmsg: mbmsg:
N: With the post command if a netmail area is used the netmail area N: With the post command if a netmail area is used the netmail area
will cause trouble later, should be blocked to be used on netmail will cause trouble later, should be blocked to be used on netmail

4
configure vendored
View File

@ -1267,8 +1267,8 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbtask mbsetup unix lang examples html
PACKAGE="mbsebbs" PACKAGE="mbsebbs"
MAJOR="0" MAJOR="0"
MINOR="37" MINOR="38"
REVISION="9" REVISION="0"
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

@ -10,8 +10,8 @@ dnl General settings for MBSE BBS
dnl After changeing the version number, run autoconf! dnl After changeing the version number, run autoconf!
PACKAGE="mbsebbs" PACKAGE="mbsebbs"
MAJOR="0" MAJOR="0"
MINOR="37" MINOR="38"
REVISION="9" REVISION="0"
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

@ -79,6 +79,7 @@ void Unsetraw(void); /* Unset raw mode */
int Waitchar(unsigned char *, int); /* Wait n * 10mSec for char */ int Waitchar(unsigned char *, int); /* Wait n * 10mSec for char */
int Escapechar(unsigned char *); /* Escape sequence test */ int Escapechar(unsigned char *); /* Escape sequence test */
char *xstrcpy(char *); char *xstrcpy(char *);
char *xstrcat(char *, char *);
char *padleft(char *str, int size, char pad); char *padleft(char *str, int size, char pad);
void Striplf(char *String); void Striplf(char *String);
void colour(int, int); void colour(int, int);

View File

@ -391,19 +391,34 @@ void disk_stat(void)
void soft_info(void) void soft_info(void)
{ {
char temp[81]; char temp[81], *p;
clr_index(); clr_index();
set_color(YELLOW, BLACK); set_color(YELLOW, BLACK);
#ifdef __linux__ #ifdef __linux__
center_addstr( 6, (char *)"MBSE BBS (Linux)"); p = xstrcpy((char *)"MBSE BBS (GNU/Linux");
#elif __FreeBSD__ #elif __FreeBSD__
center_addstr( 6, (char *)"MBSE BBS (FreeBSD)"); p = xstrcpy((char *)"MBSE BBS (FreeBSD");
#elif __NetBSD__ #elif __NetBSD__
center_addstr( 6, (char *)"MBSE BBS (NetBSD)"); p = xstrcpy((char *)"MBSE BBS (NetBSD");
#else #else
center_addstr( 6, (char *)"MBSE BBS (Unknown)"); p = xstrcpy((char *)"MBSE BBS (Unknown");
#endif #endif
#ifdef __i386__
p = xstrcat(p, (char *)" i386)");
#elif __PPC__
p = xstrcat(p, (char *)" PPC)");
#elif __sparc__
p = xstrcat(p, (char *)" Sparc)");
#elif __alpha__
p = xstrcat(p, (char *)" Alpha)");
#elif __hppa__
p = xstrcat(p, (char *)" HPPA)");
#else
p = xstrcat(p, (char *)" Unknown)");
#endif
center_addstr( 6, p);
free(p);
set_color(WHITE, BLACK); set_color(WHITE, BLACK);
center_addstr( 8, (char *)COPYRIGHT); center_addstr( 8, (char *)COPYRIGHT);
set_color(YELLOW, BLACK); set_color(YELLOW, BLACK);