Marcel Taeumel uploaded a new version of ReleaseBuilder to project The Trunk:
http://source.squeak.org/trunk/ReleaseBuilder-mt.161.mcz==================== Summary ====================
Name: ReleaseBuilder-mt.161
Author: mt
Time: 17 August 2016, 7:02:57.914774 pm
UUID: 4d539a77-098d-8d44-a375-7f3f36618ac9
Ancestors: ReleaseBuilder-mt.160
Only open the welcome workspaces on the first start to avoid interference with the file system on Travis.
=============== Diff against ReleaseBuilder-mt.160 ===============
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.
"Replace docking bar instance in case its code has changed."
Project current removeMainDockingBar.
+ TheWorldMainDockingBar updateInstances.!
- TheWorldMainDockingBar updateInstances.
-
- self openWelcomeWorkspaces.!
Item was changed:
----- Method: ReleaseBuilder class>>prepareEnvironment (in category 'preparing') -----
prepareEnvironment
"Prepare everything that should be done for a new image build. Clear caches, passwords, etc."
"ReleaseBuilder prepareNewBuild"
self
checkCurrentProjects;
clearCaches;
configureTools;
setPreferences;
configureDesktop.
+ DeferredTask := [
+ self openWelcomeWorkspaces.
+ PreferenceWizardMorph new openInWorld].
- DeferredTask := [PreferenceWizardMorph new openInWorld].
"If you save-and-quit the image after calling #prepareEnvironment, ensure that the next image startup will be fast."
Project current world doOneCycle.!