[squeak-dev] The Inbox: Monticello-mva.648.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Feb 4 09:38:18 UTC 2017


A new version of Monticello was added to project The Inbox:
http://source.squeak.org/inbox/Monticello-mva.648.mcz

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

Name: Monticello-mva.648
Author: mva
Time: 4 February 2017, 10:37:54.334409 am
UUID: dab8a78a-3967-bb4a-9538-cbe96dd24769
Ancestors: Monticello-mt.647

fix 'order by filename'

=============== Diff against Monticello-mt.647 ===============

Item was changed:
  ----- Method: MCRepositoryInspector>>orderSpecs (in category 'morphic ui') -----
  orderSpecs
  	^{
  		'unchanged' -> nil.
  		'order by package' -> [ :x :y | x packageName < y packageName ].
  		'order by author' -> [ :x :y | x author caseInsensitiveLessOrEqual: y author ].
  		'order by version-string' -> [ :x :y | x versionNumber asString < y versionNumber asString ].
  		'order by version-number' -> [ :x :y | x versionNumber > y versionNumber ].
+ 		'order by filename' -> [ :x :y | x < y ].
- 		'order by filename' -> [ :x :y | x fileName < y fileName ].
  	}!



More information about the Squeak-dev mailing list