Merge mbsebbs.c spelling correction into 1.0.6.5.

Hg: changed ChangeLog
This commit is contained in:
Andrew Leary 2016-02-12 23:47:27 -05:00
commit ededaecf2a
9 changed files with 18 additions and 23 deletions

View File

@ -1,6 +1,6 @@
MBSE BBS AUTHORS. MBSE BBS AUTHORS.
$Id: AUTHORS,v 1.29 2007/08/22 21:14:38 mbse Exp $ $Id: AUTHORS,v 1.29 2015/11/03 21:05:00 mbse Exp $
The following people are members of the MBSE BBS development team: The following people are members of the MBSE BBS development team:
@ -43,7 +43,6 @@ NERvOus nervous@nervous.it
Bobby Cabral bobbyc@digitelone.com Bobby Cabral bobbyc@digitelone.com
Johannes Beekhuizen 2:280/1018@fidonet Johannes Beekhuizen 2:280/1018@fidonet
Lukas De Groen 2:280/1027@fidonet Lukas De Groen 2:280/1027@fidonet
Vincent Coen vbcoen@gmail.com 2:250/1@fidonet
Joachim Kuwan 2:249/591@fidonet Joachim Kuwan 2:249/591@fidonet
Greek greek@voyager.nnov.ru Greek greek@voyager.nnov.ru
Sergey Nechaev 2:5015/53@fidonet Sergey Nechaev 2:5015/53@fidonet
@ -60,4 +59,3 @@ val khokhlov 2:550/180@fidonet
Robert Wolfe 1:2613/4307@fidonet Robert Wolfe 1:2613/4307@fidonet
Alan Ianson Alan Ianson
Simon Voortman 2:280/1049.1@fidonet Simon Voortman 2:280/1049.1@fidonet
Andrew Leary 1:320/219@fidonet

View File

@ -1,3 +1,7 @@
v1.0.6.5 12-Feb-2016 - Robert James Clay
1. Edit README file to better reflect current practice.
v1.0.6.4 22-Nov-2015 - Andrew Leary v1.0.6.4 22-Nov-2015 - Andrew Leary
1. Updated mbfido's .tic file support to use "Lfile" instead 1. Updated mbfido's .tic file support to use "Lfile" instead

23
README
View File

@ -1,32 +1,25 @@
MBSE BBS Packages. MBSE BBS Packages.
Distribution naming scheme: Distribution naming scheme:
mbsebbs-0.33.18.tar.bz2 mbsebbs-1.0.6.tar.bz2
| | | | | | | |
| | | +-------- minor patchlevel | | | +--------- minor patchlevel
| | +----------- minor version | | +----------- minor version
| +------------- major version | +------------- major version
+------------------- package name +------------------- package name
For fidonet distribution, the tar archive and FILE_ID.DIZ are For fidonet distribution, the tar archive and FILE_ID.DIZ are
zipped together in a file like mbb03318.zip zipped together in a file like MBSE-106.ZIP
The odd minor version numbers are developent versions only. From 0.35.1 and up For first time installing, see the file INSTALL. After a manual installation,
these will not be released anymore but are only available via cvs. the html guide is installed in /opt/mbse/html.
The even minor version numbers will be stable releases, they will be available
at http://www.mbse.eu and at 2:280/2802. The first version using this
scheme is 0.36.00
For first time installing, see the file INSTALL. After installation, the html
guide is installed in /opt/mbse/html.
Since 1 August 2013 I (Michiel Broek) stopped developing this package. But this Since 1 August 2013 I (Michiel Broek) stopped developing this package. But this
is a GPL2 licensed open source package so feel free to continue to improve it. is a GPL2 licensed open source package so feel free to continue to improve it.
I only ask to make it clear to others that it is a modified package. You can do I only ask to make it clear to others that it is a modified package. You can do
that by changing the version numbers and messages in the file configure.ac and that by changing the version numbers and messages in the file configure.ac and
then run autoconf to update the configure scripts. then run autoconf to update the configure scripts.

2
configure vendored
View File

@ -2309,7 +2309,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbutils mbnntp mbtask mbsetup unix lang
PACKAGE="mbsebbs" PACKAGE="mbsebbs"
MAJOR="1" MAJOR="1"
MINOR="0" MINOR="0"
REVISION="6.4" REVISION="6.5"
VERSION="$MAJOR.$MINOR.$REVISION" VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2015 Michiel Broek, All Rights Reserved" COPYRIGHT="Copyright (C) 1997-2015 Michiel Broek, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2015 M. Broek" SHORTRIGHT="Copyright (C) 1997-2015 M. Broek"

View File

@ -12,7 +12,7 @@ AC_SUBST(SUBDIRS)
PACKAGE="mbsebbs" PACKAGE="mbsebbs"
MAJOR="1" MAJOR="1"
MINOR="0" MINOR="0"
REVISION="6.4" REVISION="6.5"
VERSION="$MAJOR.$MINOR.$REVISION" VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2015 Michiel Broek, All Rights Reserved" COPYRIGHT="Copyright (C) 1997-2015 Michiel Broek, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2015 M. Broek" SHORTRIGHT="Copyright (C) 1997-2015 M. Broek"

View File

@ -3,7 +3,7 @@
* Purpose ...............: Monitor Program * Purpose ...............: Monitor Program
* *
***************************************************************************** *****************************************************************************
* Copyright (C) 1997-2011 * Copyright (C) 1997-2015
* *
* Michiel Broek FIDO: 2:280/2802 * Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10 * Beekmansbos 10
@ -449,7 +449,7 @@ void soft_info(void)
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);
center_addstr(10, (char *)"Ceeated in the Netherlands."); center_addstr(10, (char *)"Created in the Netherlands.");
set_color(WHITE, BLACK); set_color(WHITE, BLACK);
#ifdef __GLIBC__ #ifdef __GLIBC__
snprintf(temp, 81, "Compiled on glibc v%d.%d", __GLIBC__, __GLIBC_MINOR__); snprintf(temp, 81, "Compiled on glibc v%d.%d", __GLIBC__, __GLIBC_MINOR__);

View File

@ -4,7 +4,7 @@
* Purpose ...............: Setup Program * Purpose ...............: Setup Program
* *
***************************************************************************** *****************************************************************************
* Copyright (C) 1997-2008 * Copyright (C) 1997-2015
* *
* Michiel Broek FIDO: 2:280/2802 * Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10 * Beekmansbos 10