home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / vrac / easydr26.zip / EASYDOOR.REV < prev    next >
Text File  |  1994-10-06  |  2KB  |  82 lines

  1. Easy-Door Revision history:
  2.  
  3. Version 2.62:
  4. -------------
  5.  
  6. Bug fix:
  7.  
  8.         - MulChoice was not updating the background color when the user
  9.           was in ANSI mode.
  10.  
  11.  
  12. Version 2.61:
  13. -------------
  14.  
  15. Bug fix:
  16.  
  17.         - TimeLeft% function was returning the time elapsed in the door.
  18.           Now TimeLeft% returns the correct time has it's name implies.
  19.  
  20.         - CarrierLost% was documented but not available. Now included.
  21.  
  22.         - The SafeASC routine was not declared in EASYDOOR.BI. Now added.
  23.  
  24. What's new:
  25.  
  26.         EasyShell is a new routine that acts like the SHELL command. The only
  27.         difference is that the port is closed, the shell process is executed
  28.         and the port is reinitialized. If you shell to another program that
  29.         use the comm port, it's recommended that you use the EasyShell routine.
  30.  
  31.  
  32. Version 2.60:
  33. -------------
  34.  
  35. What's new:
  36.  
  37.         ExePath, EasyMenu, MaskInput, CC, etc.
  38.  
  39. Bug fix:
  40.  
  41.         - The time counter is now working properly at midnight. The bug
  42.           was only present in V2.50
  43.  
  44.  
  45. Version 2.52:
  46. -------------
  47.  
  48. Bug fix:
  49.  
  50.         - The EasyMenu routine was only accepting uppercase. Now it is handling
  51.           lowercase characters also.
  52.  
  53.  
  54. Version 2.51:
  55. -------------
  56.  
  57. What's new:
  58.  
  59.         Now there is a way to automatically call a specific routine
  60.         before the door terminates. Just add this to your code:
  61.  
  62.         ON UEVENT GOSUB EndHandler
  63.         UEVENT ON
  64.  
  65.         ' Door code....
  66.  
  67.         ErrHandler:
  68.         ' Perform anything you want to do before exiting the door. For
  69.         ' example you can close a file that is used in a multi-node
  70.         ' door game.
  71.         RETURN
  72.  
  73. Bug fix:
  74.  
  75.         - The EasyMenu routine was only accepting uppercase. Now it is handling
  76.           lowercase characters also.
  77.  
  78.         - When chatting with a user for a longer period of time than the
  79.           inactivity timeout, the user was disconnected when the chat
  80.           was terminated.
  81.  
  82.