The Inbox: Monticello-dtl.727.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: Monticello-dtl.727.mcz

commits-2
A new version of Monticello was added to project The Inbox:
http://source.squeak.org/inbox/Monticello-dtl.727.mcz

==================== Summary ====================

Name: Monticello-dtl.727
Author: dtl
Time: 7 September 2020, 7:48:09.973319 pm
UUID: 88de6167-2724-45e3-ae7a-c0e692903f98
Ancestors: Monticello-cmm.726

For MC commit notices, truncate time stamps to whole seconds when printing summaryHeader

=============== Diff against Monticello-cmm.726 ===============

Item was changed:
  ----- Method: MCVersionInfo>>summaryHeader (in category 'accessing') -----
  summaryHeader
  ^ String streamContents:
  [:s |
  s
  nextPutAll: 'Name: '; nextPutAll: self name; cr.
  date ifNotNil:
  [s
  nextPutAll: 'Author: '; nextPutAll: author; cr;
+ nextPutAll: 'Time: '; nextPutAll:  date asString, ', ';
+ nextPutAll: (time ifNotNil: [ :tm | Time fromSeconds: tm asSeconds asInteger]) asString; cr].
- nextPutAll: 'Time: '; nextPutAll:  date asString, ', ', time asString; cr].
  id ifNotNil:
  [s nextPutAll: 'UUID: '; nextPutAll: id asString; cr].
  s
  nextPutAll: 'Ancestors: '; nextPutAll: self ancestorString.
  self stepChildren isEmpty ifFalse:
  [s cr; nextPutAll: 'Backported From: '; nextPutAll: self stepChildrenString].
  ]!