The Trunk: Monticello-mt.731.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.731.mcz

commits-2
Marcel Taeumel uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-mt.731.mcz

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

Name: Monticello-mt.731
Author: mt
Time: 4 November 2020, 10:45:45.08162 am
UUID: cc112dfa-3c81-8844-b323-1e07d2f73e32
Ancestors: Monticello-mt.730

Show a warning when trying to copy an inbox version to trunk or treated as a compromise until a proper move operation can be implemented in the image.

=============== Diff against Monticello-mt.730 ===============

Item was changed:
  ----- Method: MCVersionInspector>>save (in category 'accessing') -----
  save
  self pickRepository ifNotNil:
+ [:repository |
+ (self repository = MCRepository inbox and:
+ [repository = MCRepository trunk or: [repository = MCRepository treated]]) ifTrue:
+ [self notify: 'Versions from the inbox should only be moved, not copied. Instead, use the web interface via source.squeak.org to manage inbox constributions.\\Do you want to proceed anyway?' translated withCRs].
+ repository storeVersion: self version]!
- [:ea |
- ea storeVersion: self version]!