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

David T. Lewis lewis at mail.msen.com
Sat Feb 4 15:51:07 UTC 2017


Good catch, kudos to mva (who are you?)

I merged in trunk and moved Monticello-mva.648 to the treated inbox.

The #fileName problem (there is no such method) was masked by an exception
handler elsewhere, so also I removed that exception handler to prevent similar
issues from going undetected.

Moral of the story: Don't use exception handlers to hide problems :-)

Dave


On Sat, Feb 04, 2017 at 09:38:18AM +0000, commits at source.squeak.org wrote:
> 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