Prepare 0.38.0 release
This commit is contained in:
parent
3f28b714f4
commit
d1c10dc2e2
@ -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_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.38_00_release 03-Oct-2003 Version 0.38.00 release.
|
||||
|
||||
|
||||
CVS usage.
|
||||
|
9
TODO
9
TODO
@ -1,7 +1,7 @@
|
||||
$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
|
||||
another. Some things are urgent and necessary to operate the bbs
|
||||
@ -114,6 +114,8 @@ mbcico:
|
||||
|
||||
N: Support binkp Argus freqs (Radius too?).
|
||||
|
||||
U: Fix binkp file resume when mbcico silently dies.
|
||||
|
||||
mbfile:
|
||||
L: Add a check to see if the magic filenames are (still) valid.
|
||||
|
||||
@ -125,6 +127,9 @@ mbfile:
|
||||
|
||||
N: Add area sorting
|
||||
|
||||
N: If area is missing on the commandline, mbfile searches for record
|
||||
0 wich doesn't exist.
|
||||
|
||||
mbmsg:
|
||||
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
|
||||
|
4
configure
vendored
4
configure
vendored
@ -1267,8 +1267,8 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbtask mbsetup unix lang examples html
|
||||
|
||||
PACKAGE="mbsebbs"
|
||||
MAJOR="0"
|
||||
MINOR="37"
|
||||
REVISION="9"
|
||||
MINOR="38"
|
||||
REVISION="0"
|
||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||
COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved"
|
||||
SHORTRIGHT="Copyright (C) 1997-2003 M. Broek"
|
||||
|
@ -10,8 +10,8 @@ dnl General settings for MBSE BBS
|
||||
dnl After changeing the version number, run autoconf!
|
||||
PACKAGE="mbsebbs"
|
||||
MAJOR="0"
|
||||
MINOR="37"
|
||||
REVISION="9"
|
||||
MINOR="38"
|
||||
REVISION="0"
|
||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||
COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved"
|
||||
SHORTRIGHT="Copyright (C) 1997-2003 M. Broek"
|
||||
|
@ -79,6 +79,7 @@ void Unsetraw(void); /* Unset raw mode */
|
||||
int Waitchar(unsigned char *, int); /* Wait n * 10mSec for char */
|
||||
int Escapechar(unsigned char *); /* Escape sequence test */
|
||||
char *xstrcpy(char *);
|
||||
char *xstrcat(char *, char *);
|
||||
char *padleft(char *str, int size, char pad);
|
||||
void Striplf(char *String);
|
||||
void colour(int, int);
|
||||
|
@ -391,19 +391,34 @@ void disk_stat(void)
|
||||
|
||||
void soft_info(void)
|
||||
{
|
||||
char temp[81];
|
||||
char temp[81], *p;
|
||||
|
||||
clr_index();
|
||||
set_color(YELLOW, BLACK);
|
||||
#ifdef __linux__
|
||||
center_addstr( 6, (char *)"MBSE BBS (Linux)");
|
||||
p = xstrcpy((char *)"MBSE BBS (GNU/Linux");
|
||||
#elif __FreeBSD__
|
||||
center_addstr( 6, (char *)"MBSE BBS (FreeBSD)");
|
||||
p = xstrcpy((char *)"MBSE BBS (FreeBSD");
|
||||
#elif __NetBSD__
|
||||
center_addstr( 6, (char *)"MBSE BBS (NetBSD)");
|
||||
p = xstrcpy((char *)"MBSE BBS (NetBSD");
|
||||
#else
|
||||
center_addstr( 6, (char *)"MBSE BBS (Unknown)");
|
||||
p = xstrcpy((char *)"MBSE BBS (Unknown");
|
||||
#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);
|
||||
center_addstr( 8, (char *)COPYRIGHT);
|
||||
set_color(YELLOW, BLACK);
|
||||
|
Reference in New Issue
Block a user