Skip to content
Snippets Groups Projects
Commit 300cc8fc authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Paste the table of supported drop files (write and/or read) into F1 help

Also, when hitting ESC at the "Use Real Names" prompt, don't prompt for the Lower-casing of the drop file name.
parent ff60b4f9
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #2880 passed
......@@ -1495,6 +1495,21 @@ void xtrn_cfg(uint section)
"\n"
"If this online program requires a specific BBS data (drop) file\n"
"format, select the file format from the list.\n"
"\n"
"Supported drop file formats:\n"
"\n"
" ~ Software Write File(s) Read File(s) ~\n"
" Mystic DOOR32.SYS\n"
" GAP DOOR.SYS DOOR.SYS\n"
" WWIV CHAIN.TXT\n"
" PCBoard 15.3 PCBOARD.SYS & USERS.SYS USERS.SYS\n"
" RBBS/QuickBBS DORINFO#.DEF & EXITINFO.BBS EXITINFO.BBS\n"
" Wildcat! 2.x CALLINFO.BBS\n"
" SpitFire SFDOORS.DAT\n"
" TriBBS TRIBBS.SYS\n"
" MegaMail UTIDOOR.TXT\n"
" Solar Realms DOORFILE.SR\n"
" Synchronet XTRN.DAT MODUSER.DAT\n"
;
k=uifc.list(WIN_MID|WIN_ACT,0,0,0,&k,0
,"BBS Drop File Type",opt);
......@@ -1509,6 +1524,8 @@ void xtrn_cfg(uint section)
if(cfg.xtrn[i]->type && cfg.uq&UQ_ALIASES) {
k=(cfg.xtrn[i]->misc&REALNAME) ? 0:1;
k=uifc.list(WIN_MID,0,0,0,&k,0,"Use Real Names",uifcYesNoOpts);
if(k == -1)
break;
if(k==0 && !(cfg.xtrn[i]->misc&REALNAME)) {
cfg.xtrn[i]->misc|=REALNAME;
uifc.changes=TRUE;
......@@ -1516,7 +1533,7 @@ void xtrn_cfg(uint section)
else if(k==1 && (cfg.xtrn[i]->misc&REALNAME)) {
cfg.xtrn[i]->misc&=~REALNAME;
uifc.changes=TRUE;
}
}
}
if(cfg.xtrn[i]->type) {
k=(cfg.xtrn[i]->misc&XTRN_LWRCASE) ? 0:1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment