home *** CD-ROM | disk | FTP | other *** search
- 02-29-92 v1.00 Initial release.
-
- 03-25-92 v1.01 Changed NEDEMO.PAS to correct an error in
- declaring Current_Screen_Mode. Changed this
- from a CONST to a VAR declaration and set its
- initialization in TEditDemo.Init
-
- Changed references to Current_Video_Mode in
- NEDEMO.PAS comments to Current_Screen_Mode.
- Missed this when cleaning up the code for the
- initial release.
-
- 06-09-92 v1.02 Added a demonstration on how to close and reopen
- a PEditWindow based on a spell check demo. Had
- to add code to NEDEMO.PAS, EDITPKG.PAS, and to
- CMDFILE.PAS to do this.
-
- Changed the order of disabling commands in NEDEMO
- INIT procedure so the NEWEDIT commands came last
- in the disabling sequence. Did this for cosmetic
- reasons.
-
- 08-13-92 v1.03 Corrected a bug that would lock the system if a
- TMemo buffer was full and you tried to do a wrap.
- This involved adding a line in the methods
- TEditor.Do_Word_Wrap and TEditor.Newline in
- NEWEDIT.PAS. Added a note in the NEWEDIT.DOC
- file under TVFORMS DEMO AND PDEMO OBJECT describing
- why TMemo fields won't wrap properly sometimes.
-
- Changed PROCEDURE TEditor.Newline to a FUNCTION
- in NEWEDIT.PAS. Did this to allow easier expansion
- in the future.
-
- Removed HelpCtx line in function Open_Editor in
- EDITPKG.PAS This was done to allow toggling of
- the StatusLine when Ctrl, Alt, or Shift are
- pressed while an editor window is open.
-
- Fixed help contexts in CMDFILE.PAS. The wrong
- help was showing up when pressing F1 on check
- boxes.
-
- Run the MS-DOS FC program on the programs cited
- above if you want to catch all the changes and
- redirect the output to a filename of your choice.
-
- NO DATE v1.04 In NEWEDIT.PAS removed local VAR from TEditWindow.Close
- as it was never used.
-
- In NEWEDIT.PAS removed S := LineStart (CurPtr); just
- below the if E <> S then statement in Reformat_Paragraph
- as it also appears just above if E <> S then.
-
- In NEWEDIT.PAS, at the top of the file in the comments
- area, I defined a label called SELDEL. Seeing as I
- never incorporated this (an idea that didn't work) I
- removed it from the comments about the labels.
-
- In NEDEMO.PAS changed the version number in the About
- dialog (I always forget to do this!) and changed my
- email address (emh1).
-
- In NEDEMO.PAS T_EditDemo.Init, changed the order of
- Load_Desktop and DisableCommands. I put DisableCommands
- first. Did this because loading a previously saved
- desktop with Load_Desktop first did not activate the
- Search Menu commands.
-
- In NEDEMO.PAS, I removed the CONST for the color palette.
- in T_EditDemo.Init. It is a holdover from an idea that
- never panned out and is never used.
-
- 10-31-93 v2.00 In NEDEMO.PAS removed my email address and credits.
- I don't support the program anymore so this gets me
- and others off the hook in taking customer calls.
-
- In NEDEMO.PAS, changed the IF statement in
- DeskTopReadViews that checks the current video mode
- compared to the one retrieved from the Desktop. The
- comparison wasn't working properly, as the video mode
- should only be toggled if the Desktop and ScreenMode
- don't jive.
-
- In NEDEMO.PAS, removed extraneous code that is now
- supported elsewhere in the RTL, like the Shell_To_Dos
- procedure, Cascade, Tile, etc. Placed the prefix
- App.TApplication in front of thise procedures in the
- HandleEvent method.
-
- In NEDEMO.PAS, added the FULL color palette for
- New_Colors. The short color palette would mess up the
- help window colors.
-
- In NEDEMO.PAS did some cosmetic changes (spaces, etc) of
- the source code. Otherwise, it's pretty much the same
- file as v1.04.
-
- In EDITPKG.PAS, changed Deallocate_The_Editor and
- Initialize_The_Editor to use the new BP7.0 MEMORY.PAS
- unit and remove TP6.0 BUFFERS.PAS code.
-
- In NEWEDIT.PAS, went through the BP7.0 EDITORS.PAS
- source code and added a very few lines of code to make
- sure NEWEDIT was up to date. For the most part, it's
- 97% the same code as v1.03.
-
- In NEWEDIT.PAS added the {Q-} toggle. This drove me
- nuts because I couldn't figure out why I'd get 215
- errors. This ensures that folks who have it toggled on
- won't be get 215 errors (EDITORS.TPU has it off).
-
- In EDITHELP.TXT, changed the help constants to include
- the "hc" prefix found in the CMDFILE.PAS. I have
- totally ignored the BP constants in the APP.PAS file,
- using my own instead. This was just laziness on my part
- as I didn't want to modify code and rewrite the helpfile
- just to accomodate a few constants.
-
-
-
- Run the MS-DOS FC program against v1.03 and v2.00 files
- if you want to catch all the changes and redirect the
- output to a filename, or printer, of your choice.
-