The Trunk: Monticello-cmm.677.mcz

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

The Trunk: Monticello-cmm.677.mcz

commits-2
Chris Muller uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-cmm.677.mcz

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

Name: Monticello-cmm.677
Author: cmm
Time: 19 January 2018, 4:12:47.280568 pm
UUID: 997351ed-1bc9-4251-a55a-038fa95a9187
Ancestors: Monticello-eem.676

Remove 'flush cached versions and ancestry' from the repository menu because it doesn't belong in the IDE, where development occurs.  It is only meant to called from application build scripts.

=============== Diff against Monticello-eem.676 ===============

Item was changed:
  ----- Method: MCWorkingCopyBrowser>>repositoryListMenu: (in category 'morphic ui') -----
  repositoryListMenu: aMenu
  "first add repository-specific commands"
  self repository ifNotNil:
  [ self
  fillMenu: aMenu
  fromSpecs:
  #(('open repository' #openRepository)
  ('edit repository info' #editRepository)
  ('add to package...' #addRepositoryToPackage)
  ('remove repository' #removeRepository)
  ('demote to bottom' #demoteRepository)
  ('copy image versions here' #copyImageVersions)).
  aMenu
  add:
  (self repository alwaysStoreDiffs
  ifTrue: ['store full versions']
  ifFalse: ['store diffs'])
  target: self
  selector: #toggleDiffs ;
  addLine ].
  "then the non-specific commands"
  ^self fillMenu: aMenu fromSpecs:
  #( ('load repositories' #loadRepositories)
  ('save repositories' #saveRepositories)
+ ('flush cached versions' #flushCachedVersions))!
- ('flush cached versions' #flushCachedVersions)
- ('flush cached versions and ancestry' #flushCachedVersionsAncestry))!