home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / edit / polyed / product-info < prev    next >
Encoding:
Fred Fish's Product-Info  |  1995-10-25  |  2.3 KB  |  105 lines

  1. .name
  2. PolyEd
  3. .type
  4. Text Editing
  5. .short
  6. User-friendly, powerfull text editor
  7. .description
  8. PolyEd is one of the most user friendly text editors for the Amiga.
  9. It is kept small and easy, but has all the features.
  10.  
  11. PolyEd has all features, needed to edit texts, but no other features,
  12. like clocks, memory displays, calculators ...
  13.  
  14. As the Amiga has a great multitasking operating system, it is, in my
  15. opinion unnecessary to put all those things into one single program,
  16. but better to set up one's desired environment by some different
  17. programs (which can be further improved by arexx).
  18.  
  19. In other words, if you need a calculator, parallel to PolyEd, why not
  20. run the one from the 'utilities' drawer or one from the public domain
  21. pool.
  22.  
  23. Via the arexx-port, centering, formating and functions you can think
  24. of, can be added to PolyEd too.
  25. .version
  26. 2.29
  27. .date
  28. 1995.06.07
  29. .author
  30. Robert Brandner
  31. .restrictions
  32. Has all features, but quits after 10 minutes
  33. .requirements
  34. PolyEd runs on all Amigas with operating system OS 2.0 or higher, and
  35. also supports the new functions of OS2.1 and OS3.0 like localizing,
  36. AGA chips etc.
  37.  
  38. PolyEd can be run with 512 kB and one floppy disk drive, but of course
  39. it is better to have more memory and a hard disk.
  40. .distribution
  41. Shareware
  42. .price
  43. $20 (US); DM 30
  44. .address
  45. Schillerstr. 3
  46. A-8280 Fürstenfeld
  47. AUSTRIA / EUROPE
  48. .email
  49. e-mail:    rbr@prip.tuwien.ac.at
  50. .tested
  51.  PolyEd has been
  52. Tested sucessfully on Amiga 1200 (where it has been developed) and
  53. Amiga 4000/030 with OS3.0.
  54. .docs
  55. Read.Me
  56. Doc/arexx.doc
  57. Doc/arexx.guide
  58. Doc/deutsch.guide
  59. Doc/english.guide
  60. .described-by
  61. Richard Fish
  62. .submittal
  63. Downloaded via ftp from Aminet
  64. .aminet-dir
  65. util/edit
  66. .execute
  67. set choice `RequestChoice "PolyEd" "Please select an option" "View Readme" "View Guide" "Install Program" "Run Program" "Cancel"`
  68.  
  69. if $choice EQ "0"
  70.   quit 5
  71. endif
  72.  
  73. if $choice EQ "1"
  74.   MetaTool ReadMe TEXT
  75. endif
  76.  
  77. if $choice EQ "2"
  78.   set choice2 `RequestChoice "Language Selection" "Please select a language" "Deutsch" "English" "Svenska" "Cancel"`
  79.   if $choice2 EQ "0"
  80.     quit 0
  81.   endif
  82.  
  83.   cd Doc
  84.   if $choice2 EQ "1"
  85.     MetaTool Deutsch.guide GUIDE
  86.   endif
  87.  
  88.   if $choice2 EQ "2"
  89.     MetaTool English.guide GUIDE
  90.   endif
  91.  
  92.   if $choice2 EQ "3"
  93.     MetaTool Svenska.guide GUIDE
  94.   endif
  95. endif
  96.  
  97. if $choice EQ "3"
  98.   Installer SCRIPT Install APPNAME PolyEd
  99. endif
  100.  
  101. if $choice EQ "4"
  102.   assign locale: "" ADD
  103.   PEd
  104. endif
  105.