The Trunk: ReleaseBuilder-mt.183.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: ReleaseBuilder-mt.183.mcz

commits-2
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.!