[Pkg] The Trunk: EToys-dtl.118.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Mar 30 14:04:02 UTC 2014


David T. Lewis uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-dtl.118.mcz

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

Name: EToys-dtl.118
Author: dtl
Time: 30 March 2014, 10:03:24.738 am
UUID: 2fb1d5fe-2477-4649-9b61-8d353f49bb2c
Ancestors: EToys-cmm.117

Utilities emptyScrapsBook is now ScrapBook current emptyScrapBook. Fix misspelling in references (emptyScrapBook not emptyScrapsBook). Retain deprecated Utilities emptyScrapsBook in case of references in external projects.

=============== Diff against EToys-cmm.117 ===============

Item was changed:
  ----- Method: TheWorldMenu>>scriptingMenu (in category '*Etoys') -----
  scriptingMenu
  	"Build the authoring-tools menu for the world."
  
  	^ self fillIn: (self menu: 'authoring tools...') from: { 
  		{ 'objects (o)' . { #myWorld . #activateObjectsTool }. 'A searchable source of new objects.'}.
  		nil.  "----------"
   		{ 'view trash contents' . { #myWorld . #openScrapsBook:}. 'The place where all your trashed morphs go.'}.
+  		{ 'empty trash can' . { ScrapBook default . #emptyScrapBook}. 'Empty out all the morphs that have accumulated in the trash can.'}.
-  		{ 'empty trash can' . { ScrapBook default . #emptyScrapsBook}. 'Empty out all the morphs that have accumulated in the trash can.'}.
  		nil.  "----------"		
  
  	{ 'new scripting area' . { #myWorld . #detachableScriptingSpace}. 'A window set up for simple scripting.'}.
  
  		nil.  "----------"		
  	
  		{ 'status of scripts' . {#myWorld . #showStatusOfAllScripts}. 'Lets you view the status of all the scripts belonging to all the scripted objects of the project.'}.
  		{ 'summary of scripts' . {#myWorld . #printScriptSummary}. 'Produces a summary of scripted objects in the project, and all of their scripts.'}.
  		{ 'browser for scripts' . {#myWorld . #browseAllScriptsTextually}. 'Allows you to view all the scripts in the project in a traditional programmers'' "browser" format'}.
  
  
  		nil.
  
  		{ 'gallery of players' . {#myWorld . #galleryOfPlayers}. 'A tool that lets you find out about all the players used in this project'}.
  
  "		{ 'gallery of scripts' . {#myWorld . #galleryOfScripts}. 'Allows you to view all the scripts in the project'}."
  
  		{ 'etoy vocabulary summary' . {#myWorld . #printVocabularySummary }. 'Displays a summary of all the pre-defined commands and properties in the pre-defined EToy vocabulary.'}.
  
  		{ 'attempt misc repairs' . {#myWorld . #attemptCleanup}. 'Take measures that may help fix up some things about a faulty or problematical project.'}.
  
  		{ 'remove all viewers' . {#myWorld . #removeAllViewers}. 'Remove all the Viewers from this project.'}.
  
  		{ 'refer to masters' . {#myWorld . #makeAllScriptEditorsReferToMasters }. 'Ensure that all script editors are referring to the first (alphabetically by external name) Player of their type' }.
  
  		nil.  "----------" 
  
  		{ 'unlock locked objects' . { #myWorld . #unlockContents}. 'If any items on the world desktop are currently locked, unlock them.'}.
  		{ 'unhide hidden objects' . { #myWorld . #showHiders}. 'If any items on the world desktop are currently hidden, make them visible.'}.
          }!



More information about the Packages mailing list