Skip to content

Commit 7aa356b

Browse files
authored
Merge pull request #516 from treeform/guzba
5.0.3
2 parents a911e9d + c221284 commit 7aa356b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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

99
This library is being actively developed and we'd be happy for you to use it.
1010

pixie.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "5.0.2"
1+
version = "5.0.3"
22
author = "Andre von Houck and Ryan Oldenburg"
33
description = "Full-featured 2d graphics library for Nim."
44
license = "MIT"

src/pixie/fontformats/opentype.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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]

0 commit comments

Comments
 (0)