Fixes 2.00 -> 2.02 Title bar clock update under 2.0 Archive files with spaces (quotes) Multiple sources with 'unmark off' commands (i.e. SizeCheck) 'Read %s SEARCH' automatically starts, and skips to next file when it reaches the end. Default Arc extract menu item was missing a space. "Arc <*x %s" Doesn't assume device names are null terminated. In batch files, ";" as the first character can be used to comment out a line. Fixed startup lock stuff: OpenWindow Lock S OpenWindow Lock D This was not locking the source window. Single and doubles quotes can be intermixed like ARexx. Additions/changes: About and other requesters will show the version/revision number in the title. Added "Copy %s %d RENAME" (asks for new filename while copying) Added %P (source path without filename) %R (requester string) ------------------------------------------------------------------------------- AddKeyCmd [K,batch_string] Add a keyboard command AddKey c,Copy %s %d Press "c" to begin a file copy AddKey C,Copy %s Press SHIFT+C to start a copy that requests dest path ------------------------------------------------------------------------------- AddAutoCmd [data,pattern,batch_string] Adds an auto command to the list. DEFAULT & TEXT can be anywhere now, instead of just at the end. This also lets you add while it's running, so no text editor is needed. I've also added a file matching pattern. This is still compatible with the old format. AddAutoCmd FORM????ILBM, ShowPic %s the old way AddAutoCmd FORM????ILBM, *.iff, ShowPic %s the file must end with ".IFF" and must match the data pattern also AddAutoCmd , *.iff, ShowPic %s The data doesn't matter, but the filename must end with .IFF ------------------------------------------------------------------------------- Confirm "text" [Continue] [Stop] [edit text] Ask user before continuing Confirm "Are you sure" "Yes" "No" If user selects "No", the operation will cancel Confirm "Enter new text" "Ok" "Cancel" "Text to edit" Text is modified by user and is accessed as %R (also returned in RESULT for AREXX) ------------------------------------------------------------------------------- HostScreen name Use a public screen as a host HostScreen BAUD All windows after this will open on the BaudBandit screen. ------------------------------------------------------------------------------- OpenScreen [depth] [LACE|HALF] Open a custom screen [A|AutoScroll width height] [P|Productivity] [S|SuperHires] (these two not tested) OpenScreen 3 LACE Opens an 8 color screen in interlace OpenScreen 2 LACE A 1024 1024 4 color autoscroll 1024x1024 (under 2.0 only) ------------------------------------------------------------------------------- Status V returns "DiskMaster V2.02" or whatever the current version is ------------------------------------------------------------------------------- Status H Public screeen name or host screen ------------------------------------------------------------------------------- Status D Destination path ------------------------------------------------------------------------------- Examples using %P & %R ;Extracts to dest (works in DM 2.0): AddMenu Archives, Lharc X >Dest , StdIO "CON:0/12/640/100/Extract Window";Extern CD %d \Lharc <* x %s;StdIO CLOSE ;Extracts to user entered path (%P is default in requester, %R is what the user entered) AddMenu Archives, Lharc X req , StdIO "CON:0/12/640/100/Extract Window";Confirm "Enter dest path" Continue Cancel %p;Extern CD %r \Lharc <* x %s;StdIO CLOSE