home *** CD-ROM | disk | FTP | other *** search
/ Chip Hitware 6 A / CHIP_HITWARE6_A.iso / tools / Dana / ReadMe.txt < prev    next >
Text File  |  1998-10-15  |  4KB  |  121 lines

  1. -------------------------------------------------------------------------
  2.                             Dana Text Editor
  3.                                                                  ver1.13
  4.                                                      RimArts, Inc. ,1998
  5. -------------------------------------------------------------------------
  6.  
  7. Changes from ver1.12
  8.  
  9. - Bug fix: Abnormally terminated when the file which contains ".lzh" in
  10.   the middle of the file name is opened.
  11. - Showing Vertical/Horizontal scroll bar options. Those options were removed
  12.   in ver1.12 but they came back.
  13.  
  14. Changes from ver1.11
  15. - Bug fix: Could not open the file whose pass name is longer than 128.
  16. - Bug fix: Comment blocks were not colored correctly in the case when
  17.   long lines are wrapped without return codes.
  18. - Bug fix: Some minor bugs in Dana Script.
  19. - etc.
  20.  
  21.  
  22. ------------ Ver1.10 -------------------------------------
  23. * Important
  24.  
  25. - Compatibility
  26.  
  27.   From this version, you can no more use Dana on Windows3.1 with Win32s
  28.   nor WindowsNT3.5 or older. If you have to use those OS, don't upgrade
  29.   please. We are sorry but the world of Windows doesn't allow us  to
  30.   keep those compatibilities and to keep up the new technologies at a
  31.   same time.
  32.   Please run the new Dana on Windows95 or NT4.0, at least NT3.51. (We
  33.   haven't tested on NT3.51 but it may work)
  34.  
  35.  
  36. - Installation
  37.  
  38.   If you are already using Dana.ver1.04 or older, we recommend you to
  39.   setup this new version to a new folder, not the folder old version is
  40.   installed.
  41.   You could overwrite the old folder so that all the setting will be
  42.   inherited, but in that case, WE STRONGLY RECOMMEND YOU TO BACKUP ALL
  43.   FILES IN THE OLD FOLDER BEFORE YOU OVERWRITE THEM. Because sometimes
  44.   old data files make the new version crash because of some compatibility
  45.   problem.
  46.   We tried to remove all that kind of risk as possible as we could. But
  47.   each user's setting varies so we could not remove all the potential
  48.   problems.
  49.  
  50. - HTML support
  51.  
  52.   You could see HTML tags in different color in the old version. In the
  53.   new version, you can, too. But if you overwrite the new version
  54.   to the old version, it doesn't work. You will need some work to make
  55.   it effective. You need to configure "Block Comments" setting in the
  56.   "Keywords" property.
  57.   First, select HTML keywords in the combobox in
  58.   "Tool"->"Preferences"->"Keywords". Then click "Block Comments" button
  59.   to configure the block comments.
  60.   Add the following settings.
  61.  
  62.     Begin:"<"
  63.     End:">"
  64.     Color:whatever you want,
  65.     Keywords in Block:Color
  66.     Click "Add"
  67.  
  68.     Begin:"<!--"
  69.     End:"-->"
  70.     Color:whatever you want
  71.     Keywords in Block:none
  72.     Click "Add"
  73.  
  74.     Begin:"<SCRIPT"
  75.     End:"</SCRIPT>"
  76.     Color:whatever you want,
  77.     Keywords in Block:Color
  78.     Click "Add"
  79.  
  80.  
  81. - Changes on Dana Script
  82.  
  83.   You can't pass static string to user defined procedures any more. This
  84.   change may affect some old script including "Michelle.das".
  85.   Please modify those scripts as follows:
  86.  
  87.     Proc MyProc
  88.         'st$ is declared as a global variable outside the routine
  89.         MyFunc(st$) '<-Error!!
  90.     End Proc
  91.  
  92.     Proc MyProc
  93.         Dim d$
  94.         d$ = st$ '<- Copy to the local variable like this
  95.         MyFunc(d$)
  96.     End Proc
  97.  
  98.   Other than that,Dana Scripts has some changes in specification. If you
  99.   find some old scripts don't work. Please check the DanaScr.hlp.
  100.  
  101. * New features
  102.  
  103. - Bookmark listing dialog is improved. You don't have to open and close
  104.   the dialog everytime you want to see the list. It will stay resident
  105.   as the part of the frame window. And you have multiple indent levels
  106.   on marked lines.
  107. - Spell checker is integrated finally. Dana incorporates WinterTree
  108.   Software's "Sentry Spell Checker" engine.
  109. - Real word wrapping is supported. Sorry, it should have been supported
  110.   earlier.
  111. - Auto Formatting mode is further improved. It was originally called
  112.   "Word Wrap" mode, but it has changed the name because real word
  113.   wrapping is supported.
  114. - You can specify file types when you create new files.
  115. - "Stay Resident" mode is supported.
  116. - Colored block comment like /**/ in C language is now supported. You
  117.   can define your custom comment blocks.
  118. - And a lot lot more!!
  119.  
  120.  
  121.