The Trunk: System-ar.313.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: System-ar.313.mcz

commits-2
Andreas Raab uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ar.313.mcz

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

Name: System-ar.313
Author: ar
Time: 9 April 2010, 8:44:43.365 pm
UUID: 573096ca-fe70-b346-8ab3-e07cd49709d6
Ancestors: System-laza.312

Don't hard-code update url in Utilities updateFromServer.

=============== Diff against System-laza.312 ===============

Item was changed:
  ----- Method: Utilities class>>updateFromServer (in category 'fetching updates') -----
  updateFromServer
  "Update the image by loading all pending updates from the server."
  | config |
  "Flush all caches. If a previous download failed this is often helpful"
  MCFileBasedRepository flushAllCaches.
+ config := MCMcmUpdater updateFromDefaultRepository.
- config := MCMcmUpdater updateFromRepositories: #(
- 'http://source.squeak.org/trunk'
- ).
  self setSystemVersionFromConfig: config.
  self inform: 'Update completed.
  Current update number: ', SystemVersion current highestUpdate.!