The Trunk: Morphic-ar.256.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Morphic-ar.256.mcz

commits-2
Andreas Raab uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-ar.256.mcz

==================== Summary ====================

Name: Morphic-ar.256
Author: ar
Time: 28 November 2009, 10:11:02 am
UUID: 8ee892cd-635e-f74f-aafb-4a9b277b423b
Ancestors: Morphic-kb.255

Some help menu options:
- Online resources
- Keyboard shortcuts

=============== Diff against Morphic-kb.255 ===============

Item was changed:
  ----- Method: TheWorldMainDockingBar class>>initialize (in category 'class initialization') -----
  initialize
  " self initialize "
 
  Locale addLocalChangedListener: self.
+ self updateInstances.!
- self updateInstances!

Item was added:
+ ----- Method: TheWorldMainDockingBar>>showSqueakResources (in category 'menu actions') -----
+ showSqueakResources
+ ^(StringHolder new contents:
+ 'Squeak web sites:
+ http://www.squeak.org        - The main Squeak site.
+ http://news.squeak.org        - The Weekly Squeak
+ http://board.squeak.org        - The Squeak Oversight Board
+ http://ftp.squeak.org        - Downloads for many Squeak versions.
+ http://squeakvm.org        - Development of the Squeak virtual machine
+
+ Squeak-dev - The main Squeak mailing list.
+ http://lists.squeakfoundation.org/mailman/listinfo/squeak-dev
+ http://dir.gmane.org/gmane.comp.lang.smalltalk.squeak.general
+ http://n4.nabble.com/Squeak-Dev-f45488.html
+
+ Squeak-Beginners - The place to ask even the most basic questions.
+ http://lists.squeakfoundation.org/mailman/listinfo/beginners
+ http://dir.gmane.org/gmane.comp.lang.smalltalk.squeak.beginners
+ http://n4.nabble.com/Squeak-Beginners-f107673.html
+
+ Squeak By Example:
+ http://www.squeakbyexample.org/
+
+ Squeak, Open Personal Computing and Multimedia (The NuBlue Book - Draft):
+ http://coweb.cc.gatech.edu/squeakbook/
+ http://stephane.ducasse.free.fr/FreeBooks/CollectiveNBlueBook/
+
+ Squeak, Open Personal Computing for Multimedia (The White Book - Draft):
+ http://www.cc.gatech.edu/~mark.guzdial/drafts/
+ http://stephane.ducasse.free.fr/FreeBooks/GuzdialBookDrafts/
+
+ More Books about Squeak and Smalltalk:
+ http://stephane.ducasse.free.fr/FreeBooks.html
+
+ ') openLabel: 'Squeak Online Resources'!

Item was changed:
  ----- Method: TheWorldMainDockingBar>>helpMenuOn: (in category 'construction') -----
  helpMenuOn: aDockingBar
 
+ aDockingBar addItem: [ :it |
+ it contents: 'Help' translated;
+ addSubMenu: [ :menu |  'Todo'.
+ menu addItem:[:item|
+ item
+ contents: 'Online Resources' translated;
+ help: 'Online resources for Squeak' translated;
+ target: self;
+ selector: #showSqueakResources ].
+ menu addItem:[:item|
+ item
+ contents: 'Keyboard Shortcuts' translated;
+ help: 'Keyboard bindings used in Squeak' translated;
+ target: Utilities;
+ selector: #openCommandKeyHelp ].
+ ]].!
- aDockingBar addItem: [ :item |
- item
- contents: 'Help' translated;
- help: 'Todo' ]!