Version - Dec 95.
----------------
Serious internal changes.  Added concept of DocTemplate, and moved certain CreateDoc/CreateFrame methods to there.  Broken all old PythonWin code :-(


PythonWin - version - started May 95.

* new dynamic dialogs - dialog boxes and property pages can be defined totally within Python source code, without the need for an external dialog editor.

* some OLE2 support.

* Fixed "Run Script" and "import" functions.  "Run Script" allows args, handles SystemExit, etc, and should be capable of running almost all command line scripts (please let me know ones that have problems)

* File dialog has new methods "SetOFNTitle" and "SetOFNInitialDir"

* Fixed the way exceptions in command handlers are handled.  Have almost totally moved to "traceback.py" as the standard mechanism (now that it supports SyntaxErrors!)

* The INI file now allows "Application Path", and "Application Path 1" to "Application Path 9".  The 1-9's must be contiguous (ie, if 3 is missing, 4-9 will not be loaded.  These may all be ; sep'd paths.

* win32api module has new methods.  See win32api.txt

* Made some menu methods params more consistant with MFC.

* Right menu supports "Locate file" when on an "import" line.

* Unix format files are loaded (slowly) but no attempt is made to write in Unix format - DOS format is used instead.

* Added support for a tools menu.  The ini file is read for a "[Tools Menu]" section.  Each item can be of the format:
menu string=python command[|description]
eg:
[Tools Menu]
&Remote File Editor...=import editorremote\neditorremote.CEditorRemote().Create()|Remote File Editor

Note that '\n' is translated into a newline character, but no other conversions are done.  A \n is appended to the string.

* Lots of documentation.
