Andreas Raab uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ar.204.mcz==================== Summary ====================
Name: System-ar.204
Author: ar
Time: 27 December 2009, 3:09:57 am
UUID: 50f11719-a8db-214f-ac21-f682f73a192c
Ancestors: System-nice.203
Let users know when update is completed.
=============== Diff against System-nice.203 ===============
Item was changed:
----- Method: Utilities class>>updateFromServer (in category 'fetching updates') -----
updateFromServer
"Update the image by loading all pending updates from the server. Also save local copies of the update files if the #updateSavesFile preference is set to true"
| config |
config := MCMcmUpdater updateFromRepositories: #(
'
http://source.squeak.org/trunk' ).
self setSystemVersionFromConfig: config.
+ self inform: 'Update completed.
+ Current update number: ', SystemVersion current highestUpdate.
"self readServerUpdatesSaveLocally: Preferences updateSavesFile updateImage: true"!