<div dir="ltr">Restore the original version in order to leave the <a href="http://source.squeak.org">source.squeak.org</a> server in a consistent state.<br>This should finish the clean up after my mistake of republishing a different version with same name...<br>
Sorry for the noise...<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">2013/9/25  <span dir="ltr">&lt;<a href="mailto:commits@source.squeak.org" target="_blank">commits@source.squeak.org</a>&gt;</span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Nicolas Cellier uploaded a new version of Morphic to project The Trunk:<br>
<a href="http://source.squeak.org/trunk/Morphic-nice.683.mcz" target="_blank">http://source.squeak.org/trunk/Morphic-nice.683.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Morphic-nice.683<br>
Author: nice<br>
Time: 21 September 2013, 11:19:28.071 pm<br>
UUID: 881a99fa-1788-410b-b676-c648e1b662f2<br>
Ancestors: Morphic-cmm.682<br>
<br>
Update TheWorldMenu because soundEnablingString moved from Preferences to SoundServices.<br>
<br>
=============== Diff against Morphic-cmm.682 ===============<br>
<br>
Item was changed:<br>
  ----- Method: TheWorldMenu&gt;&gt;helpMenu (in category &#39;construction&#39;) -----<br>
  helpMenu<br>
          &quot;Build the help menu for the world.&quot;<br>
          |  menu |<br>
<br>
        menu := self menu: &#39;help...&#39;.<br>
<br>
          self fillIn: menu from:<br>
          {<br>
                  {&#39;about this system...&#39;. {Smalltalk. #aboutThisSystem}. &#39;current version information.&#39;}.<br>
                  {&#39;update code from server&#39;. {Utilities. #updateFromServer}. &#39;load latest code updates via the internet&#39;}.<br>
                  {&#39;preferences...&#39;. {self. #openPreferencesBrowser}. &#39;view and change various options.&#39;}.<br>
                         {&#39;set language...&#39; . {Project. #chooseNaturalLanguage}. &#39;choose the language in which tiles should be displayed.&#39;} .<br>
                  nil.<br>
                 {&#39;command-key help&#39;. { Utilities . #openCommandKeyHelp}. &#39;summary of keyboard shortcuts.&#39;}<br>
        }.<br>
<br>
        self addGestureHelpItemsTo: menu.<br>
<br>
        self fillIn: menu from:<br>
        {<br>
                  {&#39;world menu help&#39;. { self . #worldMenuHelp}. &#39;helps find menu items buried in submenus.&#39;}.<br>
                          &quot;{&#39;info about flaps&#39; . { Utilities . #explainFlaps}. &#39;describes how to enable and use flaps.&#39;}.&quot;<br>
                  {&#39;font size summary&#39; . { TextStyle . #fontSizeSummary}.  &#39;summary of names and sizes of available fonts.&#39;}.<br>
                  {&#39;useful expressions&#39; . { Utilities . #openStandardWorkspace}. &#39;a window full of useful expressions.&#39;}.<br>
                         {&#39;annotation setup...&#39; . { Preferences . #editAnnotations}. &#39;Click here to get a little window that will allow you to specify which types of annotations, in which order, you wish to see in the annotation panes of browsers and other tools&#39;}.<br>

                        nil.<br>
                  {&#39;graphical imports&#39; . { Imports default . #viewImages}.  &#39;view the global repository called ImageImports; you can easily import external graphics into ImageImports via the FileList&#39;}.<br>

                  {&#39;standard graphics library&#39; . { ScriptingSystem . #inspectFormDictionary}.  &#39;lets you view and change the system&#39;&#39;s standard library of graphics.&#39;}.<br>
                  nil.<br>
                  {&#39;telemorphic...&#39; . {self. #remoteDo}.  &#39;commands for doing multi-machine &quot;telemorphic&quot; experiments&#39;}.<br>
+                 {#soundEnablingString . { SoundService . #toggleSoundEnabled}. &#39;turning sound off will completely disable Squeak&#39;&#39;s use of sound.&#39;}.<br>
-                 {#soundEnablingString . { Preferences . #toggleSoundEnabling}. &#39;turning sound off will completely disable Squeak&#39;&#39;s use of sound.&#39;}.<br>
                  nil.<br>
<br>
                  {&#39;set author initials...&#39; . { Utilities . #setAuthorInitials }. &#39;supply initials to be used to identify the author of code and other content.&#39;}.<br>
                  {&#39;vm statistics&#39; . { self . #vmStatistics}.  &#39;obtain some intriguing data about the vm.&#39;}.<br>
                          nil.<br>
                          {&#39;purge undo records&#39; . { CommandHistory . #resetAllHistory }. &#39;save space by removing all the undo information remembered in all projects.&#39;}.<br>
                  {&#39;space left&#39; . { self . #garbageCollect}. &#39;perform a full garbage-collection and report how many bytes of space remain in the image.&#39;}.<br>
          }.<br>
<br>
        ^menu<br>
<br>
  !<br>
<br>
Item was changed:<br>
  ----- Method: TheWorldMenu&gt;&gt;soundEnablingString (in category &#39;action&#39;) -----<br>
  soundEnablingString<br>
<br>
+       ^ SoundService soundEnablingString!<br>
-       ^ Preferences soundEnablingString!<br>
<br>
<br>
</blockquote></div><br></div>