home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / tvision / newed / revision < prev   
Encoding:
Text File  |  1993-10-31  |  6.0 KB  |  126 lines

  1. 02-29-92 v1.00  Initial release.
  2.  
  3. 03-25-92 v1.01  Changed NEDEMO.PAS to correct an error in
  4.                 declaring Current_Screen_Mode.  Changed this
  5.                 from a CONST to a VAR declaration and set its
  6.                 initialization in TEditDemo.Init
  7.  
  8.                 Changed references to Current_Video_Mode in
  9.                 NEDEMO.PAS comments to Current_Screen_Mode.
  10.                 Missed this when cleaning up the code for the
  11.                 initial release.
  12.  
  13. 06-09-92 v1.02  Added a demonstration on how to close and reopen
  14.                 a PEditWindow based on a spell check demo.  Had
  15.                 to add code to NEDEMO.PAS, EDITPKG.PAS, and to
  16.                 CMDFILE.PAS to do this.
  17.  
  18.                 Changed the order of disabling commands in NEDEMO
  19.                 INIT procedure so the NEWEDIT commands came last
  20.                 in the disabling sequence.  Did this for cosmetic
  21.                 reasons.
  22.  
  23. 08-13-92 v1.03  Corrected a bug that would lock the system if a
  24.                 TMemo buffer was full and you tried to do a wrap.
  25.                 This involved adding a line in the methods
  26.                 TEditor.Do_Word_Wrap and TEditor.Newline in
  27.                 NEWEDIT.PAS.  Added a note in the NEWEDIT.DOC
  28.                 file under TVFORMS DEMO AND PDEMO OBJECT describing
  29.                 why TMemo fields won't wrap properly sometimes.
  30.  
  31.                 Changed PROCEDURE TEditor.Newline to a FUNCTION
  32.                 in NEWEDIT.PAS.  Did this to allow easier expansion
  33.                 in the future.
  34.  
  35.                 Removed HelpCtx line in function Open_Editor in
  36.                 EDITPKG.PAS  This was done to allow toggling of
  37.                 the StatusLine when Ctrl, Alt, or Shift are
  38.                 pressed while an editor window is open.
  39.  
  40.                 Fixed help contexts in CMDFILE.PAS.  The wrong
  41.                 help was showing up when pressing F1 on check
  42.                 boxes.
  43.  
  44.                 Run the MS-DOS FC program on the programs cited
  45.                 above if you want to catch all the changes and
  46.                 redirect the output to a filename of your choice.
  47.  
  48. NO DATE  v1.04  In NEWEDIT.PAS removed local VAR from TEditWindow.Close
  49.                 as it was never used.
  50.  
  51.                 In NEWEDIT.PAS removed S := LineStart (CurPtr); just
  52.                 below the if E <> S then statement in Reformat_Paragraph
  53.                 as it also appears just above if E <> S then.
  54.  
  55.                 In NEWEDIT.PAS, at the top of the file in the comments
  56.                 area, I defined a label called SELDEL.  Seeing as I
  57.                 never incorporated this (an idea that didn't work) I
  58.                 removed it from the comments about the labels.
  59.  
  60.                 In NEDEMO.PAS changed the version number in the About
  61.                 dialog (I always forget to do this!) and changed my
  62.                 email address (emh1).
  63.  
  64.                 In NEDEMO.PAS T_EditDemo.Init, changed the order of
  65.                 Load_Desktop and DisableCommands.  I put DisableCommands
  66.                 first.  Did this because loading a previously saved
  67.                 desktop with Load_Desktop first did not activate the
  68.                 Search Menu commands.
  69.  
  70.                 In NEDEMO.PAS, I removed the CONST for the color palette.
  71.                 in T_EditDemo.Init.  It is a holdover from an idea that
  72.                 never panned out and is never used.
  73.  
  74. 10-31-93 v2.00  In NEDEMO.PAS removed my email address and credits.
  75.                 I don't support the program anymore so this gets me
  76.                 and others off the hook in taking customer calls.
  77.  
  78.                 In NEDEMO.PAS, changed the IF statement in
  79.                 DeskTopReadViews that checks the current video mode
  80.                 compared to the one retrieved from the Desktop.  The
  81.                 comparison wasn't working properly, as the video mode
  82.                 should only be toggled if the Desktop and ScreenMode
  83.                 don't jive.
  84.  
  85.                 In NEDEMO.PAS, removed extraneous code that is now
  86.                 supported elsewhere in the RTL, like the Shell_To_Dos
  87.                 procedure, Cascade, Tile, etc.  Placed the prefix
  88.                 App.TApplication in front of thise procedures in the
  89.                 HandleEvent method.
  90.  
  91.                 In NEDEMO.PAS, added the FULL color palette for
  92.                 New_Colors. The short color palette would mess up the
  93.                 help window colors.
  94.  
  95.                 In NEDEMO.PAS did some cosmetic changes (spaces, etc) of
  96.                 the source code.  Otherwise, it's pretty much the same
  97.                 file as v1.04.
  98.  
  99.                 In EDITPKG.PAS, changed Deallocate_The_Editor and
  100.                 Initialize_The_Editor to use the new BP7.0 MEMORY.PAS
  101.                 unit and remove TP6.0 BUFFERS.PAS code.
  102.  
  103.                 In NEWEDIT.PAS, went through the BP7.0 EDITORS.PAS
  104.                 source code and added a very few lines of code to make
  105.                 sure NEWEDIT was up to date.  For the most part, it's
  106.                 97% the same code as v1.03.
  107.  
  108.                 In NEWEDIT.PAS added the {Q-} toggle.  This drove me
  109.                 nuts because I couldn't figure out why I'd get 215
  110.                 errors. This ensures that folks who have it toggled on
  111.                 won't be get 215 errors (EDITORS.TPU has it off).
  112.  
  113.                 In EDITHELP.TXT, changed the help constants to include
  114.                 the "hc" prefix found in the CMDFILE.PAS.  I have
  115.                 totally ignored the BP constants in the APP.PAS file,
  116.                 using my own instead.  This was just laziness on my part
  117.                 as I didn't want to modify code and rewrite the helpfile
  118.                 just to accomodate a few constants.
  119.  
  120.  
  121.  
  122.                 Run the MS-DOS FC program against v1.03 and v2.00 files
  123.                 if you want to catch all the changes and redirect the
  124.                 output to a filename, or printer, of your choice.
  125.  
  126.