[squeak-dev] The Trunk: ReleaseBuilder-mt.183.mcz

commits at source.squeak.org commits at source.squeak.org
Thu May 24 13:51:01 UTC 2018


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

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

Name: ReleaseBuilder-mt.183
Author: mt
Time: 24 May 2018, 3:50:44.503431 pm
UUID: 8afd7acd-b4ec-4b21-9af1-1299f984419b
Ancestors: ReleaseBuilder-mt.182

Fixes a hick-up with existing morphic content in the CI process.

=============== Diff against ReleaseBuilder-mt.182 ===============

Item was changed:
  ----- Method: ReleaseBuilder class>>configureDesktop (in category 'scripts') -----
  configureDesktop
  	"Open tools, multimedia content, etc."
  
  	self setDisplayExtent: 1024 @ 768.
  	self setProjectBackground: Color darkGray.
  	(UserInterfaceTheme named: 'Squeak') apply.
  	
  	self deleteAllWindows.
+ 	self deleteAllOtherMorphs.
  
  	"Replace docking bar instance in case its code has changed."
  	Project current removeMainDockingBar.
  	TheWorldMainDockingBar updateInstances.!

Item was added:
+ ----- Method: ReleaseBuilder class>>deleteAllOtherMorphs (in category 'scripts - support') -----
+ deleteAllOtherMorphs
+ 
+ 	Project current world removeAllMorphs.!



More information about the Squeak-dev mailing list