[squeak-dev] The Inbox: Monticello-cbc.399.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Aug 25 17:34:32 UTC 2010


A new version of Monticello was added to project The Inbox:
http://source.squeak.org/inbox/Monticello-cbc.399.mcz

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

Name: Monticello-cbc.399
Author: cbc
Time: 25 August 2010, 10:34:20.93 am
UUID: 93053817-da1d-5b4c-8fde-e689e7270cab
Ancestors: Monticello-cbc.398

Selectors for removing/adding packages to update mechanism names changed.  Update MonticelloConfigurations before loading this package version.

=============== Diff against Monticello-cbc.398 ===============

Item was changed:
  ----- Method: MCWorkingCopy>>merged: (in category 'operations') -----
  merged: aVersion
  	ancestry addAncestor: aVersion info.
+ 	MCMcmUpdater enableUpdatesOfPackage: self package name.
- 	MCMcmUpdater startLoading: self package name.
  	self changed!

Item was changed:
  ----- Method: MCPackage>>unload (in category 'as yet unclassified') -----
  unload
  	"Flag this package to not automatically reload when updating from Trunk.
  		To begin receiving trunk updates on this package again, manually reload package."
+ 	MCMcmUpdater disableUpdatesOfPackage: self name.
- 	MCMcmUpdater skipLoading: self name.
  	^ self workingCopy unload!

Item was changed:
  ----- Method: MCWorkingCopy>>loaded: (in category 'operations') -----
  loaded: aVersion
  	ancestry := MCWorkingAncestry new addAncestor: aVersion info.
  	requiredPackages := OrderedCollection withAll: (aVersion dependencies collect: [:ea | ea package]).
  	self modified: false.
+ 	MCMcmUpdater enableUpdatesOfPackage: self package name.
- 	MCMcmUpdater startLoading: self package name.
  	self changed!




More information about the Squeak-dev mailing list