The Trunk: SMLoader-cmm.62.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: SMLoader-cmm.62.mcz

commits-2
Chris Muller uploaded a new version of SMLoader to project The Trunk:
http://source.squeak.org/trunk/SMLoader-cmm.62.mcz

==================== Summary ====================

Name: SMLoader-cmm.62
Author: cmm
Time: 21 January 2011, 2:12:06.724 pm
UUID: bf251ce7-181a-4ad7-a464-8300186bf585
Ancestors: SMLoader-cmm.61

Added accessor so that 4.2 release can set default SqueakMap filters.

=============== Diff against SMLoader-cmm.61 ===============

Item was added:
+ ----- Method: SMLoaderPlus classSide>>setDefaultFilters: (in category 'class initialization') -----
+ setDefaultFilters: anOrderedCollection
+ DefaultFilters := anOrderedCollection!

Item was changed:
  ----- Method: SMLoaderPlus>>commandSpecs (in category 'menus') -----
  commandSpecs
  ^ #(('Install' installPackageRelease 'Install the latest version from the server.' (item all))
  ('Email' emailPackageMaintainers 'Open an editor to send an email to the owner and co-maintainers of this package.' (item all))
  ('Browse cache' browseCacheDirectory 'Browse cache directory of the selection.' (item all))
  ('Copy from cache' cachePackageReleaseAndOfferToCopy 'Download selected release into cache first if needed, and then offer to copy it somewhere else.' (item))
  ('Force download into cache' downloadPackageRelease 'Force a download of the selected release into the cache.' (item))
  ('Update' loadUpdates 'Update the package index from the servers.' (all))
+ ('Upgrade All' upgradeInstalledPackagesConfirm 'Upgrade all installed packages (confirming each).' (all))
- ('Upgrade All' upgradeInstalledPackagesConfirm 'Upgrade all installed packages (conf8irming each).' (all))
  ('Upgrade all installed packages' upgradeInstalledPackagesNoConfirm '' (item))
  ('Upgrade all installed packages confirming each' upgradeInstalledPackagesConfirm '' (item))
  ('Copy list' listInPasteBuffer 'Puts the list as text into the clipboard.' (all))
  ('Save filters' saveFiltersAsDefault 'Saves the current filters as default.' (all))
  ('Help' help 'What is this?' (all)))!