Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.1087.mcz==================== Summary ====================
Name: System-mt.1087
Author: mt
Time: 19 August 2019, 6:10:49.749665 pm
UUID: 634a8b56-cd36-874e-9b69-a839b0e30bf0
Ancestors: System-mt.1086, System-ct.1086
Merge.
=============== Diff against System-mt.1086 ===============
Item was changed:
----- Method: Project>>tellAFriend: (in category 'SuperSwiki') -----
tellAFriend: emailAddressOrNil
"
+ Project current tellAFriend
- Project current tellAFrien
"
| urlForLoading |
(urlForLoading := self urlForLoading)
ifNil: [urlForLoading := self url
"fallback for dtp servers"].
urlForLoading isEmptyOrNil
ifTrue: [^ self inform: 'Since this project has not been saved yet,
I cannot tell someone where it is.' translated].
FancyMailComposition new
celeste: nil
to: (emailAddressOrNil
ifNil: ['RECIPIENT.GOESHERE'])
subject: 'New/Updated Squeak project'
initialText: 'This is a link to the Squeak project ' , self name , ': ' , String crlf
theLinkToInclude: urlForLoading;
open!