A11 cleanup commit
This commit is contained in:
parent
dc141c5f4d
commit
e3853affc0
|
@ -1336,4 +1336,5 @@ Begin
|
||||||
TextAttr := 12;
|
TextAttr := 12;
|
||||||
WriteLn;
|
WriteLn;
|
||||||
WriteLn ('COMPLETE!');
|
WriteLn ('COMPLETE!');
|
||||||
|
TextAttr := 7;
|
||||||
End.
|
End.
|
||||||
|
|
|
@ -371,7 +371,7 @@ Procedure TBBSUser.DetectGraphics;
|
||||||
Var
|
Var
|
||||||
Loop : Byte;
|
Loop : Byte;
|
||||||
Begin
|
Begin
|
||||||
If Not Session.Lang.okANSI Then Begin
|
If Session.Lang.Flags AND ThmAllowANSI = 0 Then Begin
|
||||||
Session.io.Graphics := 0;
|
Session.io.Graphics := 0;
|
||||||
Exit;
|
Exit;
|
||||||
End;
|
End;
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
; Current abilities:
|
; Current abilities:
|
||||||
;
|
;
|
||||||
; - Import FIDONET.NA into Message bases
|
; - Import FIDONET.NA into Message bases
|
||||||
|
; - Mass upload files to all file bases (with FILE_ID.DIZ import)
|
||||||
;
|
;
|
||||||
; ==========================================================================
|
; ==========================================================================
|
||||||
; ==========================================================================
|
; ==========================================================================
|
||||||
|
@ -92,6 +93,19 @@ filename = fidonet.na
|
||||||
|
|
||||||
[MassUpload]
|
[MassUpload]
|
||||||
|
|
||||||
|
; this function searches all configured file directories for new
|
||||||
|
; files and will upload them into the BBS. It will attempt to
|
||||||
|
; import FILE_ID.DIZ using the configured archivers if the option
|
||||||
|
; is enabled.
|
||||||
|
|
||||||
|
; Name to save has the uploader
|
||||||
|
|
||||||
uploader_name = Mystic BBS
|
uploader_name = Mystic BBS
|
||||||
|
|
||||||
|
; Import FILE_ID.DIZ? 1=yes
|
||||||
|
|
||||||
import_fileid = 1
|
import_fileid = 1
|
||||||
|
|
||||||
|
; No description string used when no FILE_ID.DIZ is imported.
|
||||||
|
|
||||||
no_description = No Description
|
no_description = No Description
|
||||||
|
|
|
@ -99,6 +99,7 @@ FUTURE / IDEAS / WORK IN PROGRESS / NOTES
|
||||||
- ANSI listbox is terribly inefficient with its output.
|
- ANSI listbox is terribly inefficient with its output.
|
||||||
- So much cool stuff to do with the new themes
|
- So much cool stuff to do with the new themes
|
||||||
- LastOn revamp make sure its not global and new stuff is populated
|
- LastOn revamp make sure its not global and new stuff is populated
|
||||||
|
- ANSI online help that can execute menu commands/restore screen
|
||||||
|
|
||||||
RANDOM DRUNKEN BRAINDUMP AKA DESIGN DETAILS
|
RANDOM DRUNKEN BRAINDUMP AKA DESIGN DETAILS
|
||||||
===========================================
|
===========================================
|
||||||
|
|
Loading…
Reference in New Issue