[Pkg] Installer: Installer-Core-dc.225.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Wed Oct 1 06:12:49 UTC 2008


Damien Cassou uploaded a new version of Installer-Core to project Installer:
http://www.squeaksource.com/Installer/Installer-Core-dc.225.mcz

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

Name: Installer-Core-dc.225
Author: dc
Time: 28 September 2008, 6:15:44 pm
UUID: cc0ac09b-b804-4b43-8130-1e2ddebbf623
Ancestors: Installer-Core-kph.224

- Only update the LastUniUpdate variable after updating Universe. The previous behavior could prevent the update if #uniUpdate is called often enough.

=============== Diff against Installer-Core-kph.224 ===============

Item was changed:
  ----- Method: Installer>>uniUpdate (in category 'universes') -----
  uniUpdate
+ 	(LastUniUpdate isNil or:[ (DateAndTime now - LastUniUpdate) > 600 seconds  ])
+ 		ifTrue: [universe requestPackageList.
+ 				LastUniUpdate := DateAndTime now]!
- 
-  
- 	(LastUniUpdate isNil or:[ (DateAndTime now - LastUniUpdate) > 600 seconds  ]) ifTrue: [ universe requestPackageList ].
- 
- 	LastUniUpdate := DateAndTime now.!

Item was changed:
  Object subclass: #Installer
  	instanceVariableNames: 'sm wsm mc ma url root command markers project package bug desc answers packages messagesToSuppress pageDataStream date universe afile sake'
+ 	classVariableNames: 'WebSearchPath SkipLoadingTests Fixes ValidationBlock Entities InstallerBindings Sake Remembered LastUniUpdate IsSetToTrapErrors'
- 	classVariableNames: 'WebSearchPath SkipLoadingTests Fixes Sake Entities ValidationBlock InstallerBindings Remembered LastUniUpdate IsSetToTrapErrors'
  	poolDictionaries: ''
  	category: 'Installer-Core'!
  
  !Installer commentStamp: 'kph 12/19/2007 14:42' prior: 0!
  Documentation now available at http://installer.pbwiki.com/Installer
   !



More information about the Packages mailing list