Squeakers: Thank you. <div><br></div><div>4.1 is a Smalltalk system that I&#39;m not afraid to show to my friends. In particular, the UI improvements that went in will really help me to raise awareness about Squeak in my local community (Seattle, where there is entirely too much C# going around.) I&#39;m glad that Squeak maintains a visual identity (even if we did yoink it mostly from Newspeak, heh) rather than emulating a mainstream look and feel.<div>
<br></div><div>I wanted to point out: 4.1 has a much larger delta than what will be absolutely necessary to justify future releases; it could probably have been code frozen and shipped a lot sooner if we hadn&#39;t been waiting on a license-clean 4.0 artifact. 4.2 is, in my mind, much closer than 4.1 was to (temporally speaking) 4.0.</div>
<div><br></div><div>It&#39;s been a good year. Ever since the commits started rolling in, I&#39;ve met some really great people, was honored to run with the relicense ball, (even if I botched the release email, lol!) and I&#39;ve learned a lot about Smalltalk. </div>
<div><br></div>Thanks everyone; here&#39;s to Squeak 4.2. Excelsior!<br><div><br><div class="gmail_quote">On Mon, Apr 19, 2010 at 10:09 AM, Hannes Hirzel <span dir="ltr">&lt;<a href="mailto:hannes.hirzel@gmail.com">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;">Yes, it is a major step forward.<br>
<br>
4.1 has a nice GUI which invites me to do write RCP like apps. The<br>
menu bar is great and the system windows look neat.<br>
<br>
With the ToolBuilder we can create good UIs though there is a learning curve.<br>
<br>
There are still errors but we can fix them quickly with the  trunk<br>
approach. It was just yesterday that I realised that there is an entry<br>
in Monticello to post to the inbox.<br>
<font color="#888888"><br>
Hannes<br>
</font><div><div></div><div class="h5"><br>
On 4/19/10, Chris Muller &lt;<a href="mailto:asqueaker@gmail.com">asqueaker@gmail.com</a>&gt; wrote:<br>
&gt; Congratulations Andreas.  It&#39;s one thing to make an &quot;app&quot;, or even a<br>
&gt; &quot;framework&quot;, but it&#39;s another to make a &quot;Smalltalk&quot;.  Way to go..<br>
&gt;<br>
&gt; On Sat, Apr 17, 2010 at 10:05 PM, Andreas Raab &lt;<a href="mailto:andreas.raab@gmx.de">andreas.raab@gmx.de</a>&gt; wrote:<br>
&gt;&gt; On behalf of the Squeak community, I&#39;m happy to announce the availability<br>
&gt;&gt; of<br>
&gt;&gt; Squeak 4.1.<br>
&gt;&gt;<br>
&gt;&gt; Squeak 4.1 combines the license change occurring in the 4.0 release with<br>
&gt;&gt; the<br>
&gt;&gt; development work that has been going on while the relicensing process took<br>
&gt;&gt; place.<br>
&gt;&gt;<br>
&gt;&gt; Much of the work in this release has been focused on fundamental<br>
&gt;&gt; improvements. Major achievements are the integration of Cog&#39;s closure<br>
&gt;&gt; implementation, the improved UI look and feel, the new anti-aliased fonts,<br>
&gt;&gt; the core library improvements, and the modularity advances.<br>
&gt;&gt;<br>
&gt;&gt; To download the Squeak 4.1 release please visit:<br>
&gt;&gt;<br>
&gt;&gt;        <a href="http://ftp.squeak.org/4.1" target="_blank">http://ftp.squeak.org/4.1</a><br>
&gt;&gt;<br>
&gt;&gt; The Website will be updated over the next few days to reflect the<br>
&gt;&gt; availability of Squeak 4.1.<br>
&gt;&gt;<br>
&gt;&gt; Enjoy!<br>
&gt;&gt;<br>
&gt;&gt;  - Andreas (on behalf of the Squeak community)<br>
&gt;&gt;<br>
&gt;&gt; Overview of Changes in Squeak 4.1<br>
&gt;&gt; =================================<br>
&gt;&gt;<br>
&gt;&gt; User Interface<br>
&gt;&gt; --------------<br>
&gt;&gt; We have adapted the &#39;face lift&#39; look originally developed for Newspeak.<br>
&gt;&gt; For<br>
&gt;&gt; those of us who like colored windows (quite a few as it turns out) you can<br>
&gt;&gt; switch between uniform and colored windows in the &#39;Extras&#39; menu under<br>
&gt;&gt; &#39;Window Colors&#39;.<br>
&gt;&gt;<br>
&gt;&gt; The new menu bar makes Squeak much easier to discover than before. The<br>
&gt;&gt; process of transitioning from the world menu is not complete yet, there<br>
&gt;&gt; are<br>
&gt;&gt; still items that can only be accessed from the world menu (i.e., by<br>
&gt;&gt; clicking<br>
&gt;&gt; on the desktop).<br>
&gt;&gt;<br>
&gt;&gt; The search field integrated in the menu bar allows for direct navigation<br>
&gt;&gt; to<br>
&gt;&gt; classes and methods - simply type in a partial class or method name and<br>
&gt;&gt; see<br>
&gt;&gt; what happens.<br>
&gt;&gt;<br>
&gt;&gt; A new set of inexpensive sub-pixel antialiased fonts derived from the<br>
&gt;&gt; DejaVu<br>
&gt;&gt; fonts (&#39;Bitmap DejaVu&#39; in the font chooser) has been added. True type font<br>
&gt;&gt; support has been upgraded to operate directly on files on disk without the<br>
&gt;&gt; need to load the entire file into memory.<br>
&gt;&gt;<br>
&gt;&gt; A new set of text editors has been added, which allowed us to decouple the<br>
&gt;&gt; Morphic and MVC implementations for improved modularity. Morphic now has<br>
&gt;&gt; regular blinking insertion point cursors instead of the (virtually<br>
&gt;&gt; invisible) static cursor previously.<br>
&gt;&gt;<br>
&gt;&gt; Compiler<br>
&gt;&gt; --------<br>
&gt;&gt; Squeak 4.1 includes the closure implementation from Cog as a prerequisite<br>
&gt;&gt; for full Cog adoption later. With this implementation Squeak finally has<br>
&gt;&gt; &#39;full&#39; closures, allowing classic recursive examples like the following to<br>
&gt;&gt; work:<br>
&gt;&gt;<br>
&gt;&gt;        fac := [:n| n &gt; 1 ifTrue:[n * (fac value: n-1)] ifFalse:[1]].<br>
&gt;&gt;        fac value: 5.<br>
&gt;&gt;<br>
&gt;&gt; Support for literal ByteArray syntax has been added. Byte arrays can now<br>
&gt;&gt; be<br>
&gt;&gt; written as #[1 2 3] instead of #(1 2 3) asByteArray  avoiding the need for<br>
&gt;&gt; conversion.<br>
&gt;&gt;<br>
&gt;&gt; Selectors including minus are now parsed correctly, for example 3 &lt;- 4 is<br>
&gt;&gt; now parsed as (3) &lt;- (4) instead of (3) &lt; (-4). White space is no longer<br>
&gt;&gt; allowed after an unary minus to denote a negative number literal.<br>
&gt;&gt;<br>
&gt;&gt; Development<br>
&gt;&gt; -----------<br>
&gt;&gt; Syntax highlighting, based on Shout, is now included in all Squeak tools<br>
&gt;&gt; by<br>
&gt;&gt; default. For workspaces, it can be explicitly disabled in the window menu<br>
&gt;&gt; (press the blue button; entry &#39;syntax highlighting&#39;).<br>
&gt;&gt;<br>
&gt;&gt; Sources and changes files are no longer limited to 32MB max size.<br>
&gt;&gt; ExpandedSourceFileArray provides an implementation for source files of<br>
&gt;&gt; arbitrary length, based on the CompiledMethodTrailer changes.<br>
&gt;&gt;<br>
&gt;&gt; MessageTrace has been added, allowing senders and implementors to be<br>
&gt;&gt; viewed<br>
&gt;&gt; without opening new windows all the time.  It utilizes a new<br>
&gt;&gt; AlternatePluggableListMorphOfMany, which allows quick and easy<br>
&gt;&gt; customization<br>
&gt;&gt; of the list. A quick adoption of DependencyBrowser has been added allowing<br>
&gt;&gt; to browse dependencies between packages.<br>
&gt;&gt;<br>
&gt;&gt; Core Libraries<br>
&gt;&gt; --------------<br>
&gt;&gt; Sets can now store nil just as any other collection. The collection<br>
&gt;&gt; hierachy<br>
&gt;&gt; has been refactored to have both Set and Dictionary a subclass of<br>
&gt;&gt; HashedCollection instead of having Dictionary a subclass of Set. Squeak<br>
&gt;&gt; now<br>
&gt;&gt; uses a better distributed scaledIdentityHash for identity sets and<br>
&gt;&gt; dictionaries.<br>
&gt;&gt;<br>
&gt;&gt; StandardFilestream now performs read-buffering, dramatically speading up<br>
&gt;&gt; some operations like &quot;Object compileAll&quot; (2x improvement) as well as<br>
&gt;&gt; various<br>
&gt;&gt; other operations (scanning change lists etc).<br>
&gt;&gt;<br>
&gt;&gt; A new traits implementation has been added. The implementation is<br>
&gt;&gt; significantly smaller and simpler than the old version and can be unloaded<br>
&gt;&gt; and reloaded without loss of information (i.e., traits flattened during<br>
&gt;&gt; unload are restored during traits reloading).<br>
&gt;&gt;<br>
&gt;&gt; A new extensible number parser hierharchy has been introduced NumberParser<br>
&gt;&gt; and its subclasses provide support for parsing and building numbers from<br>
&gt;&gt; strings and streams.<br>
&gt;&gt;<br>
&gt;&gt; A new general cleanup protocol has been added. The cleanUp protocol takes<br>
&gt;&gt; an<br>
&gt;&gt; optional argument to indicate whether we&#39;re doing an aggressive cleanup<br>
&gt;&gt; (which involves deleting projects, change sets, and possibly other<br>
&gt;&gt; destructive actions) or a more gentle cleanup that&#39;s only supposed to<br>
&gt;&gt; clean<br>
&gt;&gt; out transient caches.<br>
&gt;&gt;<br>
&gt;&gt; SystemDictionary and SmalltalkImage have been refactored. Smalltalk is now<br>
&gt;&gt; an instance of SmalltalkImage, representing a facade for system-wide<br>
&gt;&gt; queries<br>
&gt;&gt; and actions. SmalltalkImage contains a global environment, an instance of<br>
&gt;&gt; SystemDictionary, which the environment used by classes. Thus,<br>
&gt;&gt; SmalltalkImage current == Smalltalk, Object environment == Smalltalk<br>
&gt;&gt; globals.<br>
&gt;&gt;<br>
&gt;&gt; Modularity<br>
&gt;&gt; ----------<br>
&gt;&gt; The following packages have been made reloadable: ReleaseBuilder,<br>
&gt;&gt; ScriptLoader, 311Deprecated, 39Deprecated, Universes, SMLoader, SMBase,<br>
&gt;&gt; Installer-Core, VersionNumberTests, VersionNumber, Services-Base,<br>
&gt;&gt; PreferenceBrowser, Nebraska, CollectionsTests, GraphicsTests, KernelTests,<br>
&gt;&gt; MorphicTests, MultilingualTests, NetworkTests, ToolsTests, TraitsTests,<br>
&gt;&gt; XML-Parser, Traits, SystemChangeNotification-Tests, FlexibleVocabularies,<br>
&gt;&gt; EToys, Protocols, Tests, SUnitGUI. To unload all of these, execute:<br>
&gt;&gt;<br>
&gt;&gt;        Smalltalk unloadAllKnownPackages.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
<br>
</div></div></blockquote></div><br></div></div>