[squeak-dev] The Trunk: Universes-mt.48.mcz

commits at source.squeak.org commits at source.squeak.org
Sun May 10 12:01:46 UTC 2015


Marcel Taeumel uploaded a new version of Universes to project The Trunk:
http://source.squeak.org/trunk/Universes-mt.48.mcz

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

Name: Universes-mt.48
Author: mt
Time: 10 May 2015, 2:01:40.643 pm
UUID: 7bdf9c4b-71d8-9449-9786-9a21743e6866
Ancestors: Universes-kfr.47

Skip registering Universe tools in the world menu because they are not functional at the moment.

=============== Diff against Universes-kfr.47 ===============

Item was changed:
- SystemOrganization addCategory: #'Universes-Interface'!
- SystemOrganization addCategory: #'Universes-Editor'!
  SystemOrganization addCategory: #'Universes-Browser'!
- SystemOrganization addCategory: #'Universes-Policy'!
- SystemOrganization addCategory: #'Universes-Model'!
- SystemOrganization addCategory: #'Universes-Tests'!
- SystemOrganization addCategory: #'Universes-Server'!
  SystemOrganization addCategory: #'Universes-Client'!
+ SystemOrganization addCategory: #'Universes-Editor'!
  SystemOrganization addCategory: #'Universes-Installers'!
+ SystemOrganization addCategory: #'Universes-Interface'!
  SystemOrganization addCategory: #'Universes-Messages'!
+ SystemOrganization addCategory: #'Universes-Model'!
+ SystemOrganization addCategory: #'Universes-Policy'!
  SystemOrganization addCategory: #'Universes-Serialization'!
+ SystemOrganization addCategory: #'Universes-Server'!
+ SystemOrganization addCategory: #'Universes-Tests'!

Item was changed:
  ----- Method: UUniverseBrowser class>>initialize (in category 'class initialization') -----
  initialize
+ 	#('Package Browser (basic)' 'Universe Browser' 'Package Universe Browser') do: [:oldName |
- 	#('Package Browser (basic)' 'Universe Browser') do: [:oldName |
  		TheWorldMenu unregisterOpenCommand: oldName ].
  	
+ 	"TheWorldMenu registerOpenCommand: {'Universe Browser (basic)'. {self. #open}}.
+ 	Preferences setWindowColorFor: self name to: (Color r: 0.194 g: 0.645 b: 1.0)."!
- 	TheWorldMenu registerOpenCommand: {'Universe Browser (basic)'. {self. #open}}.
- 	Preferences setWindowColorFor: self name to: (Color r: 0.194 g: 0.645 b: 1.0).!

Item was changed:
  ----- Method: UUniverseBrowser class>>unload (in category 'class initialization') -----
  unload
+ 
+ 	#('Package Browser (basic)' 'Universe Browser' 'Package Universe Browser') do: [:oldName |
+ 		TheWorldMenu unregisterOpenCommand: oldName ].!
- 	TheWorldMenu unregisterOpenCommand: 'Universe Browser (basic)'!

Item was changed:
  ----- Method: UUniverseEditor class>>initialize (in category 'class initialization') -----
  initialize
- 	TheWorldMenu unregisterOpenCommand: 'Package Universe Editor'.
  
+ 	#('Universe Editor' 'Package Universe Editor') do: [:oldName |
+ 		TheWorldMenu unregisterOpenCommand: oldName].
+ 
+ 	"TheWorldMenu registerOpenCommand: {'Universe Editor'. {self. #open}}.
+ 	Preferences setWindowColorFor: self name to: (Color r: 0.194 g: 0.645 b: 1.0)."!
- 	TheWorldMenu registerOpenCommand: {'Universe Editor'. {self. #open}}.
- 	Preferences setWindowColorFor: self name to: (Color r: 0.194 g: 0.645 b: 1.0).!

Item was changed:
  ----- Method: UUniverseEditor class>>unload (in category 'class initialization') -----
  unload
+ 	
+ 	#('Universe Editor' 'Package Universe Editor') do: [:oldName |
+ 		TheWorldMenu unregisterOpenCommand: oldName].
+ !
- 	TheWorldMenu unregisterOpenCommand: 'Universe Editor'!



More information about the Squeak-dev mailing list