[squeak-dev] The Trunk: MonticelloConfigurations-mt.173.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Feb 9 12:58:02 UTC 2022


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

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

Name: MonticelloConfigurations-mt.173
Author: mt
Time: 9 February 2022, 1:58:01.933754 pm
UUID: 66fd0b8a-f8b5-a040-a892-766fc9cc8a41
Ancestors: MonticelloConfigurations-mt.172

Complements Monticello-mt.773

=============== Diff against MonticelloConfigurations-mt.172 ===============

Item was changed:
  ----- Method: MCConfigurationBrowser>>buttonSpecs (in category 'morphic ui') -----
  buttonSpecs
+ 	
+ 	^ #(
+ 		((button: ('Add' addDependency 'Add a dependency')))
+ 		((button: ('Update' updateMenu 'Update dependencies')))
+ 		((button: ('Install' installMenu 'Load/Merge/Upgrade into image')))
+ 		((button: ('Up' up 'Move item up in list' canMoveUp)))
+ 		((button: ('Down' down 'Move item down in list' canMoveDown)))
+ 		((button: ('Remove' remove 'Remove item' canRemove)))
+ 		((button: ('Save' store 'Store the configuration to a repository')))
+ 		((button: ('Versions' versions 'Show prior versions of this configuration')))
+ 	)!
- 	^ #(('Add' addDependency 'Add a dependency')
- 		('Update' updateMenu 'Update dependencies')
- 		('Install' installMenu 'Load/Merge/Upgrade into image')
- 		('Up' up 'Move item up in list' canMoveUp)
- 		('Down' down 'Move item down in list' canMoveDown)
- 		('Remove' remove 'Remove item' canRemove)
- 		('Save' store 'Store the configuration to a repository')
- 		('Versions' versions 'Show prior versions of this configuration')
- 		)!

Item was added:
+ ----- Method: MCConfigurationBrowser>>repositoryListHeight (in category 'morphic ui') -----
+ repositoryListHeight
+ 
+ 	^ ToolBuilder default listHeightFor: 3 "items"!

Item was added:
+ ----- Method: MCConfigurationBrowser>>repositoryListHeightNegated (in category 'morphic ui') -----
+ repositoryListHeightNegated
+ 
+ 	^ self repositoryListHeight negated!

Item was changed:
  ----- Method: MCConfigurationBrowser>>widgetSpecs (in category 'morphic ui') -----
  widgetSpecs
  	^ #(
  		((buttonRow) (0 0 1 0) (0 0 0 defaultButtonPaneHeight))
+ 		((listMorph:selection:menu: dependencyList dependencyIndex dependencyMenu:) (0 0 1 0.8) (0 defaultButtonPaneHeight 0 repositoryListHeightNegated))
+ 		((listMorph:selection:menu: repositoryList repositoryIndex repositoryMenu:) (0 0.8 1 0.8) (0 repositoryListHeightNegated 0 0))
+ 		((textMorph: description) (0 0.8 1 1) (0 0 0 0))
- 		((listMorph:selection:menu: dependencyList dependencyIndex dependencyMenu:) (0 0 1 1) (0 defaultButtonPaneHeight 0 -180))
- 		((listMorph:selection:menu: repositoryList repositoryIndex repositoryMenu:) (0 1 1 1) (0 -180 0 -120))
- 		((textMorph: description) (0 1 1 1) (0 -120 0 0))
  	 	)!



More information about the Squeak-dev mailing list