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

commits at source.squeak.org commits at source.squeak.org
Tue Nov 10 08:21:36 UTC 2020


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

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

Name: Monticello-mt.733
Author: mt
Time: 10 November 2020, 9:21:35.608186 am
UUID: 6a90767e-6b8d-dd45-bb68-cb4ea3bd2a24
Ancestors: Monticello-mt.732

Fixes recent regression of the COPY button in the version inspector.

=============== Diff against Monticello-mt.732 ===============

Item was added:
+ ----- Method: MCRepositoryInspector>>save (in category 'actions') -----
+ 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]!

Item was changed:
  ----- Method: MCVersionInspector>>save (in category 'accessing') -----
  save
  	self pickRepository ifNotNil:
+ 		[:ea |
+ 		ea storeVersion: self version]!
- 		[: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]!



More information about the Squeak-dev mailing list