Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-mt.1053.mcz==================== Summary ====================
Name: Tools-mt.1053
Author: mt
Time: 30 April 2021, 10:06:23.164936 am
UUID: 5f61f12c-2895-c046-a679-a626a257a6d7
Ancestors: Tools-mt.1052
Adds our common interface for tools to ChangeSetBrowser.
=============== Diff against Tools-mt.1052 ===============
Item was added:
+ ----- Method: ChangeSetBrowser class>>on: (in category 'instance creation') -----
+ on: aChangeSet
+
+ ^ self new
+ myChangeSet: aChangeSet;
+ yourself!
Item was added:
+ ----- Method: ChangeSetBrowser class>>openOn: (in category 'instance creation') -----
+ openOn: aChangeSet
+
+ ^ ToolBuilder open: (self on: aChangeSet)!
Item was added:
+ ----- Method: ChangeSetBrowser class>>openOnCurrent (in category 'instance creation') -----
+ openOnCurrent
+
+ ^ self openOn: ChangeSet current!