A new version of Collections was added to project The Inbox:
http://source.squeak.org/inbox/Collections-ct.869.mcz
==================== Summary ====================
Name: Collections-ct.869
Author: ct
Time: 30 December 2019, 2:59:11.626602 pm
UUID: aa54af41-5204-964f-a360-5b65bf75ac5a
Ancestors: Collections-nice.868
Add clear menu item for Transcript
=============== Diff against Collections-nice.868 ===============
Item was added:
+ ----- Method: TranscriptStream>>addModelItemsToWindowMenu: (in category 'model protocol') -----
+ addModelItemsToWindowMenu: aMenu
+
+ super addModelItemsToWindowMenu: aMenu.
+ aMenu
+ add: 'Clear'
+ target: self
+ action: #clear.!