The Trunk: MonticelloConfigurations-fbs.109.mcz

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

The Trunk: MonticelloConfigurations-fbs.109.mcz

commits-2
Frank Shearar uploaded a new version of MonticelloConfigurations to project The Trunk:
http://source.squeak.org/trunk/MonticelloConfigurations-fbs.109.mcz

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

Name: MonticelloConfigurations-fbs.109
Author: fbs
Time: 22 April 2013, 8:38:04.214 pm
UUID: ed8757f9-a5be-446b-9a1c-1e379ed2e277
Ancestors: MonticelloConfigurations-fbs.108

Actually, #chooseFrom:values: is better: less to say.

=============== Diff against MonticelloConfigurations-fbs.108 ===============

Item was changed:
  ----- Method: MCConfigurationBrowser>>installMenu (in category 'actions') -----
  installMenu
  | action |
  action := UIManager default
  chooseFrom: #('load packages' 'merge packages' 'upgrade packages')
+ values: #(#load #merge #upgrade).
- values: #(#load #merge #upgrade)
- lines: #()
- title: ''.
  self halt.
  self perform: action.!

Item was changed:
  ----- Method: MCConfigurationBrowser>>updateMenu (in category 'actions') -----
  updateMenu
  | action |
  action := UIManager default
  chooseFrom: #('update all from image' 'update all from repositories')
+ values: #(#updateFromImage #updateFromRepositories).
- values: #(#updateFromImage #updateFromRepositories)
- lines: #()
- title: ''.
 
  self perform: action.!