[squeak-dev] The Inbox: Morphic-kks.1457.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Jun 29 07:42:28 UTC 2018


A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/Morphic-kks.1457.mcz

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

Name: Morphic-kks.1457
Author: kks
Time: 29 June 2018, 1:12:02.649695 pm
UUID: 905772a5-e057-4c4e-8478-a59b7adbc433
Ancestors: Morphic-kfr.1456

Added a new item under Help menu in main docking bar to help new contributors

=============== Diff against Morphic-kfr.1456 ===============

Item was changed:
  ----- Method: TheWorldMainDockingBar class>>updateInstances (in category 'events') -----
  updateInstances
  	"The class has changed, time to update the instances"
+ 	"TheWorldMainDockingBar updateInstances"
+ 	
- 
  	self setTimeStamp.
  	Project current in: [:project |
  		project isMorphic ifTrue: [
  			project assureMainDockingBarPresenceMatchesPreference]].!

Item was changed:
  ----- Method: TheWorldMainDockingBar>>helpMenuOn: (in category 'submenu - help') -----
  helpMenuOn: aDockingBar
  
  	aDockingBar addItem: [ :it |
  		it	contents: 'Help' translated;
  			addSubMenu: [ :menu | 
  				menu addItem: [:item |
  						item
  							contents: 'Squeak Help' translated;
  							help: 'Integrated Help System' translated;
  							target: self;
  							selector: #squeakHelp].
  				
  				menu addLine.
  				
  				menu addItem:[:item|
  					item
  						contents: 'Online Resources' translated;
  						help: 'Online resources for Squeak' translated;
  						target: self;
  						icon: MenuIcons smallHelpIcon;
  						selector: #squeakOnlineResources].
  				menu addItem:[:item|
  					item
  						contents: 'Squeak Swiki' translated;
  						help: 'A very simple way to access Squeak Swiki resources in the image' translated;
  						target: self;
  						selector: #swiki].
  				menu addItem:[:item|
  					item
  						contents: 'Keyboard Shortcuts' translated;
  						help: 'Keyboard bindings used in Squeak' translated;
  						target: self;
  						selector: #commandKeyHelp ].
  				menu addItem:[:item|
  					item
  						contents: 'Font Size Summary' translated;
  						help: 'Font size summary.' translated;
  						target: self;
  						selector: #fontSizeSummary ].
  				menu addItem:[:item|
  					item
  						contents: 'Useful Expressions' translated;
  						help: 'Useful expressions' translated;
  						target: self;
  						selector: #usefulExpressions ].
  				menu addLine.
  				menu addItem:[:item|
  					item
  						contents: 'Terse Guide to Squeak' translated;
  						help: 'Concise information about language and environment' translated;
  						target: self;
  						selector: #terseGuideToSqueak].
  				menu addItem:[:item|
  					item
  						contents: 'Extending the system' translated;
  						help: 'Includes code snippets to evaluate for extending the system' translated;
  						target: self;
  						icon: MenuIcons smallHelpIcon;
  						selector: #extendingTheSystem].
+ 				menu addItem:[:item|
+ 					item
+ 						contents: 'How to Contribute to Squeak' translated;
+ 						help: 'Instructions for uploading changesets to improve and enhance Squeak' translated;
+ 						target: self;
+ 						selector: #squeakHowToContribute].
  				menu addLine.
  				
  			menu addItem:[:item|
  				item
  					contents: 'Release Notes' translated;
  					help: 'Changes in this release' translated ;
  					target: self;
  					selector: #releaseNotes].
  			menu addItem:[:item|
  				item
  					contents: 'Working With Squeak' translated;
  					help: 'Information for new users' ;
  					target: self;
  					selector: #workingWithSqueak].
  			menu addItem:[:item|
  				item
  					contents: 'The Squeak User Interface' translated;
  					help: 'Descriptions of some of the more-unusual UI elements in Squeak' ;
  					target: self;
  					selector: #squeakUserInterface].
  			menu addItem:[:item|
  				item
  					contents: 'License Information' translated;
  					help: String empty ;
  					target: self;
  					selector: #licenseInformation].				
  				
  		
  			menu addLine.
  			menu addItem: [:item |
  				item
  					contents: 'About Squeak' translated;
  					help: 'SystemReporter status of the image and runtime environment' translated;
  					target: self;
  					selector: #aboutSqueak].
  		]]!

Item was added:
+ ----- Method: TheWorldMainDockingBar>>squeakHowToContribute (in category 'submenu - help') -----
+ squeakHowToContribute
+ 	self
+ 		openHelp: #SqueakProjectHelp
+ 		topic: #squeakHowToContribute!



More information about the Squeak-dev mailing list