Eliot Miranda uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-eem.1638.mcz==================== Summary ====================
Name: Morphic-eem.1638
Author: eem
Time: 9 March 2020, 10:22:12.401533 am
UUID: 78cf7862-7ada-4649-b672-aee960413389
Ancestors: Morphic-nice.1637
Fix project publishing; acceptProjectDetails: may be presented with a nil details.
=============== Diff against Morphic-nice.1637 ===============
Item was changed:
----- Method: MorphicProject>>acceptProjectDetails: (in category 'file in/out') -----
acceptProjectDetails: details
"Store project details back into a property of the world, and if a name is provided, make sure the name is properly installed in the project."
self world setProperty: #ProjectDetails toValue: details.
+ details ifNotNil:
+ [details
+ at: 'projectname'
+ ifPresent: [ :newName | self renameTo: newName]]!
- details at: 'projectname' ifPresent: [ :newName |
- self renameTo: newName]!