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!