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

commits at source.squeak.org commits at source.squeak.org
Fri Aug 12 10:12:55 UTC 2016


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

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

Name: ReleaseBuilder-mt.150
Author: mt
Time: 12 August 2016, 12:12:50.338343 pm
UUID: 94c3f7c3-28de-e146-ad7c-f29f88692fa7
Ancestors: ReleaseBuilder-mt.149

When preparing the environment, show welcome information again.

=============== Diff against ReleaseBuilder-mt.149 ===============

Item was changed:
  ----- Method: ReleaseBuilder class>>openWelcomeWorkspaces (in category 'scripts - support') -----
  openWelcomeWorkspaces
  
+ 	| t b |
+ 	t := HelpTopic title: 'Welcome to Squeak' readOnlyContents: 'Please choose a topic from the left sidebare.'.
+ 
+ 	t subtopics
+ 		add: (SqueakHelp asHelpTopic subtopics detect: [:ea | ea key = #introduction]);
+ 		add: SqueakLicenseHelp asHelpTopic;
+ 		add: (SqueakProjectHelp asHelpTopic subtopics detect: [:ea | ea key = #squeakUserInterface]);
+ 		add: (SqueakProjectHelp asHelpTopic subtopics detect: [:ea | ea key = #workingWithSqueak]);
+ 		add: SqueakReleaseNotes asHelpTopic.
+ 	
+ 	b := HelpBrowser openOn: t.
+ 	b extent: b world extent * 0.6.
+ 	b center: b world center.
+ 	b model showFirstTopic.!
- "	|offset | offset:= 50 at 50.
- 	 #('License Information' 'The Squeak User Interface' 'Working With Squeak' 'Release Notes')
- 		with:  #(#licenseInformation #squeakUserInterface #workingWithSqueak #releaseNotes)
-  		do: [ : eachLabel : eachAccessor |
- 			TheWorldMainDockingBar instance
- 				showWelcomeText: eachAccessor
- 				label: eachLabel
- 				in: (offset extent: 500 at 300).
- 			offset := offset + (30 at 30)]"!



More information about the Squeak-dev mailing list