David T. Lewis uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-ct.903.mcz==================== Summary ====================
Name: Tools-ct.903
Author: ct
Time: 3 October 2019, 12:41:01.147083 am
UUID: 378bf57b-5ca0-6b4e-85ef-1a0857c0e6f7
Ancestors: Tools-ul.899
Adds option to browse package
=============== Diff against Tools-ul.899 ===============
Item was added:
+ ----- Method: Browser class>>fullOnCategory: (in category 'instance creation') -----
+ fullOnCategory: aCategory
+ "Open a new full browser set to the system category."
+
+ ^ self new
+ selectSystemCategory: aCategory asSymbol;
+ buildAndOpenFullBrowser!
Item was added:
+ ----- Method: PackageInfo>>browse (in category '*Tools-Browsing') -----
+ browse
+
+ ^ StandardToolSet browseSystemCategory: self packageName!
Item was added:
+ ----- Method: StandardToolSet class>>browseSystemCategory: (in category 'browsing') -----
+ browseSystemCategory: aCategory
+
+ ^ SystemBrowser default
+ fullOnCategory: aCategory!