Nicolas Cellier uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-tcj.834.mcz==================== Summary ====================
Name: Tools-tcj.834
Author: tcj
Time: 24 November 2018, 1:33:48.408468 am
UUID: 1cf61cee-2719-46d5-be5c-bc5b25b43a19
Ancestors: Tools-eem.833
Add 'alphabetize' to Package Pane Browser's class category menu, as is found on standard Browser.
=============== Diff against Tools-eem.833 ===============
Item was changed:
----- Method: PackagePaneBrowser>>mainPackageMenu: (in category 'package list') -----
mainPackageMenu: aMenu
"Answer a Menu of operations on class packages to be
displayed when the operate menu button is pressed."
<packageListMenu>
^aMenu addList: #(
('find class...' findClass)
('recent classes...' recent)
-
('reorganize' editSystemCategories)
+ ('alphabetize' alphabetizeSystemCategories)
+ -
('update' updatePackages));
yourself.
!