The Inbox: Tools-ct.903.mcz

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

The Inbox: Tools-ct.903.mcz

commits-2
A new version of Tools was added to project The Inbox:
http://source.squeak.org/inbox/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!