home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / dir / browserii / product-info < prev    next >
Text File  |  1995-10-25  |  4KB  |  128 lines

  1. .name
  2. BrowserII
  3. .type
  4. File Manager
  5. .short
  6. File/Directory maintenance utility
  7. .description
  8. It is a multi-window file-manager.  It is based on drag and drop just like
  9. workbench.  In fact, it is exactly like workbench in text mode.  It is
  10. fully asynchronous.  That is to say, you can perform several copies,
  11. delete, directory scan,...  at the same time.  You can pause or stop
  12. running processes.  Pressing [ESC] pauses all processes (accidental
  13. operations).  It is small, about 150 KBytes (not compressed of course),
  14. including the whatis.library, a powerfull library that identify file
  15. types.  Does not use much memory when idle (may use more while copying).
  16. Use pooled memory even under WB2.0 to minimize fragmentation.  It is fast.
  17. It has an intelligent iconification, directory tree, archive support,
  18. window snapshot and an intelligent buffered copy process which makes it a
  19. lot faster than standard copy commands/tools when source & destination
  20. directories are on the same device unit.  You can copy a complete 880 Kb
  21. floppy with only 1 drive in 1 pass without using RAM disk as a tmp
  22. storage.  Copies even continue while iconified.  And at last, it is
  23. powerfull and highly configurable.  It is ShareWare.  Once registered, you
  24. get a key file which is valid forever.  if you are not registered (you
  25. don't have the key file), the about requester will popup from time to
  26. time, but BrowserII stay fully functionnal.
  27. Available languages: english, french, deutsch, svenska, italiano, spanish
  28. .version
  29. 3.09
  30. .date
  31. 1995.09.17
  32. .author
  33. Pierre CARRETTE, Sylvain ROUGIER
  34. .reference
  35. AmigaLibDisk995:BrowserII/
  36. 2.41
  37. AmigaLibDisk843:BrowserII/
  38. 2.13
  39. AmigaLibDisk649:BrowserII/
  40. 2.04
  41. AmigaLibDisk540:BrowserII/
  42. 1.0
  43. .restrictions
  44. Demo version. Will popup a requester from time to time asking user
  45. to consider registering.
  46. .requirements
  47. Requires WB2.0 or higher and parm.library (included).
  48. .distribution
  49. Shareware
  50. .price
  51. $20(US) or 100FF.
  52. .address
  53. Sylvain ROUGIER
  54. 39 rue Carnot
  55. 86000 Poitiers
  56. France
  57. .exectype
  58. 68000
  59. .email
  60. rougier@ss3.univ-poitiers.fr
  61. jon.peterson@twisted.com
  62. .construction
  63. SAS/C 6.51
  64. .run
  65. BrowserII=WB,BrowserII
  66. .docs
  67. BrowserII.guide
  68. .described-by
  69. Sylvain ROUGIER
  70. .installsize
  71. 150K - 200K
  72. .aminet-dir
  73. util/dir
  74. .execute
  75. set choice `RequestChoice "Browser II" "Please select an option" "View Readme" "View Guide" "Install Program" "Run Program" "Cancel"`
  76.  
  77. if $choice EQ "0"
  78.   quit 5
  79. endif
  80.  
  81. if $choice EQ "1"
  82.   MetaTool ReadMe TEXT
  83. endif
  84.  
  85. if $choice EQ "2"
  86.   cd Help/English
  87.   MetaTool BrowserII.guide GUIDE
  88. endif
  89.  
  90. if $choice EQ "3"
  91.   set choice2 `RequestChoice "Language Selection" "Please select a language" "Deutsch" "English" "Español" "Français" "Italiano" "Svenska" "Cancel"`
  92.   if $choice2 EQ "0"
  93.     quit 0
  94.   endif
  95.  
  96.   if $choice2 EQ "1"
  97.     Installer SCRIPT Install-BrowserII APPNAME BrowserII MINUSER EXPERT DEFUSER EXPERT LANGUAGE deutsch
  98.   endif
  99.  
  100.   if $choice2 EQ "2"
  101.     Installer SCRIPT Install-BrowserII APPNAME BrowserII MINUSER EXPERT DEFUSER EXPERT LANGUAGE english
  102.   endif
  103.  
  104.   if $choice2 EQ "3"
  105.     Installer SCRIPT Install-BrowserII APPNAME BrowserII MINUSER EXPERT DEFUSER EXPERT LANGUAGE español
  106.   endif
  107.  
  108.   if $choice2 EQ "3"
  109.     Installer SCRIPT Install-BrowserII APPNAME BrowserII MINUSER EXPERT DEFUSER EXPERT LANGUAGE français
  110.   endif
  111.  
  112.   if $choice2 EQ "3"
  113.     Installer SCRIPT Install-BrowserII APPNAME BrowserII MINUSER EXPERT DEFUSER EXPERT LANGUAGE italiano
  114.   endif
  115.  
  116.   if $choice2 EQ "3"
  117.     Installer SCRIPT Install-BrowserII APPNAME BrowserII MINUSER EXPERT DEFUSER EXPERT LANGUAGE svenska
  118.   endif
  119. endif
  120.  
  121. if $choice EQ "4"
  122.   assign c: C/ ADD
  123.   assign libs: "" ADD
  124.   assign libs: libs/ ADD
  125.   assign locale: "" ADD
  126.   run BrowserII
  127. endif
  128.