home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / dbase / scr22.zip / SCR.DOC < prev    next >
Text File  |  1993-06-06  |  3KB  |  81 lines

  1.                             ┌──────────────────────┐
  2.                             │       SCR v2.2       │
  3.                             │ (c) 1993 by Hank Lee │
  4.                             └──────────────────────┘
  5.  
  6.  
  7. WHAT'S NEW 2.2
  8. --------------
  9.  
  10.      This is a maintenance release.  I managed to improve on script size by
  11. setting the output line to 70 - 72 characters each.  That cuts down on the
  12. number of lines the script has.
  13.  
  14.  
  15. WHAT'S NEW 2.1
  16. --------------
  17.  
  18.      Characters which can be represented with a single character (e.g. 09h)
  19. are written with a single character (09 becomes 9).
  20.  
  21.  
  22. WHAT'S NEW 2.0
  23. --------------
  24.  
  25.      SCR has been re-written to implement a new idea that drastically shrinks
  26. the size of the DEBUG script generated.  I have to admit that this is not an
  27. original idea, but it is very efficient.  The idea is to use printable ASCII
  28. characters whenever possible.  Instead of writing hex representations of
  29. characters such as ABCDEFG, this new version writes "ABCDEFG" instead.  Yes,
  30. it's a valid way to enter DEBUG script.
  31.  
  32.      I've also made a change to the output file.  The script filename is no
  33. longer locked at SCRIPT.  The script generated will have the same file name
  34. as the source file, but with an extension of .SCR.
  35.  
  36.  
  37. WHAT'S NEW 1.2
  38. --------------
  39.  
  40.      With SCR v1.1, one could go ahead and convert a file of any size into a
  41. DEBUG script.  However, any file larger than 65279 bytes would result in a
  42. script file with newer data overwrapping the 64K (a segment) limit.  The newer
  43. data would then proceed to overwrite the previous data.  This would result in
  44. a corrupted file, once recreated by DEBUG.
  45.  
  46.      This fix release puts a limit on the file size.  Instead of converting a
  47. file larger than 65279 bytes, SCR will present you with an error message and
  48. exit to DOS.
  49.  
  50.  
  51. WHAT IS IT?
  52. -----------
  53.  
  54.      SCR is a handy utility that can convert any file into a DEBUG script.
  55. The script can then be run thru DEBUG to reassemble the original file.  You
  56. might ask your self, why would I need to do that?  My files are fine the
  57. way they are.  Well, I can give you one specific example.
  58.  
  59.      Some networks allow you to send a file along with your message.  Some
  60. don't.  Or maybe you don't know how.  That's were SCR comes into play.  SCR
  61. can convert a binary file (any file, for that matter) into a DEBUG script,
  62. which is ASCII text.  You can then send the text over as a message and the
  63. receiver can then reassemble your program with DEBUG.
  64.  
  65.      Security of data was not an issue when I wrote this small utility.  I
  66. wrote it because I needed to send a file over a network, as described above.
  67. Then I realized, that others might benefit from it too.
  68.  
  69.      By using this program, you agree that I, Hank Lee, are in no way
  70. responsible for the possible damages, lost of security, or lost of profit,
  71. etc.  I am also not responsible for the possible misuse of SCR.
  72.  
  73.      SCR is strictly FreeWare.  You are free to distribute it any way you see
  74. fit, _WITHOUT_ charging any money.  Vendors can charge for shipping and
  75. handling and the cost of the disk.
  76.  
  77.      SCR is simple to use.  Run it without any switches or parameters to see
  78. the Help Screen.  The Help Screen is self-explanatory.  Remeber, .EXE files
  79. cannot be written when you use DEBUG.  So rename your .EXE file to something
  80. else before using SCR.
  81.