[squeak-dev] The Trunk: System-fbs.625.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Nov 26 10:01:52 UTC 2013


Frank Shearar uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-fbs.625.mcz

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

Name: System-fbs.625
Author: fbs
Time: 26 November 2013, 10:00:37.088 am
UUID: 38687375-e6f6-594f-9a63-75c5c0a67e3f
Ancestors: System-fbs.624

Revert the deprecation to try unbreak updates.

=============== Diff against System-fbs.624 ===============

Item was added:
+ ----- Method: Utilities class>>setSystemVersion: (in category 'fetching updates') -----
+ setSystemVersion: aConfig
+ 	self deprecated: 'Use MCConfiguration >> #setSystemVersion'.
+ 	aConfig setSystemVersion.!

Item was changed:
+ ----- Method: Utilities class>>updateFromServer (in category 'fetching updates') -----
- ----- Method: Utilities class>>updateFromServer (in category 'as yet unclassified') -----
  updateFromServer
  	"Update the image by loading all pending updates from the server."
+ 	self deprecated: 'Use MCMcmUpdater updateFromServer'.
+ 	MCMcmUpdater updateFromServer.!
- 	| config |
- 	"Flush all caches. If a previous download failed this is often helpful"
- 	MCFileBasedRepository flushAllCaches.
- 	config := MCMcmUpdater updateFromDefaultRepository.
- 	config ifNil: [^self inform: 'Unable to retrieve updates from remote repository.' translated].
- 	config setSystemVersion.
- 	self inform: ('Update completed.
- Current update number: ' translated, SystemVersion current highestUpdate).!



More information about the Squeak-dev mailing list