Levente Uzonyi uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-ul.207.mcz==================== Summary ====================
Name: Tools-ul.207
Author: ul
Time: 10 March 2010, 3:48:14.601 am
UUID: 432adf72-f7ef-774e-8c85-e95e31af284a
Ancestors: Tools-cmm.206
- DependencyBrowser gets it's package list from PackageInfo instead of MCWorkingCopy. This way the Tools package doesn't depend on Monticello. But the list of packages are different, that should be fixed.
=============== Diff against Tools-cmm.206 ===============
Item was changed:
----- Method: DependencyBrowser>>packageList (in category 'package list') -----
packageList
"The base list of packages in the system"
+ ^packageList ifNil:[packageList := (PackageInfo allPackages collect: [ :each | each packageName]) sort]!
- ^packageList ifNil:[packageList := (MCWorkingCopy allManagers collect:[:each| each packageName]) sort]!