Skip to content

Commit

Permalink
Release commit created with Cranko.
Browse files Browse the repository at this point in the history
+++ cranko-release-info-v1
[[projects]]
qnames = ["tectonic_xdv", "cargo"]
version = "0.1.9"
age = 6

[[projects]]
qnames = ["tectonic_cfg_support", "cargo"]
version = "0.1.0"
age = 5

[[projects]]
qnames = ["tectonic", "cargo"]
version = "0.1.17"
age = 0

+++
  • Loading branch information
cranko committed Oct 13, 2020
2 parents 0bef918 + 5777564 commit a1489cf
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 35 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# tectonic 0.1.17 (2020-10-13)

- Fix source-based installation by updating to cbindgen 0.15, after later
releases in the 0.14 series were yanked (@qtfkwk, #656)
- Fix unreachable code in the CID/Type0 code (@burrbull, @pkgw, #639, #646)
- Update the `cargo vcpkg` build process to use a newer version of `vcpkg`, fixing
Windows builds when msys2.org is unreliable (@pkgw).

# tectonic 0.1.16 (2020-10-02)

- Add a "plain" backend for reporting status, used when the program is not
Expand Down
67 changes: 37 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[package]
name = "tectonic"
version = "0.1.16"
version = "0.1.17"
authors = ["Peter Williams <[email protected]>"]
build = "build.rs"
description = """
Expand Down Expand Up @@ -40,13 +40,13 @@ regex = "^1.3"
sha2 = "^0.9"
tectonic_cfg_support = { path = "cfg_support", version ="^0.1.0"}
vcpkg = "0.2.10"
cbindgen = "0.14.4"
cbindgen = "0.15.0"

[dependencies]
app_dirs = { version = "2", package = "app_dirs2" }
atty = "0.2"
byte-unit = "^4.0"
cfg-if = "0.1"
cfg-if = "1.0"
structopt = "0.3"
error-chain = "^0.12"
flate2 = { version = "^1.0", default-features = false, features = ["zlib"] }
Expand Down Expand Up @@ -87,7 +87,7 @@ tokio = "0.1.22"

[package.metadata.vcpkg]
git = "https://github.com/microsoft/vcpkg"
rev = "ff1d20fd9a72d72d51a549c27b669cd6040fb7d9"
rev = "76a7e9248fb3c57350b559966dcaa2d52a5e4458"

[package.metadata.vcpkg.target]
x86_64-apple-darwin = { install = ["freetype","harfbuzz[icu,graphite2]"] }
Expand Down
2 changes: 1 addition & 1 deletion tectonic/dpx-cidtype0.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ add_CIDVMetrics (sfnt *sfont, pdf_obj *fontdict,
vertOriginX = PDFUNIT(hmtx[gid].advance*0.5);
vertOriginY = defaultVertOriginY;
for (i = 0;
i < vorg->numVertOriginYMetrics && gid > vorg->vertOriginYMetrics[i].glyphIndex;
i < vorg->numVertOriginYMetrics && gid >= vorg->vertOriginYMetrics[i].glyphIndex;
i++) {
if (gid == vorg->vertOriginYMetrics[i].glyphIndex)
vertOriginY = PDFUNIT(vorg->vertOriginYMetrics[i].vertOriginY);
Expand Down

0 comments on commit a1489cf

Please sign in to comment.