Thank you for purchasing EditPro 3.0.  See the following files for
detailed information on EditPro initialization file variables:

	\WIN\EPINI.TXT    - General initialization variables
	\WIN\MENUSINI.TXT - Menu designer variables
	\WIN\TOOLSINI.TXT - Icon palette designer variables
	
The following is new for this release and is not in the User's Guide:

1)	Minor bug fixes.

2)	Speed optimizations.

3)	Added template expansion through the "TemplateExpand" macro command
	defined in the \MACROS\TEMPLATE.M file.  To define a template see the
	\WIN\EP.INI file under the [.c] section.  The templates are specific
	to the file extension.  Multiple extensions can have the same templates
	by added its alias in the [TemplateExtAlias] section.  The following
	description is for template meta-characters:
	
		\c - position cursor at this location after expansion
		\t - insert a tab
		\b - backspace
		\n - newline
		
	To expand a template type the template name and press the Shift+Space
	key combination or select Template Expand from the Edit menu.
	
4)	Added DOSExec macro function to the MC.EXE compiler.  This function
	will execute the specified DOS command and wait until completed. The
	following is the function prototype:
	
		WORD DOSExec (LPSTR lpExe, LPSTR lpOptions, LPSTR lpStartupDir);
		
			lpExe			DOS executable file name, this can be a max. of
							60 characters.
					
			lpOptions		Optional parameter list, maximum length of
							63 characters.  Must contain an empty string,
							"", if not used.
			
			lpStartupDir	Startup directory, maximum length of 63
							characters.  Must contain an empty string,
							"", if not used.
			
		NOTE: The above string length limitations are the limits of a
		.PIF file, since EditPro creates a .PIF file to run the DOS
		command.
		
		Return: The return value is the same as with WinExec.


5)	Added 'MaxLineLen' entry to the \WIN\EP.INI file.  This entry allows you
	to specify longer line lengths than the default 4K.
	
6)	Changed the RUN and LOAD MACRO commands to use the file open common
	dialog box.
	
7)	Added the following system macro functions in the \MACROS\STARTUP.M file:

		_FileDeactivate (void) - called whenever you leave a file window.
		_FileOpen (void) - called whenever a file is opened.
		
8)	Added a file open history list, see the 'Recall' command in the file
	menu.
	
9)	Added a [Macros] section to the \WIN\EP.INI file to preload custom
	macro files on startup.
	
10)	Added variables 'FOpenDir' and 'FOpenIdx' in the \WIN\EP.INI file allowing
	you to specify the FileOpen directory and file type index that the FileOpen
	dialog box will use.  This is useful in a macro routine to set a specified
	directory before calling 'Open'.  Refer to the file \WIN\EPINI.TXT for
	further details.
	
11)	Added ability to not create a backup file when saving to just remove the
	Backup Path from the Startup dialog box in the Utility menu.
	
12)	Added a Launch command on the Compile menu.  This command runs the
	application specified in the Languages dialog on the Utility menu.  To
	modify the Launch command you can change the 'LaunchApp' macro defined
	in the UTILS.M macro file.
	
13)	Added a New command on the File menu.  This will allow you to open a text
	file in Unix format (LF only).
	
14)	Changed SaveAs to include file types for DOS/Unix and all supported image
	file types.
	
15)	Removed requirement to have \MACROS in your path to run the macro compiler.
	EditPro will automatically supply the path for this compiler.
