Chris Muller uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-cmm.619.mcz==================== Summary ====================
Name: Monticello-cmm.619
Author: cmm
Time: 19 October 2015, 4:48:48.311 pm
UUID: 3caf066d-c308-4b46-bb0b-af77f39ca3d2
Ancestors: Monticello-cmm.618
- Fixed hot-key for "copy reference (C)'.
- Let the MC save dialog tell me what package I'm saving in the window label bar, so I can find it in the window list.
- Since $R is now a global hot-key for browsing Recent Messages, change the hot key for "Refresh" in the MC Save dialog to (e).
=============== Diff against Monticello-cmm.618 ===============
Item was changed:
----- Method: MCCodeTool>>methodListKey:from: (in category 'menus') -----
methodListKey: aKeystroke from: aListMorph
aKeystroke caseOf: {
[$b] -> [self browseMethodFull].
[$h] -> [self classHierarchy].
[$p] -> [self browseFullProtocol].
[$o] -> [self fileOutMessage].
[$c] -> [self copySelector].
+ [$C] -> [self copyReference].
[$n] -> [self browseSendersOfMessages].
[$m] -> [self browseMessages].
[$i] -> [self methodHierarchy].
[$v] -> [self browseVersions]}
otherwise: []!
Item was changed:
----- Method: MCSaveVersionDialog>>defaultLabel (in category 'ui') -----
defaultLabel
+ ^ 'Edit Version Name and Message: ', self name!
- ^ 'Edit Version Name and Message:'!
Item was changed:
----- Method: MCSaveVersionDialog>>methodListKey:from: (in category 'menus') -----
methodListKey: aKeystroke from: aListMorph
aKeystroke caseOf: {
[$I] -> [self ignoreSelection].
+ [$e] -> [self refresh].
- [$R] -> [self refresh].
} otherwise: [super methodListKey: aKeystroke from: aListMorph ]!
Item was changed:
----- Method: MCSaveVersionDialog>>methodListMenu: (in category 'menus') -----
methodListMenu: aMenu
super methodListMenu: aMenu.
aMenu addList:#(-
('ignore (I)' ignoreSelection 'Toggle inclusion of this change when saving.')
+ ('refresh (e)' refresh 'Refresh the list of changes to this package.')).
- ('refresh (R)' refresh 'Refresh the list of changes to this package.')).
^aMenu!
Item was added:
+ ----- Method: MCSaveVersionDialog>>name (in category 'accessing') -----
+ name
+ ^ name!