The Trunk: UpdateStream-mt.7.mcz

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

The Trunk: UpdateStream-mt.7.mcz

commits-2
Marcel Taeumel uploaded a new version of UpdateStream to project The Trunk:
http://source.squeak.org/trunk/UpdateStream-mt.7.mcz

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

Name: UpdateStream-mt.7
Author: mt
Time: 14 August 2016, 10:16:45.023039 am
UUID: 3f14c2e4-b7ce-044e-8a43-43ecede5be09
Ancestors: UpdateStream-mt.6

Fix redundant World installing. Make image start-up faster.

=============== Diff against UpdateStream-mt.6 ===============

Item was changed:
  ----- Method: AutoStart class>>checkForUpdates (in category '*UpdateStream') -----
  checkForUpdates
  | availableUpdate updateServer |
- World ifNotNil:
- [ World install.
- ActiveHand position: 100 @ 100 ].
  HTTPClient isRunningInBrowser ifFalse: [ ^ self processUpdates ].
  availableUpdate := (Smalltalk namedArguments
  at: 'UPDATE'
  ifAbsent: [ '' ]) asInteger.
  availableUpdate ifNil: [ ^ false ].
  updateServer := Smalltalk namedArguments
  at: 'UPDATESERVER'
  ifAbsent:
  [ Smalltalk namedArguments
  at: 'UPDATE_SERVER'
  ifAbsent: [ 'Squeakland' ] ].
  UpdateStreamDownloader default setUpdateServer: updateServer.
  ^ SystemVersion checkAndApplyUpdates: availableUpdate!