home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / cli / doicon / product-info < prev    next >
Encoding:
Text File  |  1995-10-25  |  2.1 KB  |  84 lines

  1. .name
  2. DoIcon
  3. .type
  4. Shell/CLI tool
  5. .aminet-dir
  6. util/cli
  7. .short
  8. The definitive icon tool!
  9. .version
  10. 1.6
  11. .date
  12. 1995.09.08
  13. .author
  14. Lars 'SFX' Eilebrecht
  15. .requirements
  16. OS 2.0 or better
  17. .distribution
  18. Freeware
  19. .email
  20. SFX@appl2.hrz.uni-siegen.de
  21. .address
  22. Glück-Auf-Straße 23, 57223 Kreuztal, GERMANY
  23. .docs
  24. DoIconENG.guide
  25. DoIconGER.guide
  26. .description
  27. DoIcon is yet another icon tool, but it's designed for quick shell-usage.
  28. Features: 
  29.  - Displaying and manipulation of icon related values (eg. Tooltypes)
  30.  - Copying of most values into a destination icon
  31.  - Automatic tooltype updating function (only new tooltypes are copied)
  32.  - Modifying showmode and viewmode of drawer icons
  33.  - Sorting tooltypes
  34.  - Search & replace of a specified defaulttool (with pattern-support)
  35.  - Search & replace of specified tooltypes (with pattern-support)
  36.  - Search & delete of a specified tooltype (with pattern-support)
  37.  - Search & copy of a specified tooltype (with pattern-support)
  38.  - Search & update of a specified tooltype (with pattern-support)
  39.  - swapping of icon image (normal/select)
  40.  - Converting icons to 8 bit-planes
  41.    (For icons which are not displayed correctly on >8 color WBs)
  42.  - Remapping icon colors (1.x style <-> 2.x/3.x style)
  43.  - Remapping icon colors (MagicWB 8 color -> standard 4 color)
  44.  - Recursively delete all ".info"-files (the old 1.x drawer-infos)
  45.  - Converting icon-ImageData to C-Sourcecode
  46.  - Calling the Workbench information requester from Shell
  47.  - Full pattern and locale support
  48. .execute
  49. set choice `RequestChoice "DoIcon" "Please select an option" "View Readme" "View Guide" "Install Program" "Run Program" "Cancel"`
  50.  
  51. if $choice EQ "0"
  52.   quit 5
  53. endif
  54.  
  55. if $choice EQ "1"
  56.   MetaTool README TEXT
  57. endif
  58.  
  59. if $choice EQ "2"
  60.   set choice2 `RequestChoice "Language Selection" "Please select a language" "Deutsch" "English" "Cancel"`
  61.   if $choice2 EQ "0"
  62.     quit 0
  63.   endif
  64.  
  65.   if $choice2 EQ "1"
  66.     cd Docs/Deutsch
  67.     MetaTool DoIcon.guide GUIDE
  68.   endif
  69.  
  70.   if $choice2 EQ "2"
  71.     cd Docs/English
  72.     MetaTool DoIcon.guide GUIDE
  73.   endif
  74. endif
  75.  
  76. if $choice EQ "3"
  77.   Installer SCRIPT Install-DoIcon APPNAME DoIcon DEFUSER EXPERT MINUSER EXPERT
  78. endif
  79.  
  80. if $choice EQ "4"
  81.   path "" ADD
  82.   newcli
  83. endif
  84.