[squeak-dev] The Trunk: Monticello-mt.731.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Nov 4 09:45:46 UTC 2020


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]!



More information about the Squeak-dev mailing list