The Trunk: ReleaseBuilder-mt.258.mcz
[email protected] Sun, 2 Aug 2026 10:21:12 0000
| Newsgroups | gmane.comp.lang.smalltalk.squeak.general |
|---|---|
| Message-ID | <[email protected]> |
Marcel Taeumel uploaded a new version of ReleaseBuilder to project The Trunk: http://source.squeak.org/trunk/ReleaseBuilder-mt.258.mcz ==================== Summary ==================== Name: ReleaseBuilder-mt.258 Author: mt Time: 2 August 2026, 12:21:12.738524 pm UUID: 823980a7-a6cf-b349-9a4b-74c9c59c5358 Ancestors: ReleaseBuilder-mt.257 Ensure title-case for 'What is new?' page in the welcome pages. =============== Diff against ReleaseBuilder-mt.257 =============== Item was changed: ----- Method: ReleaseBuilder class>>openWelcomeWorkspacesWith: (in category 'scripts - support') ----- openWelcomeWorkspacesWith: balloonForm | t browser balloon | t := HelpTopic title: 'Welcome to Squeak' translated readOnlyContents: 'Please choose a topic from the left sidebar.' translated. t subtopics add: ((SqueakHelp asHelpTopic subtopics detect: [:ea | ea key = #introduction]) icon: (MenuIcons smallHomeIcon scaledToSize: 12 px asPoint); yourself); + add: ((SqueakReleaseNotes perform: SqueakReleaseNotes pages first) asHelpTopic title: 'What is new?' translated asText allBold; icon: (MenuIcons smallLanguageIcon scaledToSize: 12 px asPoint); yourself); - add: ((SqueakReleaseNotes perform: SqueakReleaseNotes pages first) asHelpTopic title: 'What is New?' asText allBold; icon: (MenuIcons smallLanguageIcon scaledToSize: 12 px asPoint); yourself); add: SqueakLicenseHelp asHelpTopic; add: (SqueakProjectHelp asHelpTopic subtopics detect: [:ea | ea key = #squeakUserInterface]); add: (SqueakProjectHelp asHelpTopic subtopics detect: [:ea | ea key = #workingWithSqueak]); add: SqueakReleaseNotes asHelpTopic. "Keep topic order stable." t subtopics withIndexDo: [:topic :index | topic priority: index]. browser := HelpBrowser openOn: t. browser extent: browser world extent * 0.6. browser center: browser world center. browser model showFirstTopic. balloonForm ifNil: [^ self]. balloon := balloonForm asMorph. browser addMorphFront: balloon. balloon layoutFrame: (LayoutFrame fractions: (0@1 corner: 0@1) offsets: (balloon width // 1.7 negated @ (balloon height * 0.9) negated corner: 0@0)).! Squeak-dev mailing list -- [email protected] To unsubscribe send an email to [email protected]