[squeak-dev] The Trunk: System-bf.447.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Jul 11 09:59:59 UTC 2011


Bert Freudenberg uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-bf.447.mcz

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

Name: System-bf.447
Author: bf
Time: 11 July 2011, 11:59:14.632 am
UUID: 3b1a4d5b-4118-4b8a-846b-aefca7170e04
Ancestors: System-bf.446

- remove old sound preferences
- enable sounds by default

=============== Diff against System-bf.446 ===============

Item was changed:
  ----- Method: SoundService class>>soundEnabled (in category 'preferences') -----
  soundEnabled
  	<preference: 'Enable sound'
  		category: 'media'
  		description: 'If false, all sound playing is disabled'
  		type: #Boolean>
+ 	^SoundEnabled ifNil: [true]!
- 	^SoundEnabled ifNil: [false]!

Item was changed:
+ (PackageInfo named: 'System') postscript: '"Remove obsolete preferences."
+ #(allowUnderscoreAssignment allowBlockArgumentAssignment soundsEnabled soundQuickStart soundStopWhenDone canRecordWhilePlaying)
+ 	do: [ :each | Preferences removePreference: each ].'!
- (PackageInfo named: 'System') postscript: '"Remove obsolete compiler preferences."
- #(allowUnderscoreAssignment allowBlockArgumentAssignment) do: [ :each | Preferences removePreference: each ].'!




More information about the Squeak-dev mailing list