[Pkg] Monticello Public: Monticello.impl-mtf.574.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Fri Sep 26 18:36:02 UTC 2008


A new version of Monticello.impl was added to project Monticello Public:
http://www.squeaksource.com/mc/Monticello.impl-mtf.574.mcz

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

Name: Monticello.impl-mtf.574
Author: mtf
Time: 26 September 2008, 11:35:59 am
UUID: 74dc35ff-1ed8-4b73-94a8-de0b3a6e7d7d
Ancestors: Monticello.impl-cds.573

Don't popup the version summary dialog when saving a version

=============== Diff against Monticello.impl-cds.573 ===============

Item was changed:
  ----- Method: MCWorkingCopyBrowser>>saveVersion (in category 'actions') -----
  saveVersion
  
  	| repo |
  	
  	self canSave ifFalse: [^self].
  	self checkForNewerVersions ifFalse: [^self].
  	repo := self repository.
  	workingCopy newVersion ifNotNilDo: [:v |
  		'Saving package' displayProgressAt: Sensor cursorPoint
  		from: 0 to:100
  		during:[:bar|
- 			bar value:2.
- 			(MCVersionInspector new version: v) show.
  			bar value: 10.
  			repo storeVersion: v.
  			bar value: 80.
  			
  			MCCacheRepository default cacheAllFileNamesDuring: 
  			[ repo cacheAllFileNamesDuring: [
  				v allAvailableDependenciesDo:
  					[:dep |
  					(repo includesVersionNamed: dep info name)
  						ifFalse: [repo storeVersion: dep]].
  			]].
  			bar value: 100.
  		]
  	]
  !



More information about the Packages mailing list