The Trunk: Monticello-bf.514.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-bf.514.mcz

commits-2
Bert Freudenberg uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-bf.514.mcz

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

Name: Monticello-bf.514
Author: bf
Time: 4 July 2012, 3:10:44.029 pm
UUID: 8f2597f4-6c93-48c4-8864-a2b438331c13
Ancestors: Monticello-abc.513

Be a little less strict again about parsing version numbers. And use my real initials, not 'abc', which was left set by the broken MC test suite.

=============== Diff against Monticello-abc.513 ===============

Item was changed:
  ----- Method: MCVersionName>>versionNumber (in category 'accessing') -----
  versionNumber
  "The Integer version number identified by this filename."
  | v |
  v := (self versionName copyAfterLast: $-) copyAfter: $..
+ ^(v notEmpty and: [v first isDigit])
- ^v isAllDigits
  ifTrue: [ v asInteger ]
  ifFalse: [ 0 ]!