I&#39;ve copied that version to the squeak source repo as well.<br><br>Thanks Dave.<br><br>Alex<br><br><div class="gmail_quote">2011/1/23 David T. Lewis <span dir="ltr">&lt;<a href="mailto:lewis@mail.msen.com">lewis@mail.msen.com</a>&gt;</span><br>

<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">This goes in the inbox because we are in 4.2 feature freeze.<br>
<br>
Dave<br>
<div><div></div><div class="h5"><br>
On Sun, Jan 23, 2011 at 04:13:47PM +0000, <a href="mailto:commits@source.squeak.org">commits@source.squeak.org</a> wrote:<br>
&gt; David T. Lewis uploaded a new version of SystemReporter to project The Inbox:<br>
&gt; <a href="http://source.squeak.org/inbox/SystemReporter-dtl.3.mcz" target="_blank">http://source.squeak.org/inbox/SystemReporter-dtl.3.mcz</a><br>
&gt;<br>
&gt; ==================== Summary ====================<br>
&gt;<br>
&gt; Name: SystemReporter-dtl.3<br>
&gt; Author: dtl<br>
&gt; Time: 23 January 2011, 11:13:46.093 am<br>
&gt; UUID: f59d0651-2dee-4b52-a4d2-9474d5462973<br>
&gt; Ancestors: SystemReporter-laza.2<br>
&gt;<br>
&gt; If the VM reports source revisions via #primitivePlatformSourceVersion and #primitiveInterpreterSourceVersion, include this information in SystemReporter &quot;VM General&quot;.<br>
&gt;<br>
&gt; Example output:<br>
&gt;<br>
&gt;   Virtual Machine<br>
&gt;   ---------------<br>
&gt;   Squeak4.1 of 17 April 2010 [latest update: #9957]<br>
&gt;   /usr/local/lib/squeak/4.4.7-2356/squeakvm<br>
&gt;   platform sources revision 2356<br>
&gt;   VMMaker versionString 4.4.7<br>
&gt;<br>
&gt; =============== Diff against SystemReporter-laza.2 ===============<br>
&gt;<br>
&gt; Item was changed:<br>
&gt;   ----- Method: SystemReporter&gt;&gt;reportVM: (in category &#39;reporting&#39;) -----<br>
&gt;   reportVM: aStream<br>
&gt;       self header: &#39;Virtual Machine&#39; on: aStream.<br>
&gt;       aStream<br>
&gt;               nextPutAll: (SmalltalkImage current getSystemAttribute: 1004); cr;<br>
&gt; +             nextPutAll: (SmalltalkImage current getSystemAttribute: 0); cr.<br>
&gt; +     [Smalltalk vm platformSourceVersion<br>
&gt; +             ifNotNilDo: [:v | aStream nextPutAll: &#39;platform sources revision &#39;, v; cr]]<br>
&gt; +                     on: Warning do: [&quot;unsupported primitive&quot;].<br>
&gt; +     [Smalltalk vm interpreterSourceVersion<br>
&gt; +             ifNotNilDo: [:v | aStream nextPutAll: &#39;VMMaker versionString &#39;, v; cr]]<br>
&gt; +                     on: Warning do: [&quot;unsupported primitive&quot;]!<br>
&gt; -             nextPutAll: (SmalltalkImage current getSystemAttribute: 0); cr!<br>
&gt;<br>
<br>
</div></div></blockquote></div><br>