Alexander Lazarević uploaded a new version of SystemReporter to project The Trunk:
http://source.squeak.org/trunk/SystemReporter-laza.10.mcz==================== Summary ====================
Name: SystemReporter-laza.10
Author: laza
Time: 30 January 2011, 5:07:42.279 am
UUID: ab9a338f-f367-d047-b266-9cb9bd3d841a
Ancestors: SystemReporter-laza.9
Be a bit more consistent and metion the filepath always first
=============== Diff against SystemReporter-laza.9 ===============
Item was changed:
----- Method: SystemReporter>>reportImage: (in category 'reporting') -----
reportImage: aStream
self header: 'Image' on: aStream.
aStream
+ nextPutAll: Smalltalk image imageName; cr;
nextPutAll: SystemVersion current version; cr;
nextPutAll: Smalltalk image lastUpdateString; cr;
+ nextPutAll: Smalltalk image currentChangeSetString; cr
+ !
- nextPutAll: Smalltalk image currentChangeSetString; cr;
- nextPutAll: Smalltalk image imageName; cr!
Item was changed:
----- Method: SystemReporter>>reportVM: (in category 'reporting') -----
reportVM: aStream
self header: 'Virtual Machine' on: aStream.
aStream
+ nextPutAll: (Smalltalk vm vmFileName); cr;
+ nextPutAll: (Smalltalk vm vmVersion); cr.
- nextPutAll: (Smalltalk vm vmVersion); cr;
- nextPutAll: (Smalltalk vm vmFileName); cr.
Smalltalk vm buildDate
ifNotNilDo: [:string | aStream nextPutAll: string; cr].
[Smalltalk vm platformSourceVersion
ifNotNilDo: [:v | aStream nextPutAll: 'platform sources revision ', v; cr]]
on: Warning do: ["unsupported primitive"].
[Smalltalk vm interpreterSourceVersion
ifNotNilDo: [:v | aStream nextPutAll: 'VMMaker versionString ', v; cr]]
on: Warning do: ["unsupported primitive"]!