The Trunk: Tools-topa.592.mcz

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

The Trunk: Tools-topa.592.mcz

commits-2
Tobias Pape uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-topa.592.mcz

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

Name: Tools-topa.592
Author: topa
Time: 15 April 2015, 4:53:52.024 pm
UUID: 047f479a-9d41-437f-91f6-3f244f266dfc
Ancestors: Tools-mt.591

Add conditional menu separator to default code pane menu

=============== Diff against Tools-mt.591 ===============

Item was changed:
  ----- Method: StringHolder class>>shiftedYellowButtonMenuItems (in category '*Tools-yellow button menu') -----
  shiftedYellowButtonMenuItems
  "Returns the standard yellow button menu items"
  | entries |
  entries := OrderedCollection withAll:
  {
+ #-.
  {'explain' translated. #explain}.
  {'pretty print' translated. #prettyPrint}.
  {'pretty print with color' translated. #prettyPrintWithColor}.
  {'file it in (G)' translated. #fileItIn}.
  {'spawn (o)' translated. #spawn}.
  #-.
  {'browse it (b)' translated. #browseIt}.
  {'senders of it (n)' translated. #sendersOfIt}.
  {'implementors of it (m)' translated. #implementorsOfIt}.
  {'references to it (N)' translated. #referencesToIt}.
  #-.
  {'selectors containing it (W)' translated. #methodNamesContainingIt}.
  {'method strings with it (E)' translated. #methodStringsContainingit}.
  {'method source with it' translated. #methodSourceContainingIt}.
  {'class names containing it' translated. #classNamesContainingIt}.
  {'class comments with it' translated. #classCommentsContainingIt}.
  {'change sets with it' translated. #browseChangeSetsWithSelector}.
  #-.
  {'save contents to file...' translated. #saveContentsInFile}.
  {'send contents to printer' translated. #sendContentsToPrinter}.
  {'printer setup' translated. #printerSetup}.
  #-.
  }.
  Smalltalk isMorphic ifFalse: [ entries add:
  {'special menu...' translated. #presentSpecialMenu}.].
  entries add:
  {'more...' translated. #yellowButtonActivity}.
  ^ entries!

Item was changed:
  ----- Method: StringHolder class>>yellowButtonMenuItems (in category '*Tools-yellow button menu') -----
  yellowButtonMenuItems
  "Returns the standard yellow button menu items"
  ^{
+ #-.
  {'set font... (k)' translated. #offerFontMenu}.
  {'set style... (K)' translated. #changeStyle}.
  {'set alignment... (u)' translated. #chooseAlignment}.
  #-.
  {'make project link (P)' translated. #makeProjectLink}.
  #-.
  {'find...(f)' translated. #find}.
  {'find again (g)' translated. #findAgain}.
  {'set search string (h)' translated. #setSearchString}.
  #-.
  {'do again (j)' translated. #again}.
  {'undo (z)' translated. #undo}.
  #-.
  {'copy (c)' translated. #copySelection}.
  {'cut (x)' translated. #cut}.
  {'paste (v)' translated. #paste}.
  {'paste...' translated. #pasteRecent}.
  #-.
  {'do it (d)' translated. #doIt}.    
  {'print it (p)' translated. #printIt}.    
  {'inspect it (i)' translated. #inspectIt}.    
  {'explore it (I)' translated. #exploreIt}.    
  {'debug it' translated. #debugIt}.    
  {'button for it' translated. #buttonForIt}.    
  {'tally it' translated. #tallyIt}.
  {'spy on it' translated. #spyOnIt}.
  #-.
  {'accept (s)' translated. #accept}.
  {'cancel (l)' translated. #cancel}.
  #-.
  {'show bytecodes' translated. #showBytecodes}.
  #-.
  {'copy html' translated. #copyHtml}.
  #-.
  {'more...' translated. #shiftedTextPaneMenuRequest}.
  }!