home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #4 / Amiga Plus CD - 2000 - No. 4.iso / Tools / WB / Scalos / Modules_CA / ScalosModules_CA.txt < prev   
Encoding:
Text File  |  2000-05-27  |  5.6 KB  |  218 lines

  1. These are ClassAct-based modules for Scalos.  Just copy them where you 
  2. keep the Scalos modules over the regular ones (make sure to rename them to
  3. the right names, i.e. remove the "_CA" suffix).
  4.  
  5.  
  6.  
  7. General Notes:
  8. --------------
  9. - Requires the ClassAct BOOPSI package, available from 
  10.   ftp://ftp.warped.com/pub/amiga/classact/
  11.  
  12. - They use the same catalogs as the MUI modules.
  13.  
  14. - information.module requires newicon.library (you don't have to be using 
  15.   NewIcons itself, it only needs it for some of its icon handling 
  16.   functions).
  17.  
  18.  
  19.  
  20. Empty_Trashcan.module 1.0
  21. -------------------------
  22. New module for DR 5.2 and up, essentially a variant of Delete.module 
  23. that won't delete the trashcan itself.
  24.  
  25. CHANGES:
  26.  
  27. 1.0:
  28.      - Moved catalogs to catalogs/Scalos/
  29.  
  30.  
  31. Execute_Command.module 1.1
  32. --------------------------
  33. CHANGES:
  34.  
  35. 0.3:
  36.      - Made the GUI a bit larger.
  37.  
  38. 0.4:
  39.      - DeleteVar() before saving the last cmd - seems like AmigaDOS
  40.        won't reset the lenght on a SetVar() but will write it over
  41.        the old one, so if the new one is shorter, you get remains of 
  42.        the old one appended.
  43.  
  44.      - Turned in an AppWindow.
  45.  
  46.      - Some minor code optimizations
  47.  
  48. 0.5:
  49.      - Localized
  50.  
  51.      - Removed the DeleteVar() kludge - it was a (now fixed) bug in
  52.        HappyEnv < 1.0f
  53.  
  54.  
  55. 0.6: - Increased default stack to 8192.
  56.  
  57.      - Window opens centered on mouse pointer.
  58.  
  59.  
  60. 1.0: - Implemented support for DefIcons, for those running it.  Scalos 
  61.        still won't display the appropriate pseudo-icon, but when 
  62.        double-clicking on it it will at least fill the Execute_Command's
  63.        string gadget with the appropriate default tool.  Better than 
  64.        nothing, until Scalos gets proper filetype recognition.
  65.  
  66.      - Some changes to the cleanup code.
  67.  
  68.      - Moved catalogs to catalogs/Scalos/
  69.  
  70. 1.1: - Changed DefIcon support for filetype.plugin support.
  71.  
  72. 1.2: - Fixed some potential memory trashing
  73.  
  74.  
  75. Delete.module 1.0
  76. -----------------
  77. - Has a nifty progress bar reflecting the TOTAL of files/dirs to delete,
  78.   not just the parent drawers and files selected
  79.  
  80. - You can abort at any time by clicking on "Abort".
  81.  
  82. - On an error will let you skip the file, or abort the operation
  83.  
  84. - If a file is protected against deletion, it will ask you if you want to
  85.   delete it anyway, or skip it.
  86.  
  87. - Uses memory pools to reduce memory fragmentation (make sure you run
  88.   SetPatch V39.xx or better to fix a bug in the OS with memory pools)
  89.  
  90. - CONS: It's a bit slower than the MUI version, since it must previously
  91.         scan the selected dirs to calculate the number of files to delete,
  92.         and it has a progress bar to update.
  93.  
  94.         It's also limited to 127 levels of nested dirs.  That should be
  95.         enough, but if the limit is ever reached, it will simply stop 
  96.         deleting there.
  97.  
  98.  
  99.  
  100. CHANGES:
  101.  
  102. 0.2: - Display errors in titlebar
  103.  
  104.      - Localized
  105.  
  106.  
  107. 0.3: - Able to delete orphan icons (icons without files) selected by the 
  108.        user.
  109.  
  110. 1.0: - Moved catalogs to catalogs/Scalos/
  111.  
  112.  
  113. Newdrawer.module 1.1
  114. --------------------
  115. - If you don't want an icon for the created drawer, just uncheck the
  116.   "Create Icon" checkbox.
  117.  
  118.  
  119. CHANGES:
  120.  
  121. 0.2: - Will also create sub-directories
  122.  
  123.      - Added stack checking, and increased stack to allow upto 20-30
  124.        levels of subdirectories to be created.
  125.  
  126.      - Localized
  127.      
  128.      - No longer process underscores in paths
  129.      
  130.      - Input buffer increased to 255 chars.
  131.  
  132.  
  133. 0.3: - Window opens centered on mouse pointer.
  134.  
  135.      - Rewrote drawer creation, no longer need large stack for recursion
  136.  
  137.      - If the user wants to create dir1/dir2/dir3 and dir1 already
  138.        exists, it will still create dir2 and dir3 in it (as long dir 1
  139.        is a drawer, or else it will exit with "object is of incorrect 
  140.        type").
  141.  
  142. 1.0: - Moved catalogs to catalogs/Scalos/
  143.  
  144. 1.1: - Some code cleanup
  145.  
  146.  
  147. Rename.module 1.2
  148. -----------------
  149. - If more than one file/drawer is selected, then a "Skip" button will be
  150.   added, allowing you to skip to the next object.
  151.  
  152.  
  153. CHANGES
  154.  
  155. 0.2: - Localized
  156.  
  157.      - Use two different pens for the label text
  158.      
  159.      - No longer process underscores in filenames
  160.  
  161.  
  162. 0.3: - Window opens centered on mouse pointer.
  163.  
  164.      - Now able to rename orphan icons
  165.  
  166.  
  167. 1.0: - Moved catalogs to catalogs/Scalos/
  168.  
  169. 1.1: - "Skip" button wouldn't be freed at window disposal if it was hidden
  170.  
  171. 1.2: - Some code cleanup
  172.  
  173.  
  174. information.module 1.3
  175. ----------------------
  176. Replacement for the Workbench "Information" requester, showing information
  177. for a given file.
  178.  
  179.  
  180. To edit a tooltype, double-click on it.  A cursor will appear, allowing 
  181. you to edit this tooltype.  Press return when done (just like with any 
  182. regular string gadget)
  183.  
  184. The "Comment" button will comment/uncomment the currently selected tooltype.
  185.  
  186. The "Sort" only works with listbrowser.gadget V42 or higher (yet to be
  187. released).
  188.  
  189. In the right list, you will see the usual Read, Write, Script, etc... flags.
  190. Just click on their checkboxes to toggle them
  191.  
  192. You will notice two new flags: No Drag and No Name.  These are two special 
  193. Scalos options usualy enabled via tooltypes.  You can now enable or 
  194. disable them via these two checkboxes.
  195.  
  196. You can supply your own list of default tools for the popup gadget next 
  197. to the Default Tool string gadget.  Just create a file containing one 
  198. default tool per line, and save it to 's:wbinfotools'.
  199.  
  200. Everything else should be fairly obvious.
  201.  
  202.  
  203. CHANGES
  204.  
  205. 1.0: - Disk state was using the wrong catalog strings.
  206.      - Implemented Sort (With LB V42)
  207.      - Included catalog file
  208.  
  209. 1.1: - Forgot to note it down...
  210.  
  211. 1.2: - Would lose any existing default tool at save time if you didn't
  212.        changed it.
  213.  
  214. 1.3: - Some code cleanup
  215.  
  216. Eric Sauvageau  (merlin@thule.no)
  217. ---------------------------------
  218.