Levente Uzonyi uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-ul.661.mcz==================== Summary ====================
Name: Tools-ul.661
Author: ul
Time: 9 January 2016, 10:18:44.095613 pm
UUID: bdac8e9b-8841-40ce-9d6a-1be083bcaca7
Ancestors: Tools-eem.660
Added shout support to VersionsBrowser.
=============== Diff against Tools-eem.660 ===============
Item was added:
+ ----- Method: ClassCommentVersionsBrowser>>aboutToStyle: (in category 'contents') -----
+ aboutToStyle: aStyler
+
+ ^false!
Item was added:
+ ----- Method: VersionsBrowser>>aboutToStyle: (in category 'contents') -----
+ aboutToStyle: aStyler
+
+ "Style in source view, or when there's nothing to diff with."
+ (self isModeStyleable or: [ listIndex = list size ]) ifFalse: [ ^false ].
+ aStyler
+ classOrMetaClass: classOfMethod;
+ parseAMethod: true.
+ ^true
+ !