[squeak-dev] The Trunk: ST80-cmm.130.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Jun 21 20:48:22 UTC 2011


Chris Muller uploaded a new version of ST80 to project The Trunk:
http://source.squeak.org/trunk/ST80-cmm.130.mcz

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

Name: ST80-cmm.130
Author: cmm
Time: 21 June 2011, 3:47:55.174 pm
UUID: 633a8380-bf00-465a-970c-88140c8bc57d
Ancestors: ST80-ul.129, ST80-HenrikSperreJohansen.124

Merged ST80-HenrikSperreJohansen.124 for pragma-based Sound preferences.

=============== Diff against ST80-ul.129 ===============

Item was changed:
  ----- Method: ScreenController>>helpMenu (in category 'nested menus') -----
  helpMenu 
  	"Answer the help menu to be put up as a screen submenu"
  
  	^ SelectionMenu labelList:
  		#(
  			'about this system...'
  			'update code from server'
  			'preferences...'
  
  			'command-key help'
  			'font size summary'
  			'useful expressions'
  			'view graphical imports'
  			'standard graphics library'),
  
+ 			(Array with: (SoundService soundEnablingString)) ,
- 			(Array with: (Preferences soundsEnabled
- 							ifFalse: ['turn sound on']
- 							ifTrue: ['turn sound off'])) ,
  
  		#(	'set author initials...'
  			'vm statistics'
  			'space left')
  		lines: #(1 4 6 11)
  		selections: #( aboutThisSystem absorbUpdatesFromServer
  editPreferences  openCommandKeyHelp fontSizeSummary openStandardWorkspace viewImageImports
  standardGraphicsLibrary soundOnOrOff setAuthorInitials vmStatistics garbageCollect)
  "
  ScreenController new helpMenu startUp
  "!

Item was changed:
  ----- Method: ScreenController>>soundOnOrOff (in category 'menu messages') -----
  soundOnOrOff
+ 	SoundService toggleSoundEnabled!
- 	Preferences setPreference: #soundsEnabled
- 		toValue: Preferences soundsEnabled not!




More information about the Squeak-dev mailing list