Updated changelog

This commit is contained in:
Michiel Broek 2003-09-20 10:38:11 +00:00
parent 8f886bc4fe
commit b582f488d1
2 changed files with 142 additions and 149 deletions

View File

@ -1,12 +1,14 @@
$Id$
WARNING, users of Sparc and HP-PA systems should be carefull, some bbs
menus do not work. All other programs do work on all platforms.
All other users on Intel machines (99,9% I think) can use this version.
v0.37.9 17-Sep-2003
mbsebbs:
Made menus work on non-intel platforms.
mbsetup:
Made menus editor work on non-intel platforms.
v0.37.8 14-Sep-2003 - 17-Sep-2003

View File

@ -135,12 +135,6 @@ void Show_A_Menu(void)
S_COL(15,16, "Normal display color", le_int(menus.ForeGnd), le_int(menus.BackGnd))
S_COL(16,16, "Bright display color", le_int(menus.HiForeGnd), le_int(menus.HiBackGnd))
set_color(WHITE, BLACK);
Syslog('-', "AutoExec %d %d", menus.AutoExec, le_int(menus.AutoExec));
Syslog('-', "NoDoorSys %d %d", menus.NoDoorsys, le_int(menus.NoDoorsys));
Syslog('-', "Y2Kdoorsys %d %d", menus.Y2Kdoorsys, le_int(menus.Y2Kdoorsys));
Syslog('-', "Comport %d %d", menus.Comport, le_int(menus.Comport));
Syslog('-', "NoSuid %d %d", menus.NoSuid, le_int(menus.NoSuid));
Syslog('-', "NoPrompt %d %d", menus.NoPrompt, le_int(menus.NoPrompt));
show_bool(17,16, menus.AutoExec);
if (le_int(menus.MenuType) == 7) {
show_bool(13,58, menus.NoDoorsys);
@ -482,8 +476,7 @@ void EditMenus(void)
DIR *dp;
FILE *fil;
struct dirent *de;
char menuname[50][11];
char temp[81], pick[12], *p;
char menuname[50][11], temp[81], pick[12], *p;
Syslog('+', "Start menu edit");
memset(&menuname, 0, sizeof(menuname));
@ -638,5 +631,3 @@ int bbs_menu_doc(FILE *fp, FILE *toc, int page)
return page;
}