<div dir="ltr"><div><div><div>OK, just loaded one of my projects and started poking around. This is by no means exhaustive, just what I happened to notice. On the &quot;welcome&quot; screen it says &quot;Cleanup and simplification of Morphic text editing&quot; but an old &quot;feature&quot; (bug) is still there. If I type &quot;The second word is bold&quot; and want to make the second word bold I double-click on &quot;second&quot; to select the word, then right-click to bring up a pop-up menu where I expect to be able to do that. The options available are <br>
<br></div>set font ... (k)<br></div>set style ... (k)<br>set alignment ... (u)<br><br></div>Setting a word bold should be on the style option, but when I select it I get a font selection tool. The first choice also leads to a font setting tool, although it is different. Neither offers bold, underline, italic, etc. The alignment choice does offer alignment options. If I halo the text and click Brown FF I get what I want, plus options to set alignment. Here is a clue: both of the first two options on the pop-menu show the same keyboard shortcut of k, which actually does what &quot;set font&quot; does. Seems as though the definition for the &quot;set style&quot; choice needs some adjustment.<br>
</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Dec 27, 2012 at 4:18 PM, Open Slate <span dir="ltr">&lt;<a href="mailto:openslateproj@gmail.com" target="_blank">openslateproj@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Just installed 4.4 RC3 on FreeBSD 9.1 RC3 and it comes up fine. No time just now to try things out. Looking forward to improvements in the text editing ... this was driving be bananas. Thanks, all!!<br>
</div>
<div class="gmail_extra"><div><div class="h5"><br><br><div class="gmail_quote">On Thu, Dec 27, 2012 at 1:48 AM, H. Hirzel <span dir="ltr">&lt;<a href="mailto:hannes.hirzel@gmail.com" target="_blank">hannes.hirzel@gmail.com</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Frank,<br>
<div><br>
On 12/27/12, Frank Shearar &lt;<a href="mailto:frank.shearar@gmail.com" target="_blank">frank.shearar@gmail.com</a>&gt; wrote:<br>
&gt; On 27 December 2012 11:00, H. Hirzel &lt;<a href="mailto:hannes.hirzel@gmail.com" target="_blank">hannes.hirzel@gmail.com</a>&gt; wrote:<br>
&gt;&gt; Frank,<br>
&gt;&gt;<br>
&gt;&gt; where can I have a look at the build script?<br>
&gt;&gt;<br>
&gt;&gt; And the console output is not very talkative....<br>
&gt;&gt;<br>
&gt;&gt; <a href="http://squeakci.org/job/ReleaseSqueakTrunk/17/console" target="_blank">http://squeakci.org/job/ReleaseSqueakTrunk/17/console</a><br>
&gt;<br>
&gt; * <a href="https://github.com/frankshearar/squeak-ci/blob/download-vms/release.sh" target="_blank">https://github.com/frankshearar/squeak-ci/blob/download-vms/release.sh</a><br>
<br>
</div>OK, so the following bash script<br>
<br>
    #! /bin/sh<br>
<br>
    # This script takes the output of builtastic.sh and creates a releasable<br>
    # artifact.<br>
<br>
    SRC=$(cd $(dirname &quot;$0&quot;); pwd)<br>
    . &quot;${SRC}/versions.sh&quot;<br>
    . &quot;${SRC}/functions.sh&quot;<br>
<br>
    SQUEAK_VERSION=`cat ${SRC}/target/TrunkImage.version`<br>
    BASENAME=Squeak4.4-${SQUEAK_VERSION}<br>
<br>
    build_interpreter_vm<br>
<br>
    echo Using ${INTERPRETER_VM}<br>
    echo Preparing ${BASENAME}...<br>
    cp ${SRC}/target/TrunkImage.changes ${SRC}/target/${BASENAME}.changes<br>
    cp ${SRC}/target/TrunkImage.image ${SRC}/target/${BASENAME}.image<br>
<br>
    chmod +w ${SRC}/target/${BASENAME}.changes<br>
    chmod +w ${SRC}/target/${BASENAME}.image<br>
<br>
    echo Releasing ${BASENAME}...<br>
    ${INTERPRETER_VM} -vm-sound-null -vm-display-null ${SRC}/target<br>
/${BASENAME}.image ${SRC}/<a href="http://release.st" target="_blank">release.st</a><br>
<br>
    echo Zipping ${BASENAME}...<br>
    # Previous runs might leave a zip lying around.<br>
    rm ${SRC}/target/${BASENAME}.zip<br>
    (cd ${SRC}/target; zip -j ${BASENAME}.zip ${BASENAME}.changes<br>
${BASENAME}.image)<br>
<br>
<br>
<br>
<br>
<br>
<br>
CALLS the SMALLTALK script<br>
<br>
&gt; * <a href="https://github.com/frankshearar/squeak-ci/blob/download-vms/release.st" target="_blank">https://github.com/frankshearar/squeak-ci/blob/download-vms/release.st</a><br>
<br>
<br>
    Form openAsBackground: (FileDirectory default / &#39;..&#39; /<br>
&#39;resources/wallpaper.png&#39;) pathName.<br>
    Workspace allInstances do: [:w | w topView delete].<br>
    ReleaseBuilderFor4dot4 prepareNewBuild.<br>
    Smalltalk snapshot: true andQuit: true.<br>
<br>
<br>
Just by inspection (and with the knowledge that the version number of<br>
the resulting image is correct) it seems that the error might be in<br>
the Smalltalk script.<br>
<br>
NOTE:<br>
Anybody who downloads the latest trunk image and executes the above<br>
Smalltalk script is in the position to find the error....... (hint,<br>
hint to everybody...)<br>
<div><br>
<br>
&gt; No, the scripts are not talkative at all. I&#39;m really not sure how to<br>
&gt; make them more talkative. Obviously in the shell scripts you can use<br>
&gt; echo, but those do hardly anything. Really what I want is something<br>
&gt; that writes to the Transcript when headful and to stdout/stderr when<br>
&gt; headless. I don&#39;t think we have such a thing at the moment.<br>
&gt;<br>
&gt; I also think that the ReleaseBuilder stuff doesn&#39;t belong in the Trunk<br>
&gt; image and should be maintained externally. (MAYBE it could be loaded<br>
&gt; into an image just as part of the release process, but really I&#39;d like<br>
&gt; scaffolding - ConfigurationOf packages, ReleaseBuilder stuff, etc. -<br>
&gt; to not be in the image at all.)<br>
<br>
</div>I am actually very fine with the scaffolding script in the image,<br>
reason see the note above.<br>
<br>
And in addition this is what Andreas suggested in his memo which is<br>
cited in the welcome window. External packages configurations /<br>
scripts which are community supported should be in the image...<br>
<br>
<br>
--Hannes<br>
<div><div><br>
&gt; frank<br>
&gt;<br>
&gt;&gt; --Hannes<br>
&gt;&gt;<br>
&gt;&gt; On 12/24/12, Frank Shearar &lt;<a href="mailto:frank.shearar@gmail.com" target="_blank">frank.shearar@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt; On 24 December 2012 09:18, Frank Shearar &lt;<a href="mailto:frank.shearar@gmail.com" target="_blank">frank.shearar@gmail.com</a>&gt;<br>
&gt;&gt;&gt; wrote:<br>
&gt;&gt;&gt;&gt; On 24 December 2012 07:48, H. Hirzel &lt;<a href="mailto:hannes.hirzel@gmail.com" target="_blank">hannes.hirzel@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt; Though it has version number 12324 it still shows the rice-paper<br>
&gt;&gt;&gt;&gt;&gt; background and has a &#39;welcome to Squeak 4.3&#39; workspace.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Oh crumbs. Thanks, Hannes, I must have an error in my script.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; <a href="http://squeakci.org/job/ReleaseSqueakTrunk/17/" target="_blank">http://squeakci.org/job/ReleaseSqueakTrunk/17/</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; frank<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; --Hannes<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; On 12/23/12, Frank Shearar &lt;<a href="mailto:frank.shearar@gmail.com" target="_blank">frank.shearar@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;&gt; On 23 December 2012 19:14, Frank Shearar &lt;<a href="mailto:frank.shearar@gmail.com" target="_blank">frank.shearar@gmail.com</a>&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; On 23 December 2012 19:09, Frank Shearar &lt;<a href="mailto:frank.shearar@gmail.com" target="_blank">frank.shearar@gmail.com</a>&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <a href="http://squeakci.org/job/ReleaseSqueakTrunk/lastSuccessfulBuild/artifact/target/" target="_blank">http://squeakci.org/job/ReleaseSqueakTrunk/lastSuccessfulBuild/artifact/target/</a><br>


&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; I&#39;m trying to automate more and more of the build/release process.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; See<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <a href="https://github.com/frankshearar/squeak-ci/tree/download-vms" target="_blank">https://github.com/frankshearar/squeak-ci/tree/download-vms</a> for<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; details. (I&#39;ll merge this branch back into master at some point in<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; the<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; near future.)<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; This does _not_ address Bert&#39;s issue about the positioning of the<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; Squeak window; it&#39;s just an illustration of yet another piece of<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; automation. I like automation.<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; I see three dirty packages, all dirty - apparently - because of<br>
&gt;&gt;&gt;&gt;&gt;&gt; package restructurings.<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; * FlexibleVocabularies - FlexibleVocabularies-Info removed?<br>
&gt;&gt;&gt;&gt;&gt;&gt; * Multilingual - Multilingual-Editor added?<br>
&gt;&gt;&gt;&gt;&gt;&gt; * SMLoader - looks like SMLoader-Models was removed?<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; (I may have the situation reversed; I&#39;m not sure whether &quot;old&quot; refers<br>
&gt;&gt;&gt;&gt;&gt;&gt; to the blue strikeout text or the red, nor whether &quot;old&quot; refers to<br>
&gt;&gt;&gt;&gt;&gt;&gt; the<br>
&gt;&gt;&gt;&gt;&gt;&gt; image or to trunk.)<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; frank<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
<br>
</div></div></blockquote></div><br><br clear="all"><br></div></div><span class="HOEnZb"><font color="#888888">-- <br>Gary Dunn<br>Open Slate Project<br><a href="http://openslate.org/" target="_blank">http://openslate.org/</a>
</font></span></div>
</blockquote></div><br><br clear="all"><br>-- <br>Gary Dunn<br>Open Slate Project<br><a href="http://openslate.org/" target="_blank">http://openslate.org/</a>
</div>