[squeak-dev] The Trunk: EToys-mt.473.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Apr 20 09:38:17 UTC 2022


Marcel Taeumel uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-mt.473.mcz

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

Name: EToys-mt.473
Author: mt
Time: 20 April 2022, 11:38:11.306902 am
UUID: a9dcae52-7253-9341-8dae-c13f183e13e2
Ancestors: EToys-tpr.472

Complements ToolBuilder-Kernel-mt.158

=============== Diff against EToys-tpr.472 ===============

Item was changed:
  ----- Method: SugarNavigatorBar>>doFindButtonMenuEvent: (in category 'the actions') -----
  doFindButtonMenuEvent: evt
  
  	| selection |
+ 	selection := Project uiManager chooseOptionFrom:{
- 	selection := UIManager default chooseFrom:{
  		'find a project' translated.
  		'find a project (more places)' translated.
  		'find any file' translated.
  		'find a file with some players and scripts only' translated.
  		'search the SuperSwiki' translated.
  	} values: { 
  		[self findAProjectSimple].
  		[self findAProject].
  		[self findAnything].
  		[self loadASexp].
  		[self findSomethingOnSuperSwiki].
  	} title: 'Find options' translated.
  	selection ifNil: [^self].
  	selection value.!

Item was changed:
  ----- Method: SugarNavigatorBar>>doPublishButtonMenuEvent: (in category 'the actions') -----
  doPublishButtonMenuEvent: evt
  
  	| selection |
+ 	selection := Project uiManager chooseOptionFrom: {
- 	selection := UIManager default chooseFrom: {
  		'Publish' translated.
  		'Publish As...' translated.
  		'Publish to Different Server' translated.
  		'Publish only the Players and their Scripts' translated.
  		 'edit project info' translated.
  	} values: {
  		[self publishProject].
  		[self publishProjectAs].
  		[self publishDifferent].
  		[self publishSexp].
  		[self editProjectInfo].
  	} title:  'Publish options' translated.
  	selection ifNil: [^self].
  	selection value.!



More information about the Squeak-dev mailing list