[Pkg] Installer: Installer-Core-AlexandreBergel.220.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Fri Sep 12 12:59:04 UTC 2008


A new version of Installer-Core was added to project Installer:
http://www.squeaksource.com/Installer/Installer-Core-AlexandreBergel.220.mcz

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

Name: Installer-Core-AlexandreBergel.220
Author: AlexandreBergel
Time: 12 September 2008, 2:58:39 pm
UUID: d49f34bd-5815-444d-a9d7-7aae3777c515
Ancestors: Installer-Core-AlexandreBergel.219

Change call to setAuthorInitials: by "Author class>>initials:"

=============== Diff against Installer-Core-AlexandreBergel.219 ===============

Item was changed:
  ----- Method: Installer class>>launchWith: (in category 'launcher support') -----
  launchWith: params
  
   	params at: 'P' ifPresent: [ :v | params at: 'PATH' put: v ].
   	params at: 'I' ifPresent: [ :v | params at: 'INSTALL' put: v ].
   	params at: 'IN' ifPresent: [ :v | params at: 'INSTALL' put: v ].
   	params at: 'U' ifPresent: [ :v | params at: 'URL' put: v ].
  
  	params at: 'PATH' ifPresent: [ :v | 
  		self webSearchPathFrom: v.
  	].
  
  	params at: 'USER' ifPresent: [ :v | 
+ 		Author initials: v
- 		Utilities setAuthorInitials: v
  	].
  	params at: 'VERSION' ifPresent: [ :v | 
  		SystemVersion current version: v
  	].
  	params at: 'VIEW' ifPresent: [ :v |
  		self view: v
  	].
  
  	IsSetToTrapErrors := true.
  	params at: 'DEBUG' ifPresent: [ :v | IsSetToTrapErrors := (v == true) not ].
  
   	params at: 'URL' ifPresent: [ :v | 
  		 self installUrl: v
  	].
  
  	params at: 'FILE' ifPresent: [ :v | 
  		 self installFile: v
  	].
   
   	params at: 'INSTALL' ifPresent: [ :v | 
  		  self do: v
  	].
  	params at: 'DO' ifPresent: [ :v | 
  		  self do: v
  	].
   
  	 ^true
  
  	!



More information about the Packages mailing list