[Pkg] Installer: Installer-Core-kph.192.mcz

squeaksource-noreply at iam.unibe.ch squeaksource-noreply at iam.unibe.ch
Wed May 21 07:56:52 UTC 2008


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

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

Name: Installer-Core-kph.192
Author: kph
Time: 21 May 2008, 8:56:28 am
UUID: a8d59d00-a2ed-48b3-a7b2-21b2acdc4edc
Ancestors: Installer-Core-kph.191

added 

Installer noProgressDuring: [ :installer | ... ]

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

Item was added:
+ ----- Method: Installer class>>noProgressDuring: (in category 'as yet unclassified') -----
+ noProgressDuring: block
+ 
+ 	
+ 	[ block value: self ] on: ProgressNotification do: [ :note | note resume ]
+ 
+ !

Item was added:
+ ----- Method: Installer class>>skipLoadingTestsDuring: (in category 'as yet unclassified') -----
+ skipLoadingTestsDuring: block
+ 
+ 	| oldValue |
+ 
+ 	oldValue := SkipLoadingTests.
+ 	SkipLoadingTests := true.
+ 	
+ 	[ block value: self ] ensure:[ SkipLoadingTests := oldValue ].!

Item was removed:
- ----- Method: Installer class>>skipLoadingTests:during: (in category 'as yet unclassified') -----
- skipLoadingTests: yesNo during: block
- 
- 	| oldValue |
- 
- 	oldValue := SkipLoadingTests.
- 	SkipLoadingTests := yesNo.
- 	
- 	block ensure:[ SkipLoadingTests := oldValue ].!



More information about the Packages mailing list