<html><head></head><body bgcolor="#FFFFFF"><div>This is a known issue. IIRC, this one has stayed broken in part because Juan intends to replace the rotation mechanism in his roadmap for Cuis (which involves hosting Morphic 3, which uses a lot of vector graphics, which rotate quite differently from bitmaps.)</div><div><br></div><div>Of course I could be remembering incorrectly. CC Juan.&nbsp;<br><br>On Apr 26, 2012, at 5:35 AM, Enrico Spinielli &lt;<a href="mailto:enrico.spinielli@googlemail.com">enrico.spinielli@googlemail.com</a>&gt; wrote:<br><br></div><div></div><blockquote type="cite"><div><div class="gmail_extra">Hi Juan,</div><div class="gmail_extra">very nice creature Cuis 4.0: congratulations!</div><div class="gmail_extra"><br></div><div class="gmail_extra">I do not know whether this the right spot to report it but I think I found a bug: the rotate halo does not work.</div>
<div class="gmail_extra">I just created a RectangleMorph, showed the halos and dragged around the rotate handle.</div><div class="gmail_extra"><br></div><div class="gmail_extra">Hope it helps</div><div class="gmail_extra">
Bye</div><div class="gmail_extra">Enrico</div><div class="gmail_extra">PS: How do you show the halo of an halo?</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sat, Apr 21, 2012 at 20:14,  <span dir="ltr">&lt;<a href="mailto:juanlists@jvuletich.org" target="_blank">juanlists@jvuletich.org</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Folks,<br>
<br>
Cuis 4.0 is available at <a href="http://www.jvuletich.org/Cuis/Index.html" target="_blank">http://www.jvuletich.org/Cuis/<u></u>Index.html</a> . This is a very important release. It's been over 10 months since Cuis 3.3, but all this time means that there are a lot of big news now.<br>

<br>
The biggest one is the public release of the Styled Text Editor, by Bernhard Pieber. Bernhard will do the announcement of this project himself, all I want to say is that Styled Text Editor is the driving force behind most of the new stuff in this release. I also want to add that I'm delighted to be able to work with Bernhard on his project, and that I'm more than happy with the wonderful effect this is having on Cuis itself.<br>

<br>
Check <a href="http://www.jvuletich.org/Cuis/CuisReleaseNotes.html" target="_blank">http://www.jvuletich.org/Cuis/<u></u>CuisReleaseNotes.html</a> .<br>
<br>
So, the main new features of this release of Cuis are the required support for External Packages. This is a very lightweight implementation of Packages, based on PackageInfo, but not on Monticello. Versioning is done with GitHub. Take a look at <a href="http://www.jvuletich.org/Cuis/CodeManagementInCuis4.html" target="_blank">http://www.jvuletich.org/Cuis/<u></u>CodeManagementInCuis4.html</a> and <a href="http://www.jvuletich.org/Cuis/CuisAndGitHub.html" target="_blank">http://www.jvuletich.org/Cuis/<u></u>CuisAndGitHub.html</a> .<br>

<br>
Full list of features (from the release notes):<br>
------------------------------<u></u>-----------------------<br>
<br>
 &nbsp; &nbsp;- Package Support. Cuis 4.0 has a package implementation based on PackageInfo. Can be used with a Git repository (like GitHub) for package versioning. More info at "CodeManagementInCuis4" and "CuisAndGitHub". This infrastructure and process is used for the StyledTextEditor project, developed by Bernhard Pieber and Software Generation.<br>

<br>
 &nbsp; &nbsp;- New handling of ChangeSets. The idea is to have only one "live" change set that automatically captures all changes done to the Cuis Core image. Changes to Packages go to separate ChangeSets.<br>
<br>
 &nbsp; &nbsp;- UCompletion. A new implementation of Autocompletion for Smalltalk code. Activates with ctrl-space. Usually gives the selector desired as the first option. Some features are:<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;= Sorts by last definition of selector (Methods recently saved go first),<br>
 &nbsp; &nbsp; &nbsp; &nbsp;= Sorts appropriately all selectors matching entered prefix (no hardcoded limits, like 40 selectors matching 2 letters).<br>
 &nbsp; &nbsp; &nbsp; &nbsp;= Restricts suggestions if receiver is Global, a Constant or a pseudo-variable.<br>
 &nbsp; &nbsp; &nbsp; &nbsp;= Doesn't have an "expanded mode". Always shows relevant suggestions.<br>
 &nbsp; &nbsp; &nbsp; &nbsp;= Not restricted to a set of previously selected packages. All the methods in the system are accounted for.<br>
 &nbsp; &nbsp; &nbsp; &nbsp;= Very fast, thanks to an optimized Trie implementation.<br>
 &nbsp; &nbsp; &nbsp; &nbsp;= Compact code. Relies on services by Trie (for storing and querying selectors) and Shout (for parsing incomplete methods).<br>
 &nbsp; &nbsp; &nbsp; &nbsp;= Helps make Shout faster, by providing super fast queries of selector prefixes.<br>
 &nbsp; &nbsp; &nbsp; &nbsp;= Can be used for other applications besides Smalltalk code. Currently used for an English glossary for StyledTextEditor.<br>
<br>
 &nbsp; &nbsp;- Trie. Cuis 4.- includes a very optimized implementation of a Trie. Tries are dictionaries where keys are Strings. Lookups are extremely fast. Search for entries matching a prefix are extremely fast (O(1) regardless of the size of the collection). Addition and removals are quite fast too. Used for UCompletion, holding 11,000 selectors. Also used for an English spell checker (in the StyledTextEditor project) holding 166,000 words. In both cases use of memory is quite reasonable (3 and 5.4 bytes per character in average) and query speed is extremely fast.<br>

<br>
 &nbsp; &nbsp;- Multiple level undo / redo in all text and code editors.<br>
<br>
 &nbsp; &nbsp;- ClickNHalf+Drag to select words. TripleClick or DoubleClickNHalf+Drag to select paragraphs. Like most modern text editors and wordprocessors do.<br>
<br>
 &nbsp; &nbsp;- Multiple text selection (with control+mouse). Like most modern text editors and wordprocessors do.<br>
<br>
 &nbsp; &nbsp;- Lf. The newline character is no longer Character cr (ASCII code 13), but Character lf (ASCII code 10). This is the standard in Mac and Unix platforms, and the required convention for GitHub. All the code in the image has been converted.<br>

<br>
 &nbsp; &nbsp;- cmd-w closes window below mouse pointer. cmd-&lt; y cmd-&gt; cycle through windows.<br>
<br>
 &nbsp; &nbsp;- New "PostIt" like HoverHelp morphs.<br>
<br>
 &nbsp; &nbsp;- Simplification / Redesign: Scrolling in Morphic (TransformMorph gone, etc).<br>
<br>
 &nbsp; &nbsp;- Deep cleanup in Paragraph and paragraph display services in Canvas and DisplayScanner (now MorphicScanner).<br>
<br>
 &nbsp; &nbsp;- MouseClickState refactor, to ease new gestures (ClickNHalf+Drag, DoubleClickNHalf+Drag, TripleClick).<br>
<br>
 &nbsp; &nbsp;- Killed AbstractEvent hierarchy. Unified event subscribing, triggering and handling everywhere in Cuis.<br>
<br>
 &nbsp; &nbsp;- More TextMorph cleanup.<br>
<br>
 &nbsp; &nbsp;- Numeric enhancements done by nice and jmv, both on Squeak and Cuis.<br>
<br>
 &nbsp; &nbsp;- Many minor enhancements, cleanups and bugfixes.<br>
<br>
 &nbsp; &nbsp;- Updates to Squeak: Numerics, Network, and many others.<br>
<br>
I hope you enjoy this release of Cuis as much as Bernhard and I enjoyed working on it. As usual, comments, discussion, bug reports, kudos and donations are all<br>
welcome!<br>
<br>
Cheers,<br>
Juan Vuletich<br>
<br>
<br>
<br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br>Enrico Spinielli<br>"Do Androids dream of electric sheep?"— Philip K. Dick<br>"Hear and forget; see and remember;do and understand."—Mitchel Resnick<br>
"He who refuses to do arithmetic is doomed to talk nonsense."—John McCarthy<br>
</div>
</div></blockquote><blockquote type="cite"><div><span></span><br></div></blockquote></body></html>