A new version of System was added to project The Inbox:
http://source.squeak.org/inbox/System-cbr.356.mcz==================== Summary ====================
Name: System-cbr.356
Author: cbr
Time: 31 July 2010, 9:34:13.128 pm
UUID: 30a3d62d-68f5-4f58-8a02-d5190ea0c2c8
Ancestors: System-cbr.355
Method to find author's changes since last release (or last condenseSources, anyway.) Useful for rescuing unfinished experiments from trunk images, as it filters the noise of trunk changes.
=============== Diff against System-eem.353 ===============
Item was added:
+ ----- Method: SystemNavigation>>browseMyChanges (in category 'browse') -----
+ browseMyChanges
+ "Browse only the changes (in the changes file) by the current author."
+ self browseAllSelect: [ :method |
+ method fileIndex > 1 "only look at changes file"
+ and: [ method timeStamp beginsWith: Utilities authorInitials ]]!