File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 44
55# Pixie - A full-featured 2D graphics library for Nim
66
7- Pixie is a 2D graphics library similar to [ Cairo] ( https://www.cairographics.org/ ) and [ Skia] ( https://skia.org ) written (almost) entirely in Nim.
7+ Pixie is a 2D graphics library similar to [ Cairo] ( https://www.cairographics.org/ ) and [ Skia] ( https://skia.org ) written entirely in Nim.
88
99This library is being actively developed and we'd be happy for you to use it.
1010
Original file line number Diff line number Diff line change 1- version = " 5.0.2 "
1+ version = " 5.0.3 "
22author = " Andre von Houck and Ryan Oldenburg"
33description = " Full-featured 2d graphics library for Nim."
44license = " MIT"
Original file line number Diff line number Diff line change @@ -2563,7 +2563,7 @@ proc parseOpenTypeCollection*(buf: string): seq[OpenType] {.raises: [PixieError]
25632563 minorVersion = buf.readUint16 (i + 6 ).swap ()
25642564 numFonts = buf.readUint32 (i + 8 ).swap ()
25652565
2566- if majorVersion notin {1 , 2 } and minorVersion != 0 :
2566+ if majorVersion notin {1 'u16 , 2 } and minorVersion != 0 :
25672567 failUnsupported (" ttc version" )
25682568
25692569 var tableDirectoryOffsets: seq [uint32 ]
You can’t perform that action at this time.
0 commit comments