The Trunk: TrueType-tfel.44.mcz

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

The Trunk: TrueType-tfel.44.mcz

commits-2
Tim Felgentreff uploaded a new version of TrueType to project The Trunk:
http://source.squeak.org/trunk/TrueType-tfel.44.mcz

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

Name: TrueType-tfel.44
Author: tfel
Time: 2 August 2016, 10:05:53.988368 am
UUID: 4f4ae2de-5c0e-aa42-8cf2-237c73ad235c
Ancestors: TrueType-mt.43, TrueType-bf.7

merge from Squeakland Etoys image

=============== Diff against TrueType-mt.43 ===============

Item was changed:
+ ----- Method: TTFontDescription class>>removeDescriptionNamed:subfamilyName: (in category 'instance creations') -----
- ----- Method: TTFontDescription class>>removeDescriptionNamed:subfamilyName: (in category 'instance creation') -----
  removeDescriptionNamed: descriptionName subfamilyName: subfamilyName
 
  | tts |
  Descriptions ifNil: [^ self].
+ tts _ Descriptions select: [:f | f first name = descriptionName and: [f first subfamilyName = subfamilyName]].
- tts := Descriptions select: [:f | f name = descriptionName and: [f subfamilyName = subfamilyName]].
  tts do: [:f | Descriptions remove: f].
  !

Item was changed:
  ----- Method: TTFontDescription>>at: (in category 'accessing') -----
  at: aCharOrInteger
+ ^glyphTable at: (aCharOrInteger isCharacter ifTrue: [aCharOrInteger charCode] ifFalse: [aCharOrInteger])+1!
- ^glyphTable at: aCharOrInteger asInteger+1!

Item was changed:
  ----- Method: TTFontReader class>>serviceOpenTrueTypeFont (in category 'class initialization') -----
  serviceOpenTrueTypeFont
 
  ^ SimpleServiceEntry
  provider: self
+ label: 'open true type font' translatedNoop
- label: 'open true type font'
  selector: #openTTFFile:
+ description: 'open true type font' translatedNoop!
- description: 'open true type font'!