[squeak-dev] The Trunk: Monticello-bf.514.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jul 4 13:11:17 UTC 2012


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 ]!



More information about the Squeak-dev mailing list