The Trunk: Monticello-mt.734.mcz

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

The Trunk: Monticello-mt.734.mcz

commits-2
Nicolas Cellier uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-mt.734.mcz

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

Name: Monticello-mt.734
Author: mt
Time: 5 January 2021, 1:09:08.981865 pm
UUID: 93fdf435-68a1-4ace-a7a9-d9d86fb3118f
Ancestors: Monticello-mt.733

Alternative fix for the problem addressed in Monticello-nice.734

=============== Diff against Monticello-mt.733 ===============

Item was added:
+ ----- Method: MCAncestry>>isWorkingAncestry (in category 'testing') -----
+ isWorkingAncestry
+ ^ false!

Item was added:
+ ----- Method: MCVersionHistoryBrowser>>package (in category 'accessing') -----
+ package
+ ^ package!

Item was changed:
  ----- Method: MCVersionHistoryBrowser>>selectedSnapshot (in category 'accessing') -----
  selectedSnapshot
+ ^ self selectedInfo isWorkingAncestry
+ ifTrue: [self package snapshot]
+ ifFalse: [self snapshotForInfo: self selectedInfo]!
- ^ self snapshotForInfo: self selectedInfo!

Item was added:
+ ----- Method: MCWorkingAncestry>>isWorkingAncestry (in category 'testing') -----
+ isWorkingAncestry
+ ^ true!