<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Exchange Server">
<!-- converted from text --><style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style>
</head>
<body>
<meta content="text/html; charset=UTF-8">
<style type="text/css" style="">
<!--
p
        {margin-top:0;
        margin-bottom:0}
-->
</style>
<div dir="ltr">
<div id="x_divtagdefaultwrapper" dir="ltr" style="font-size:12pt; color:#000000; font-family:Calibri,Helvetica,sans-serif">
<p>Nice catch! Note that there is also "Project current transcript" ... not sure about the pros and cons of "Smalltalk at: #Transcript".</p>
<p><br>
</p>
<p>Best,</p>
<p>Christoph</p>
</div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="x_divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>Von:</b> Squeak-dev <squeak-dev-bounces@lists.squeakfoundation.org> im Auftrag von commits@source.squeak.org <commits@source.squeak.org><br>
<b>Gesendet:</b> Montag, 9. Januar 2023 11:00:57<br>
<b>An:</b> squeak-dev@lists.squeakfoundation.org; packages@lists.squeakfoundation.org<br>
<b>Betreff:</b> [squeak-dev] The Trunk: Morphic-mt.2057.mcz</font>
<div> </div>
</div>
</div>
<font size="2"><span style="font-size:10pt;">
<div class="PlainText">Marcel Taeumel uploaded a new version of Morphic to project The Trunk:<br>
<a href="http://source.squeak.org/trunk/Morphic-mt.2057.mcz">http://source.squeak.org/trunk/Morphic-mt.2057.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Morphic-mt.2057<br>
Author: mt<br>
Time: 9 January 2023, 11:00:54.890325 am<br>
UUID: f093a34d-1306-2f44-89ca-f90c796f94c4<br>
Ancestors: Morphic-ct.2056<br>
<br>
Fixes two issues with Trascript:<br>
1. "World Menu > Open... > transcript" should always count open transcripts<br>
2. Menu item "Tools > Transcript" must not bind Transcript global but use Smalltalk>>#at: lookup.<br>
<br>
The second bug occurred the moment we executed initialization code for new morphic projects to immediately render a preview thumbnail.<br>
<br>
Note that I am still not in favor of executing code of a new project in the scope of the current project due to process management, globals, and other stuff. Let's keep an eye on this.<br>
<br>
See<br>
<a href="http://lists.squeakfoundation.org/pipermail/squeak-dev/2022-December/222795.html">http://lists.squeakfoundation.org/pipermail/squeak-dev/2022-December/222795.html</a><br>
<br>
I will backport this to Squeak 6.0.<br>
<br>
=============== Diff against Morphic-ct.2056 ===============<br>
<br>
Item was changed:<br>
  ----- Method: TheWorldMainDockingBar>>transcriptMenuItemOn: (in category 'submenu - tools') -----<br>
  transcriptMenuItemOn: menu<br>
  <br>
         menu addItem: [ :item |<br>
                 item<br>
                         contents: 'Transcript' translated;<br>
                         help: 'Open the Transcript' translated;<br>
                         icon: (self colorIcon: Transcript windowColorToUse);<br>
+                        target: [ (Smalltalk at: #Transcript) open ];<br>
+                        selector: #value ].!<br>
-                        target: Transcript;<br>
-                        selector: #open ]!<br>
<br>
Item was changed:<br>
  ----- Method: TheWorldMenu>>openTranscript (in category 'commands') -----<br>
  openTranscript<br>
  <br>
+        Transcript open.!<br>
-        Transcript openLabel: 'Transcript'!<br>
<br>
Item was changed:<br>
+ (PackageInfo named: 'Morphic') postscript: 'TheWorldMainDockingBar updateInstances. "Fix ''Tools > Transcript'' to make it late-bound."'!<br>
- (PackageInfo named: 'Morphic') postscript: 'TheWorldMainDockingBar updateInstances. "Updates menu for Help > Contributing to Squeak"'!<br>
<br>
<br>
</div>
</span></font>
</body>
</html>