laag-harfbuzz 1.7.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +57 -0
- data/LICENSE.txt +36 -0
- data/README.org +34 -0
- data/ext/laag/harfbuzz/extconf.rb +16 -0
- data/laag-harfbuzz.gemspec +20 -0
- data/lib/laag/harfbuzz.rb +29 -0
- data/vendor/github.com/harfbuzz/harfbuzz/.ci/deploy-docs.sh +36 -0
- data/vendor/github.com/harfbuzz/harfbuzz/.ci/fail.sh +18 -0
- data/vendor/github.com/harfbuzz/harfbuzz/.ci/run-coveralls.sh +14 -0
- data/vendor/github.com/harfbuzz/harfbuzz/.ci/trigger-coverity.sh +11 -0
- data/vendor/github.com/harfbuzz/harfbuzz/.circleci/config.yml +190 -0
- data/vendor/github.com/harfbuzz/harfbuzz/.editorconfig +18 -0
- data/vendor/github.com/harfbuzz/harfbuzz/.travis.yml +89 -0
- data/vendor/github.com/harfbuzz/harfbuzz/AUTHORS +9 -0
- data/vendor/github.com/harfbuzz/harfbuzz/BUILD.md +50 -0
- data/vendor/github.com/harfbuzz/harfbuzz/CMakeLists.txt +848 -0
- data/vendor/github.com/harfbuzz/harfbuzz/COPYING +36 -0
- data/vendor/github.com/harfbuzz/harfbuzz/Makefile.am +85 -0
- data/vendor/github.com/harfbuzz/harfbuzz/NEWS +1832 -0
- data/vendor/github.com/harfbuzz/harfbuzz/README +16 -0
- data/vendor/github.com/harfbuzz/harfbuzz/README.md +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/README.python +30 -0
- data/vendor/github.com/harfbuzz/harfbuzz/RELEASING.md +99 -0
- data/vendor/github.com/harfbuzz/harfbuzz/THANKS +7 -0
- data/vendor/github.com/harfbuzz/harfbuzz/TODO +42 -0
- data/vendor/github.com/harfbuzz/harfbuzz/appveyor.yml +61 -0
- data/vendor/github.com/harfbuzz/harfbuzz/autogen.sh +48 -0
- data/vendor/github.com/harfbuzz/harfbuzz/configure.ac +542 -0
- data/vendor/github.com/harfbuzz/harfbuzz/docs/HarfBuzz.png +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/docs/HarfBuzz.svg +277 -0
- data/vendor/github.com/harfbuzz/harfbuzz/docs/Makefile.am +123 -0
- data/vendor/github.com/harfbuzz/harfbuzz/docs/harfbuzz-docs.xml +210 -0
- data/vendor/github.com/harfbuzz/harfbuzz/docs/harfbuzz-overrides.txt +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/docs/harfbuzz-sections.txt +627 -0
- data/vendor/github.com/harfbuzz/harfbuzz/docs/usermanual-buffers-language-script-and-direction.xml +77 -0
- data/vendor/github.com/harfbuzz/harfbuzz/docs/usermanual-clusters.xml +304 -0
- data/vendor/github.com/harfbuzz/harfbuzz/docs/usermanual-fonts-and-faces.xml +18 -0
- data/vendor/github.com/harfbuzz/harfbuzz/docs/usermanual-glyph-information.xml +8 -0
- data/vendor/github.com/harfbuzz/harfbuzz/docs/usermanual-hello-harfbuzz.xml +183 -0
- data/vendor/github.com/harfbuzz/harfbuzz/docs/usermanual-install-harfbuzz.xml +70 -0
- data/vendor/github.com/harfbuzz/harfbuzz/docs/usermanual-opentype-features.xml +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/docs/usermanual-what-is-harfbuzz.xml +115 -0
- data/vendor/github.com/harfbuzz/harfbuzz/docs/version.xml.in +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/git.mk +400 -0
- data/vendor/github.com/harfbuzz/harfbuzz/harfbuzz.doap +24 -0
- data/vendor/github.com/harfbuzz/harfbuzz/m4/ax_code_coverage.m4 +264 -0
- data/vendor/github.com/harfbuzz/harfbuzz/m4/ax_cxx_compile_stdcxx.m4 +982 -0
- data/vendor/github.com/harfbuzz/harfbuzz/m4/ax_pthread.m4 +485 -0
- data/vendor/github.com/harfbuzz/harfbuzz/m4/pkg.m4 +157 -0
- data/vendor/github.com/harfbuzz/harfbuzz/mingw32.sh +22 -0
- data/vendor/github.com/harfbuzz/harfbuzz/mingw64.sh +22 -0
- data/vendor/github.com/harfbuzz/harfbuzz/replace-enum-strings.cmake +21 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/Makefile.am +445 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/Makefile.sources +214 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/check-c-linkage-decls.sh +27 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/check-externs.sh +22 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/check-header-guards.sh +24 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/check-includes.sh +44 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/check-libstdc++.sh +44 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/check-static-inits.sh +40 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/check-symbols.sh +62 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/dev-run.sh +98 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/dump-indic-data.cc +43 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/dump-khmer-data.cc +43 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/dump-myanmar-data.cc +43 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/dump-use-data.cc +38 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/gen-arabic-table.py +269 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/gen-def.py +19 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/gen-indic-table.py +260 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/gen-unicode-ranges.py +52 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/gen-use-table.py +484 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/harfbuzz-config.cmake.in +82 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/harfbuzz-gobject.pc.in +12 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/harfbuzz-icu.pc.in +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/harfbuzz-subset.pc.in +12 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/harfbuzz.pc.in +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-aat-layout-ankr-table.hh +80 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-aat-layout-common-private.hh +728 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-aat-layout-kerx-table.hh +339 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-aat-layout-morx-table.hh +728 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-aat-layout-private.hh +43 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-aat-layout-trak-table.hh +201 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-aat-layout.cc +143 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-atomic-private.hh +189 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-blob.cc +504 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-blob.h +129 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-buffer-deserialize-json.hh +643 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-buffer-deserialize-json.rl +132 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-buffer-deserialize-text.hh +571 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-buffer-deserialize-text.rl +126 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-buffer-private.hh +388 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-buffer-serialize.cc +486 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-buffer.cc +2010 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-buffer.h +562 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-common.cc +1050 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-common.h +397 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-coretext.cc +1401 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-coretext.h +64 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-debug.hh +444 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-deprecated.h +65 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-directwrite.cc +931 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-directwrite.h +38 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-dsalgs.hh +161 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-face-private.hh +111 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-face.cc +506 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-face.h +121 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-fallback-shape.cc +149 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-font-private.hh +561 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-font.cc +1846 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-font.h +641 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ft.cc +783 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ft.h +132 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-glib.cc +431 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-glib.h +56 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-gobject-enums.cc.tmpl +73 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-gobject-enums.h.tmpl +56 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-gobject-structs.cc +83 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-gobject-structs.h +138 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-gobject.h +40 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-graphite2.cc +421 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-graphite2.h +52 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-icu.cc +394 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-icu.h +52 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-mutex-private.hh +141 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-object-private.hh +196 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-open-file-private.hh +372 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-open-type-private.hh +1238 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-cmap-table.hh +789 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-color-cbdt-table.hh +471 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-color-colr-table.hh +142 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-color-cpal-table.hh +208 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-color.cc +183 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-font.cc +281 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-font.h +45 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-glyf-table.hh +473 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-hdmx-table.hh +198 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-head-table.hh +154 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-hhea-table.hh +98 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-hmtx-table.hh +328 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-kern-table.hh +394 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout-base-table.hh +655 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout-common-private.hh +1773 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout-gdef-table.hh +459 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout-gpos-table.hh +1654 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout-gsub-table.hh +1364 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout-gsubgpos-private.hh +2374 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout-jstf-table.hh +234 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout-private.hh +683 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout.cc +1313 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout.h +338 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-map-private.hh +250 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-map.cc +336 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-math-table.hh +722 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-math.cc +253 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-math.h +209 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-maxp-table.hh +148 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-name-table.hh +138 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-os2-table.hh +181 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-os2-unicode-ranges.hh +247 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-post-macroman.hh +294 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-post-table.hh +282 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-arabic-fallback.hh +354 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-arabic-private.hh +50 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-arabic-table.hh +398 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-arabic-win1256.hh +323 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-arabic.cc +721 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-default.cc +46 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-hangul.cc +431 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-hebrew.cc +186 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-indic-machine.hh +1319 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-indic-machine.rl +125 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-indic-private.hh +401 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-indic-table.cc +486 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-indic.cc +1569 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-khmer-machine.hh +294 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-khmer-machine.rl +107 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-khmer-private.hh +124 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-khmer.cc +835 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-myanmar-machine.hh +413 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-myanmar-machine.rl +129 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-myanmar-private.hh +171 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-myanmar.cc +401 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-private.hh +397 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-thai.cc +383 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-tibetan.cc +63 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-use-machine.hh +502 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-use-machine.rl +176 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-use-private.hh +97 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-use-table.cc +788 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-use.cc +612 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-fallback-private.hh +53 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-fallback.cc +559 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-normalize-private.hh +69 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-normalize.cc +433 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-private.hh +108 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape.cc +970 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape.h +53 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-tag.cc +1094 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-tag.h +59 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-var-avar-table.hh +149 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-var-fvar-table.hh +209 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-var-hvar-table.hh +165 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-var-mvar-table.hh +114 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-var.cc +159 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-var.h +105 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot.h +45 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-private.hh +1073 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-set-digest-private.hh +179 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-set-private.hh +658 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-set.cc +519 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-set.h +165 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shape-plan-private.hh +67 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shape-plan.cc +578 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shape-plan.h +108 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shape.cc +161 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shape.h +62 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shaper-impl-private.hh +43 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shaper-list.hh +58 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shaper-private.hh +124 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shaper.cc +111 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-string-array.hh +81 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-subset-glyf.cc +307 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-subset-glyf.hh +40 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-subset-input.cc +119 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-subset-plan.cc +227 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-subset-plan.hh +85 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-subset-private.hh +62 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-subset.cc +339 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-subset.h +83 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ucdn.cc +273 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ucdn/COPYING +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ucdn/Makefile.am +16 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ucdn/Makefile.sources +7 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ucdn/README +40 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ucdn/ucdn.c +360 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ucdn/ucdn.h +453 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ucdn/ucdn_db.h +5540 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-unicode-private.hh +371 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-unicode.cc +563 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-unicode.h +471 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-uniscribe.cc +1039 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-uniscribe.h +46 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-utf-private.hh +282 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-version.h +66 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-version.h.in +66 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb-warning.cc +39 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/hb.h +51 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/main.cc +201 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/sample.py +78 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/test-buffer-serialize.cc +129 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/test-size-params.cc +94 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/test-unicode-ranges.cc +67 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/test-would-substitute.cc +104 -0
- data/vendor/github.com/harfbuzz/harfbuzz/src/test.cc +134 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/CMakeLists.txt +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/Makefile.am +15 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/.valgrind-suppressions +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/CMakeLists.txt +29 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/Makefile.am +169 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Inconsolata-Regular.ab.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Inconsolata-Regular.abc.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Inconsolata-Regular.abc.widerc.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Inconsolata-Regular.ac.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Inconsolata-Regular.ac.widerc.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/MathTestFontEmpty.otf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/MathTestFontFull.otf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/MathTestFontNone.otf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/MathTestFontPartial1.otf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/MathTestFontPartial2.otf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/MathTestFontPartial3.otf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/MathTestFontPartial4.otf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/README +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.abc.cmap-format12-only.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.abc.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.ac.cmap-format12-only.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.ac.nohints.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.ac.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.b.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.components.1fc.nohints.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.components.subset.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.components.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/hb-subset-test.h +136 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/hb-test.h +314 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-blob.c +349 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-buffer.c +884 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-c.c +64 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-common.c +225 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-cplusplus.cc +30 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-font.c +550 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-object.c +375 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-ot-color.c +319 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-ot-math.c +712 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-ot-tag.c +320 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-set.c +399 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-shape.c +208 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-subset-cmap.c +82 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-subset-glyf.c +183 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-subset-hdmx.c +81 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-subset-hmtx.c +162 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-subset-os2.c +59 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-unicode.c +937 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-version.c +81 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/fuzzing/CMakeLists.txt +18 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/fuzzing/Makefile.am +52 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/fuzzing/README +21 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/fuzzing/hb-fuzzer.cc +52 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/fuzzing/hb-fuzzer.hh +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/fuzzing/main.cc +21 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/fuzzing/run-fuzzer-tests.py +32 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/CMakeLists.txt +17 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/Makefile.am +35 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/README.md +41 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/Makefile.am +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/COPYING +95 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/Makefile.am +20 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/Makefile.sources +47 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/0509e80afb379d16560e9e47bdd7d888bebdebc6.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/051d92f8bc6ff724511b296c27623f824de256e9.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/074a5ae6b19de8f29772fdd5df2d3d833f81f5e6.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/07f054357ff8638bac3711b422a1e31180bba863.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/15dfc433a135a658b9f4b1a861b5cdd9658ccbb9.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/1735326da89f0818cd8c51a0600e9789812c0f94.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/191826b9643e3f124d865d617ae609db6a2ce203.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/1a3d8f381387dd29be1e897e4b5100ac8b4829e1.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/1a6f1687b7a221f9f2c834b0b360d3c8463b6daf.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/1c04a16f32a39c26c851b7fc014d2e8d298ba2b8.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/1c2c3fc37b2d4c3cb2ef726c6cdaaabd4b7f3eb9.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/1c2fb74c1b2aa173262734c1f616148f1648cfd6.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/1ed7e9064f008f62de6ff0207bb4dd29409597a5.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/205edd09bd3d141cc9580f650109556cc28b22cb.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/217a934cfe15c548b572c203dceb2befdf026462.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/21b7fb9c1eeae260473809fbc1fe330f66a507cd.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/226bc2deab3846f1a682085f70c67d0421014144.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/233c1e252e737ca79e03a9fd56b71aaa4a230f2b.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/243798dd281c1c77c065958e1ff467420faa9bde.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/24b8d24d00ae86f49791b746da4c9d3f717a51a8.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/270b89df543a7e48e206a2d830c0e10e5265c630.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/298c9e1d955f10f6f72c6915c3c6ff9bf9695cec.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/2de1ab4907ab688c0cfc236b0bf51151db38bf2e.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/319f5d7ebffbefc5c5e6569f8cea73444d7a7268.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/341421e629668b1a1242245d39238ca48432d35d.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/3493e92eaded2661cadde752a39f9d58b11f0326.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/3511ff5c1647150595846ac414c595cccac34f18.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/37033cc5cf37bb223d7355153016b6ccece93b28.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/373e67bf41ca264e260a9716162b71a23549e885.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/375d6ae32a3cbe52fbf81a4e5777e3377675d5a3.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/3cae6bfe5b57c07ba81ddbd54c02fe4f3a1e3bf6.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/3d0b77a2360aa6faa1385aaa510509ab70dfbeff.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/43979b90b2dd929723cf4fe1715990bcb9c9a56b.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/43ef465752be9af900745f72fe29cb853a1401a5.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/45855bc8d46332b39c4ab9e2ee1a26b1f896da6b.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/49c9f7485c1392fa09a1b801bc2ffea79275f22e.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/4cce528e99f600ed9c25a2b69e32eb94a03b4ae8.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/4fac3929fc3332834e93673780ec0fe94342d193.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/5028afb650b1bb718ed2131e872fbcce57828fff.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/53374c7ca3657be37efde7ed02ae34229a56ae1f.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/54674a3111d209fb6be0ed31745314b7a8d2c244.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/558661aa659912f4d30ecd27bd09835171a8e2b0.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/55c88ebbe938680b08f92c3de20713183e0c7481.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/56cfd0e18d07f41c38e9598545a6d369127fc6f9.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/573d3a3177c9a8646e94c8a0d7b224334340946a.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/57a9d9f83020155cbb1d2be1f43d82388cbecc88.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/59a585a63b3df608fbeef00956c8c108deec7de6.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/5a5daf5eb5a4db77a2baa3ad9c7a6ed6e0655fa8.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/5dfad7735c6a67085f1b90d4d497e32907db4c78.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/641bd9db850193064d17575053ae2bf8ec149ddc.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/663aef6b019dbf45ffd74089e2b5f2496ceceb18.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/6991b13ce889466be6de3f66e891de2bc0f117ee.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/6ff0fbead4462d9f229167b4e6839eceb8465058.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/706c5d7b625f207bc0d874c67237aad6f1e9cd6f.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/757ebd573617a24aa9dfbf0b885c54875c6fe06b.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/7a37dc4d5bf018456aea291cee06daf004c0221c.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/7e14e7883ed152baa158b80e207b66114c823a8b.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/8099955657a54e9ee38a6ba1d6f950ce58e3cc25.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/813c2f8e5512187fd982417a7fb4286728e6f4a8.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/81c368a33816fb20e9f647e8f24e2180f4720263.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/8228d035fcd65d62ec9728fb34f42c63be93a5d3.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/8240789f6d12d4cfc4b5e8e6f246c3701bcf861f.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/82f4f3b57bb55344e72e70231380202a52af5805.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/8454d22037f892e76614e1645d066689a0200e61.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/85414f2552b654585b7a8d13dcc3e8fd9f7970a3.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/856ff9562451293cbeff6f396d4e3877c4f0a436.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/85fe0be440c64ac77699e21c2f1bd933a919167e.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/87f85d17d26f1fe9ad28d7365101958edaefb967.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/8a9fea2a7384f2116e5b84a9b31f83be7850ce21.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/94a5d6fb15a27521fba9ea4aee9cb39b2d03322a.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/96490dd2ff81233b335a650e7eb660e0e7b2eeea.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/98b7887cff91f722b92a8ff800120954606354f9.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/9d8a94a67932a3ab75a596fc8b5c6d0392ca9e49.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/a014549f766436cf55b2ceb40e462038938ee899.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/a02a7f0ad42c2922cb37ad1358c9df4eb81f1bca.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/a34a7b00f22ffb5fd7eef6933b81c7e71bc2cdfb.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/a34a9191d9376bda419836effeef7e75c1386016.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/a69118c2c2ada48ff803d9149daa54c9ebdae30e.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/a6c76d1bafde4a0b1026ebcc932d2e5c6fd02442.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/a919b33197965846f21074b24e30250d67277bce.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/a98e908e2ed21b22228ea59ebcc0f05034c86f2e.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/af3086380b743099c54a3b11b96766039ea62fcd.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/b151cfcdaa77585d77f17a42158e0873fc8e2633.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/b6acef662e0beb8d5fcf5b61c6b0ca69537b7402.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/b9e2aaa0d75fcef6971ec3a96d806ba4a6b31fe2.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/bb0c53752e85c3d28973ebc913287b8987d3dfe8.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/bb29ce50df2bdba2d10726427c6b7609bf460e04.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/bb9473d2403488714043bcfb946c9f78b86ad627.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/bbf4a308c402f0678c3e82844892a4da2ebe598f.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/bf39b0e91ef9807f15a9e283a21a14a209fd2cfc.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/bf962d3202883a820aed019d9b5c1838c2ff69c6.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/c4e48b0886ef460f532fb49f00047ec92c432ec0.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/cc5f3d2d717fb6bd4dfae1c16d48a2cb8e12233b.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/d23d76ea0909c14972796937ba072b5a40c1e257.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/d629e7fedc0b350222d7987345fe61613fa3929a.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/d9b8bc10985f24796826c29f7ccba3d0ae11ec02.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/dd9f0c7c7c36f75a18be0cab1cddf8f3ab0f366b.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/df768b9c257e0c9c35786c47cae15c46571d56be.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/e207635780b42f898d58654b65098763e340f5c7.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/e68a88939e0f06e34d2bc911f09b70890289c8fd.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/e88c339237f52d21e01c55f01b9c1b4cc14a0467.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/e90374e5e439e00725b4fe7a8d73db57c5a97f82.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/ee39587d13b2afa5499cc79e45780aa79293bbd4.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/ef2511f215aa3ca847cbfffbf861793b42170875.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/ef86fe710cfea877bbe0dbb6946a1f88d0661031.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/f22416c692720a7d46fadf4af99f4c9e094f00b9.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/f443753e8ffe8e8aae606cfba158e00334b6efb1.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/f499fbc23865022234775c43503bba2e63978fe1.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/f518eb6f6b5eec2946c9fbbbde44e45d46f5e2ac.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/f9b1dd4dcb515e757789a22cb4241107746fd3d0.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/fab39d60d758cb586db5a504f218442cd1395725.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/fbb6c84c9e1fe0c39e152fbe845e51fd81f6748e.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/fcdcffbdf1c4c97c05308d7600e4c283eb47dbca.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/ffa0f5d2d9025486d8469d8b1fdd983e7632499b.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/arabic-fallback-shaping.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/arabic-feature-order.tests +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/arabic-like-joining.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/arabic-mark-order.tests +6 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/arabic-stch.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/automatic-fractions.tests +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/cluster.tests +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/color-fonts.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/context-matching.tests +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/cursive-positioning.tests +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/default-ignorables.tests +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/emoji-flag-tags.tests +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/fallback-positioning.tests +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/fuzzed.tests +23 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/hangul-jamo.tests +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/hyphens.tests +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-consonant-with-stacker.tests +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-init.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-joiner-candrabindu.tests +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-joiners.tests +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-old-spec.tests +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-pref-blocking.tests +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-script-extensions.tests +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-special-cases.tests +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-syllable.tests +8 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/language-tags.tests +12 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/ligature-id.tests +36 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/mark-attachment.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/mark-filtering-sets.tests +5 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/mongolian-variation-selector.tests +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/myanmar-syllable.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/simple.tests +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/spaces.tests +17 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/tibetan-contractions-1.tests +60 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/tibetan-contractions-2.tests +53 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/tibetan-vowels.tests +11 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/use-marchen.tests +35 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/use-syllable.tests +8 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/use.tests +5 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/variations-rvrn.tests +100 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/vertical.tests +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/zero-width-marks.tests +11 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/COPYING +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/DISABLED +35 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/Makefile.am +26 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/Makefile.sources +66 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/README +7 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/extract-tests.py +49 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/AdobeVFPrototype-Subset.otf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/FDArrayTest257.otf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/FDArrayTest65535.otf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/NotoSansBalinese-Regular.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/NotoSansKannada-Regular.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/NotoSerifKannada-Regular.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/Selawik-README.md +60 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/Selawik-variable.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestAVAR.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestCMAP14.otf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestCMAPMacTurkish.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestCVARGVAROne.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestCVARGVARTwo.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGLYFOne.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGPOSFour.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGPOSOne.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGPOSThree.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGPOSTwo.otf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGSUBOne.otf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGVAREight.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGVARFour.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGVARNine.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGVAROne.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGVARThree.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGVARTwo.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestHVAROne.otf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestHVARTwo.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestKERNOne.otf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXEight.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXEighteen.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXEleven.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXFour.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXFourteen.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXNine.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXOne.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXSeventeen.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXSixteen.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTen.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXThirteen.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXThree.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTwelve.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTwenty.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTwentyfive.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTwentyone.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTwentysix.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTwentythree.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTwentytwo.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTwo.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestShapeAran.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestShapeEthi.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/Zycon.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/AVAR-1.tests +17 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/CFF-1.tests +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/CFF-2.tests +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/CFF2-1.tests +9 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/CMAP-1.tests +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/CMAP-2.tests +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/CMAP-3.tests +20 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/CVAR-1.tests +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/CVAR-2.tests +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GLYF-1.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GPOS-1.tests +19 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GPOS-2.tests +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GPOS-3.tests +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GPOS-4.tests +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GPOS-5.tests +5 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GSUB-1.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GSUB-2.tests +11 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-1.tests +9 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-2.tests +9 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-3.tests +9 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-4.tests +11 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-5.tests +11 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-6.tests +11 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-7.tests +7 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-8.tests +6 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-9.tests +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/HVAR-1.tests +6 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/HVAR-2.tests +6 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/KERN-1.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/KERN-2.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-1.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-10.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-11.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-12.tests +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-13.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-14.tests +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-16.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-17.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-18.tests +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-19.tests +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-2.tests +16 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-20.tests +7 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-21.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-22.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-23.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-25.tests +9 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-26.tests +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-3.tests +16 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-4.tests +15 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-5.tests +25 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-6.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-7.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-8.tests +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-9.tests +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/SHARAN-1.tests +6 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/SHBALI-1.tests +22 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/SHBALI-2.tests +12 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/SHBALI-3.tests +9 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/SHKNDA-1.tests +34 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/SHKNDA-2.tests +16 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/SHKNDA-3.tests +31 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/update.sh +46 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/hb-diff +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/hb-diff-colorize +7 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/hb-diff-filter-failures +5 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/hb-diff-stat +5 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/hb-unicode-decode +5 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/hb-unicode-encode +5 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/hb-unicode-prettyname +6 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/hb_test_tools.py +571 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/record-test.sh +107 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/run-tests.py +98 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-persian/mehran.txt +8 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/2grams.txt +601 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/3grams.txt +3415 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/4grams.txt +6316 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/5grams.txt +5029 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/6grams.txt +1542 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/7grams.txt +354 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/8grams.txt +26 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/LICENSE +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/README +16 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/SOURCES +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/misc/diacritics/lam-alef.txt +28 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/misc/diacritics/language-arabic.txt +695 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/misc/diacritics/language-persian.txt +48 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/misc/diacritics/language-urdu.txt +188 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/misc/diacritics/ligature-components.txt +18 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/misc/diacritics/ligature-diacritics.txt +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/misc/diacritics/mark-skipping.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-mongolian/misc/misc.txt +6 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-mongolian/misc/non-joining.txt +8 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-mongolian/misc/poem.txt +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-mongolian/misc/variation-selectors.txt +8 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-nko/misc/misc.txt +5 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-phags-pa/misc/misc.txt +14 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-syriac/misc/abbreviation-mark.txt +11 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-syriac/misc/alaph.txt +98 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-default/script-ethiopic/misc/misc.txt +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-default/script-han/misc/cjk-compat.txt +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-default/script-hiragana/misc/kazuraki-liga-lines.txt +8 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-default/script-hiragana/misc/kazuraki-liga.txt +53 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-default/script-linear-b/misc/misc.txt +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-default/script-tifinagh/misc/misc.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-hangul/script-hangul/misc/misc.txt +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-hebrew/script-hebrew/misc/diacritics.txt +16 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/LICENSE +19 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/README +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/SOURCES +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalVowels.txt +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +40 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +11 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +6 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/gpos/IndicFontFeatureGPOS-AboveBase.txt +59 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/gpos/IndicFontFeatureGPOS-BelowBase.txt +131 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/gsub/IndicFontFeatureGSUB.txt +139 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/misc/misc.txt +53 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/misc/reph.txt +14 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/LICENSE +19 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/README +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/SOURCES +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalVowels.txt +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +36 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +12 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +6 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/gpos/IndicFontFeatureGPOS-AboveBase.txt +58 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/gpos/IndicFontFeatureGPOS-BelowBase.txt +119 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/gsub/IndicFontFeatureGSUB.txt +215 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/misc/dottedcircle.txt +8 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/misc/eyelash.txt +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/misc/joiners.txt +19 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/misc/misc.txt +36 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/misc/spec-deviations.txt +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/misc/tricky-reordering.txt +5 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/LICENSE +19 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/README +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/SOURCES +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalConsonants.txt +8 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalVowels.txt +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +45 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +14 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-DevnagariSpecificAddition.txt +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-GenericPunctuation.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +16 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/gpos/IndicFontFeatureGPOS-AboveBase.txt +185 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/gpos/IndicFontFeatureGPOS-BelowBase.txt +185 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/gsub/IndicFontFeatureGSUB.txt +1367 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/LICENSE +19 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/README +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/SOURCES +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalVowels.txt +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +34 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +12 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +7 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/gpos/IndicFontFeatureGPOS-AboveBase.txt +170 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/gpos/IndicFontFeatureGPOS-BelowBase.txt +170 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/gsub/IndicFontFeatureGSUB.txt +1156 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/misc/misc.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/LICENSE +19 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/README +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/SOURCES +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +38 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +9 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/codepoint/IndicFontFeatureCodepoint-GurmukhiSpecific.txt +6 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +6 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/gpos/IndicFontFeatureGPOS-AboveBase.txt +22 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/gpos/IndicFontFeatureGPOS-BelowBase.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/gsub/IndicFontFeatureGSUB.txt +152 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/misc/misc.txt +20 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/misc/right-matras.txt +7 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/LICENSE +19 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/README +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/SOURCES +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalConsonants.txt +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalVowels.txt +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +40 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +14 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +9 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/gpos/IndicFontFeatureGPOS-AboveBase.txt +188 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/gsub/IndicFontFeatureGSUB.txt +306 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/misc/cibu.txt +188 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/misc/dot-reph.txt +15 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/misc/misc.txt +65 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/LICENSE +19 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/README +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/SOURCES +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalVowels.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +36 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +12 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +14 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/gsub/IndicFontFeatureGSUB.txt +254 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/misc/bindu.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/misc/misc.txt +28 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/LICENSE +19 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/README +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/SOURCES +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalConsonants.txt +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalVowels.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +34 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +12 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +12 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-OriyaSpecific.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +8 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/gsub/IndicFontFeatureGSUB.txt +170 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/misc/extensive.txt +4390 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/misc/misc.txt +41 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/misc/reph.txt +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/misc/split-matras.txt +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/LICENSE +19 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/README +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/SOURCES +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +41 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +17 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +18 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/codepoint/IndicFontFeatureCodepoint-Punctuation.txt +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/gpos/IndicFontFeatureGPOS.txt +162 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/gsub/IndicFontFeatureGSUB-Conjunct.txt +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/gsub/IndicFontFeatureGSUB-Rakaaraansaya.txt +41 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/gsub/IndicFontFeatureGSUB-Repaya.txt +42 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/gsub/IndicFontFeatureGSUB-Special-Cases.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/gsub/IndicFontFeatureGSUB-TouchingLetters.txt +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/gsub/IndicFontFeatureGSUB-Yansaya.txt +41 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/gsub/IndicFontFeatureGSUB.txt +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/misc/misc.txt +43 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/LICENSE +19 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/README +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/SOURCES +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +23 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-CurrencySymbols.txt +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +11 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +12 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-Numerics.txt +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-Symbols.txt +6 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-TamilSymbol.txt +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/gpos/IndicFontFeatureGPOS-AboveBase.txt +64 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/gpos/IndicFontFeatureGPOS-BelowBase.txt +44 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/gsub/IndicFontFeatureGSUB.txt +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/misc/misc.txt +12 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/LICENSE +19 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/README +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/SOURCES +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalVowels.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +38 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +14 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +6 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/gpos/IndicFontFeatureGPOS-AboveBase.txt +385 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/gsub/IndicFontFeatureGSUB.txt +287 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/south-east-asian/script-javanese/misc.txt +54 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/south-east-asian/script-khmer/misc/misc.txt +23 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/south-east-asian/script-khmer/misc/other-marks-invalid.txt +4 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/south-east-asian/script-khmer/misc/other-marks.txt +7 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-myanmar/script-myanmar/misc/misc.txt +7 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-myanmar/script-myanmar/misc/otspec.txt +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-myanmar/script-myanmar/misc/utn11.txt +34 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-thai/script-lao/misc/sara-am.txt +20 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-thai/script-thai/misc/misc.txt +11 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-thai/script-thai/misc/phinthu.txt +16 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-thai/script-thai/misc/pua-shaping.txt +11 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-thai/script-thai/misc/sara-am.txt +20 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-tibetan/script-tibetan/misc/contractions.txt +612 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-tibetan/script-tibetan/misc/misc.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-use/script-batak/misc.txt +9 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-use/script-buginese/misc.txt +70 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-use/script-cham/misc.txt +3 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-use/script-kaithi/misc.txt +6 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-use/script-kharoshti/misc.txt +36 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-use/script-tai-tham/misc.txt +2 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-use/script-tai-tham/torture.txt +23 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/CMakeLists.txt +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/Makefile.am +22 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/Makefile.am +24 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/Makefile.sources +10 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.default.61,62,63.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.default.61,63.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.default.61.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.default.62.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.default.63.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.drop-hints.61,62,63.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.drop-hints.61,63.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.drop-hints.61.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.drop-hints.62.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.drop-hints.63.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/full-font/Roboto-Regular.default.1FC,21,41,20,62,63.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/full-font/Roboto-Regular.default.61,62,63.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/full-font/Roboto-Regular.drop-hints.1FC,21,41,20,62,63.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/full-font/Roboto-Regular.drop-hints.61,62,63.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/fonts/Roboto-Regular.abc.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/fonts/Roboto-Regular.ttf +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/profiles/default.txt +0 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/profiles/drop-hints.txt +1 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/tests/basics.tests +13 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/tests/full-font.tests +11 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/generate-expected-outputs.py +47 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/run-tests.py +133 -0
- data/vendor/github.com/harfbuzz/harfbuzz/test/subset/subset_test_suite.py +87 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/Makefile.am +75 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/Makefile.sources +37 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/ansi-print.cc +427 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/ansi-print.hh +40 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/hb-fc-list.c +222 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/hb-fc.cc +149 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/hb-fc.h +46 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/hb-ot-shape-closure.cc +119 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/hb-shape.cc +165 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/hb-subset.cc +127 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/hb-view.cc +40 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/helper-cairo-ansi.cc +102 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/helper-cairo-ansi.hh +40 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/helper-cairo.cc +553 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/helper-cairo.hh +86 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/main-font-text.hh +96 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/options.cc +1026 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/options.hh +690 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/shape-consumer.hh +101 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/view-cairo.cc +133 -0
- data/vendor/github.com/harfbuzz/harfbuzz/util/view-cairo.hh +102 -0
- metadata +939 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
HarfBuzz is licensed under the so-called "Old MIT" license. Details follow.
|
|
2
|
+
For parts of HarfBuzz that are licensed under different licenses see individual
|
|
3
|
+
files names COPYING in subdirectories where applicable.
|
|
4
|
+
|
|
5
|
+
Copyright © 2010,2011,2012 Google, Inc.
|
|
6
|
+
Copyright © 2012 Mozilla Foundation
|
|
7
|
+
Copyright © 2011 Codethink Limited
|
|
8
|
+
Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies)
|
|
9
|
+
Copyright © 2009 Keith Stribley
|
|
10
|
+
Copyright © 2009 Martin Hosken and SIL International
|
|
11
|
+
Copyright © 2007 Chris Wilson
|
|
12
|
+
Copyright © 2006 Behdad Esfahbod
|
|
13
|
+
Copyright © 2005 David Turner
|
|
14
|
+
Copyright © 2004,2007,2008,2009,2010 Red Hat, Inc.
|
|
15
|
+
Copyright © 1998-2004 David Turner and Werner Lemberg
|
|
16
|
+
|
|
17
|
+
For full copyright notices consult the individual files in the package.
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
Permission is hereby granted, without written agreement and without
|
|
21
|
+
license or royalty fees, to use, copy, modify, and distribute this
|
|
22
|
+
software and its documentation for any purpose, provided that the
|
|
23
|
+
above copyright notice and the following two paragraphs appear in
|
|
24
|
+
all copies of this software.
|
|
25
|
+
|
|
26
|
+
IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
27
|
+
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
28
|
+
ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
29
|
+
IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
30
|
+
DAMAGE.
|
|
31
|
+
|
|
32
|
+
THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
33
|
+
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
34
|
+
FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
35
|
+
ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
36
|
+
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# Process this file with automake to produce Makefile.in
|
|
2
|
+
|
|
3
|
+
NULL =
|
|
4
|
+
|
|
5
|
+
ACLOCAL_AMFLAGS = -I m4
|
|
6
|
+
|
|
7
|
+
SUBDIRS = src util test docs
|
|
8
|
+
|
|
9
|
+
EXTRA_DIST = \
|
|
10
|
+
autogen.sh \
|
|
11
|
+
harfbuzz.doap \
|
|
12
|
+
README.python \
|
|
13
|
+
BUILD.md \
|
|
14
|
+
RELEASING.md \
|
|
15
|
+
CMakeLists.txt \
|
|
16
|
+
replace-enum-strings.cmake \
|
|
17
|
+
$(NULL)
|
|
18
|
+
|
|
19
|
+
MAINTAINERCLEANFILES = \
|
|
20
|
+
$(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \
|
|
21
|
+
$(GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL) \
|
|
22
|
+
$(GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN) \
|
|
23
|
+
$(srcdir)/INSTALL \
|
|
24
|
+
$(srcdir)/ChangeLog \
|
|
25
|
+
$(srcdir)/gtk-doc.make \
|
|
26
|
+
$(srcdir)/m4/gtk-doc.m4 \
|
|
27
|
+
$(NULL)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
#
|
|
31
|
+
# ChangeLog generation
|
|
32
|
+
#
|
|
33
|
+
CHANGELOG_RANGE =
|
|
34
|
+
ChangeLog: $(srcdir)/ChangeLog
|
|
35
|
+
$(srcdir)/ChangeLog:
|
|
36
|
+
$(AM_V_GEN) if test -d "$(top_srcdir)/.git"; then \
|
|
37
|
+
(GIT_DIR=$(top_srcdir)/.git \
|
|
38
|
+
$(GIT) log $(CHANGELOG_RANGE) --stat) | fmt --split-only > $@.tmp \
|
|
39
|
+
&& mv -f $@.tmp "$(srcdir)/ChangeLog" \
|
|
40
|
+
|| ($(RM) $@.tmp; \
|
|
41
|
+
echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
|
|
42
|
+
(test -f $@ || echo git-log is required to generate this file >> "$(srcdir)/$@")); \
|
|
43
|
+
else \
|
|
44
|
+
test -f $@ || \
|
|
45
|
+
(echo A git checkout and git-log is required to generate ChangeLog >&2 && \
|
|
46
|
+
echo A git checkout and git-log is required to generate this file >> "$(srcdir)/$@"); \
|
|
47
|
+
fi
|
|
48
|
+
.PHONY: ChangeLog $(srcdir)/ChangeLog
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
#
|
|
52
|
+
# Release engineering
|
|
53
|
+
#
|
|
54
|
+
|
|
55
|
+
DISTCHECK_CONFIGURE_FLAGS = \
|
|
56
|
+
--enable-gtk-doc \
|
|
57
|
+
--disable-doc-cross-references \
|
|
58
|
+
--with-gobject \
|
|
59
|
+
--enable-introspection \
|
|
60
|
+
$(NULL)
|
|
61
|
+
|
|
62
|
+
# TODO: Copy infrastructure from cairo
|
|
63
|
+
|
|
64
|
+
# TAR_OPTIONS is not set as env var for 'make dist'. How to fix that?
|
|
65
|
+
TAR_OPTIONS = --owner=0 --group=0
|
|
66
|
+
|
|
67
|
+
dist-hook: dist-clear-sticky-bits
|
|
68
|
+
# Clean up any sticky bits we may inherit from parent dir
|
|
69
|
+
dist-clear-sticky-bits:
|
|
70
|
+
chmod -R a-s $(distdir)
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
tar_file = $(PACKAGE_TARNAME)-$(VERSION).tar.bz2
|
|
74
|
+
sha256_file = $(tar_file).sha256
|
|
75
|
+
gpg_file = $(sha256_file).asc
|
|
76
|
+
$(sha256_file): $(tar_file)
|
|
77
|
+
sha256sum $^ > $@
|
|
78
|
+
$(gpg_file): $(sha256_file)
|
|
79
|
+
@echo "Please enter your GPG password to sign the checksum."
|
|
80
|
+
gpg --armor --sign $^
|
|
81
|
+
|
|
82
|
+
release-files: $(tar_file) $(sha256_file) $(gpg_file)
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
-include $(top_srcdir)/git.mk
|
|
@@ -0,0 +1,1832 @@
|
|
|
1
|
+
Overview of changes leading to 1.7.6
|
|
2
|
+
Wednesday, March 7, 2018
|
|
3
|
+
====================================
|
|
4
|
+
|
|
5
|
+
- Fix to hb_set_t binary operations. Ouch.
|
|
6
|
+
- New experimental harfbuzz-subset library. All of hb-subset.h
|
|
7
|
+
is experimental right now and API WILL change.
|
|
8
|
+
|
|
9
|
+
- New API:
|
|
10
|
+
hb_blob_copy_writable_or_fail()
|
|
11
|
+
HB_OT_TAG_BASE
|
|
12
|
+
hb_set_previous()
|
|
13
|
+
hb_set_previous_range()
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
Overview of changes leading to 1.7.5
|
|
17
|
+
Tuesday, January 30, 2018
|
|
18
|
+
====================================
|
|
19
|
+
|
|
20
|
+
- Separate Khmer shaper from Indic.
|
|
21
|
+
- First stab at AAT morx. Not hooked up.
|
|
22
|
+
- Misc bug fixes.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
Overview of changes leading to 1.7.4
|
|
26
|
+
Wednesday, December 20, 2017
|
|
27
|
+
====================================
|
|
28
|
+
|
|
29
|
+
- Fix collect_glyphs() regression caused by hb_set_t changes.
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
Overview of changes leading to 1.7.3
|
|
33
|
+
Monday, December 18, 2017
|
|
34
|
+
====================================
|
|
35
|
+
|
|
36
|
+
- hb_set_t performance tuning and optimizations.
|
|
37
|
+
- Speed up collect_glyphs() and reject garbage data.
|
|
38
|
+
- In hb_coretext_font_create() set font point-size (ptem).
|
|
39
|
+
- Misc fixes.
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
Overview of changes leading to 1.7.2
|
|
43
|
+
Monday, December 4, 2017
|
|
44
|
+
====================================
|
|
45
|
+
|
|
46
|
+
- Optimize hb_set_add_range().
|
|
47
|
+
- Misc fixes.
|
|
48
|
+
- New API:
|
|
49
|
+
hb_coretext_font_create()
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
Overview of changes leading to 1.7.1
|
|
53
|
+
Tuesday, November 14, 2017
|
|
54
|
+
====================================
|
|
55
|
+
|
|
56
|
+
- Fix atexit object destruction regression.
|
|
57
|
+
- Fix minor integer-overflow.
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
Overview of changes leading to 1.7.0
|
|
61
|
+
Monday, November 13, 2017
|
|
62
|
+
====================================
|
|
63
|
+
|
|
64
|
+
- Minor Indic fixes.
|
|
65
|
+
- Implement kerning and glyph names in hb-ot-font.
|
|
66
|
+
- Various DSO optimization re .data and .bss sizes.
|
|
67
|
+
- Make C++11 optional; build fixes.
|
|
68
|
+
- Mark all other backends "unsafe-to-break".
|
|
69
|
+
- Graphite fix.
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
Overview of changes leading to 1.6.3
|
|
73
|
+
Thursday, October 26th, 2017
|
|
74
|
+
====================================
|
|
75
|
+
|
|
76
|
+
- Fix hb_set_t some more. Should be solid now.
|
|
77
|
+
- Implement get_glyph_name() for hb-ot-font.
|
|
78
|
+
- Misc fixes.
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
Overview of changes leading to 1.6.2
|
|
82
|
+
Monday, October 23nd, 2017
|
|
83
|
+
====================================
|
|
84
|
+
|
|
85
|
+
- Yesterday's release had a bad crasher; don't use it. That's what
|
|
86
|
+
happens when one works on Sunday...
|
|
87
|
+
https://github.com/harfbuzz/harfbuzz/issues/578
|
|
88
|
+
- Build fixes for FreeBSD and Chrome Android.
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
Overview of changes leading to 1.6.1
|
|
92
|
+
Sunday, October 22nd, 2017
|
|
93
|
+
====================================
|
|
94
|
+
|
|
95
|
+
- Don't skip over COMBINING GRAPHEME JOINER when ligating, etc.
|
|
96
|
+
To be refined: https://github.com/harfbuzz/harfbuzz/issues/554
|
|
97
|
+
- Faster hb_set_t implementation.
|
|
98
|
+
- Don't use deprecated ICU API.
|
|
99
|
+
- Fix undefined-behavior in Myanmar shaper, introduced in 1.6.0
|
|
100
|
+
- Deprecated API:
|
|
101
|
+
hb_set_invert()
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
Overview of changes leading to 1.6.0
|
|
105
|
+
Friday, October the 13th, 2017
|
|
106
|
+
====================================
|
|
107
|
+
|
|
108
|
+
- Update to Unicode 10.
|
|
109
|
+
|
|
110
|
+
- Various Indic and Universal Shaping Engine fixes as a result of
|
|
111
|
+
HarfBuzz Hackfest with Jonathan Kew at Web Engines Hackfest at
|
|
112
|
+
the Igalia offices in A Coruña, Spain. Thanks Igalia for having
|
|
113
|
+
us!
|
|
114
|
+
|
|
115
|
+
- Implement Unicode Arabic Mark Ordering Algorithm UTR#53.
|
|
116
|
+
|
|
117
|
+
- Implement optical sizing / tracking in CoreText backend, using
|
|
118
|
+
new API hb_font_set_ptem().
|
|
119
|
+
|
|
120
|
+
- Allow notifying hb_font_t that underlying FT_Face changed sizing,
|
|
121
|
+
using new API hb_ft_font_changed().
|
|
122
|
+
|
|
123
|
+
- More Graphite backend RTL fixes.
|
|
124
|
+
|
|
125
|
+
- Fix caching of variable font shaping plans.
|
|
126
|
+
|
|
127
|
+
- hb-view / hb-shape now accept following new arguments:
|
|
128
|
+
|
|
129
|
+
o --unicodes: takes a list of hex numbers that represent Unicode
|
|
130
|
+
codepoints.
|
|
131
|
+
|
|
132
|
+
New API:
|
|
133
|
+
+hb_face_get_table_tags()
|
|
134
|
+
+hb_font_set_ptem()
|
|
135
|
+
+hb_font_get_ptem()
|
|
136
|
+
+hb_ft_font_changed()
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
Overview of changes leading to 1.5.1
|
|
140
|
+
Tuesday, September 5, 2017
|
|
141
|
+
====================================
|
|
142
|
+
|
|
143
|
+
- Fix "unsafe-to-break" in fallback shaping and other corner cases.
|
|
144
|
+
All our tests pass with --verify now, meaning unsafe-to-break API
|
|
145
|
+
works as expected.
|
|
146
|
+
- Add --unicodes to hb-view / hb-shape.
|
|
147
|
+
- [indic] Treat Consonant_With_Stacker as consonant. This will need
|
|
148
|
+
further tweaking.
|
|
149
|
+
- hb_buffer_diff() tweaks.
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
Overview of changes leading to 1.5.0
|
|
153
|
+
Wednesday, August 23, 2017
|
|
154
|
+
====================================
|
|
155
|
+
|
|
156
|
+
- Misc new API, for appending a buffer to another, and for comparing
|
|
157
|
+
contents of two buffers for types of differences.
|
|
158
|
+
|
|
159
|
+
- New "unsafe-to-break" API. Can be used to speed up reshaping
|
|
160
|
+
in line-breaking situations. Essentially, after shaping, it returns
|
|
161
|
+
positions in the input string (some of the cluster boundaries) that
|
|
162
|
+
are "safe to break" in that if the text is segmented at that position
|
|
163
|
+
and two sides reshaped and concatenated, the shaping result is
|
|
164
|
+
exactly the same as shaping the text in one piece.
|
|
165
|
+
|
|
166
|
+
hb-view and hb-shape and hb-shape now take --verify, which verifies
|
|
167
|
+
the above property.
|
|
168
|
+
|
|
169
|
+
Some corner cases of the implementation are still not quite working.
|
|
170
|
+
Those will be fixed in subsequent releases.
|
|
171
|
+
|
|
172
|
+
- New API:
|
|
173
|
+
|
|
174
|
+
hb_buffer_append()
|
|
175
|
+
|
|
176
|
+
hb_glyph_flags_t
|
|
177
|
+
HB_GLYPH_FLAG_UNSAFE_TO_BREAK
|
|
178
|
+
HB_GLYPH_FLAG_DEFINED
|
|
179
|
+
hb_glyph_info_get_glyph_flags()
|
|
180
|
+
|
|
181
|
+
HB_BUFFER_SERIALIZE_FLAG_GLYPH_FLAGS
|
|
182
|
+
|
|
183
|
+
hb_buffer_diff_flags_t
|
|
184
|
+
HB_BUFFER_DIFF_FLAG_EQUAL
|
|
185
|
+
HB_BUFFER_DIFF_FLAG_CONTENT_TYPE_MISMATCH
|
|
186
|
+
HB_BUFFER_DIFF_FLAG_LENGTH_MISMATCH
|
|
187
|
+
HB_BUFFER_DIFF_FLAG_NOTDEF_PRESENT
|
|
188
|
+
HB_BUFFER_DIFF_FLAG_DOTTED_CIRCLE_PRESENT
|
|
189
|
+
HB_BUFFER_DIFF_FLAG_CODEPOINT_MISMATCH
|
|
190
|
+
HB_BUFFER_DIFF_FLAG_CLUSTER_MISMATCH
|
|
191
|
+
HB_BUFFER_DIFF_FLAG_GLYPH_FLAGS_MISMATCH
|
|
192
|
+
HB_BUFFER_DIFF_FLAG_POSITION_MISMATCH
|
|
193
|
+
hb_buffer_diff
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
Overview of changes leading to 1.4.8
|
|
197
|
+
Tuesday, August 8, 2017
|
|
198
|
+
====================================
|
|
199
|
+
|
|
200
|
+
- Major fix to avar table handling.
|
|
201
|
+
- Rename hb-shape --show-message to --trace.
|
|
202
|
+
- Build fixes.
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
Overview of changes leading to 1.4.7
|
|
206
|
+
Tuesday, July 18, 2017
|
|
207
|
+
====================================
|
|
208
|
+
|
|
209
|
+
- Multiple Indic, Tibetan, and Cham fixes.
|
|
210
|
+
- CoreText: Allow disabling kerning.
|
|
211
|
+
- Adjust Arabic feature order again.
|
|
212
|
+
- Misc build fixes.
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
Overview of changes leading to 1.4.6
|
|
216
|
+
Sunday, April 23, 2017
|
|
217
|
+
====================================
|
|
218
|
+
|
|
219
|
+
- Graphite2: Fix RTL positioning issue.
|
|
220
|
+
- Backlist GDEF of more versions of Padauk and Tahoma.
|
|
221
|
+
- New, experimental, cmake alternative build system.
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
Overview of changes leading to 1.4.5
|
|
225
|
+
Friday, March 10, 2017
|
|
226
|
+
====================================
|
|
227
|
+
|
|
228
|
+
- Revert "Fix Context lookup application when moving back after a glyph..."
|
|
229
|
+
This introduced memory access problems. To be fixed properly soon.
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
Overview of changes leading to 1.4.4
|
|
233
|
+
Sunday, March 5, 2017
|
|
234
|
+
====================================
|
|
235
|
+
|
|
236
|
+
- Fix Context lookup application when moving back after a glyph deletion.
|
|
237
|
+
- Fix buffer-overrun in Bengali.
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
Overview of changes leading to 1.4.3
|
|
241
|
+
Saturday, February 25, 2017
|
|
242
|
+
====================================
|
|
243
|
+
|
|
244
|
+
- Route Adlam script to Arabic shaper.
|
|
245
|
+
- Misc fixes.
|
|
246
|
+
- New API:
|
|
247
|
+
hb_font_set_face()
|
|
248
|
+
- Deprecate API:
|
|
249
|
+
hb_graphite2_font_get_gr_font()
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
Overview of changes leading to 1.4.2
|
|
253
|
+
Monday, January 23, 2017
|
|
254
|
+
====================================
|
|
255
|
+
|
|
256
|
+
- Implement OpenType Font Variation tables avar/fvar/HVAR/VVAR.
|
|
257
|
+
- hb-shape and hb-view now accept --variations.
|
|
258
|
+
- New API:
|
|
259
|
+
|
|
260
|
+
hb_variation_t
|
|
261
|
+
hb_variation_from_string()
|
|
262
|
+
hb_variation_to_string()
|
|
263
|
+
|
|
264
|
+
hb_font_set_variations()
|
|
265
|
+
hb_font_set_var_coords_design()
|
|
266
|
+
hb_font_get_var_coords_normalized()
|
|
267
|
+
|
|
268
|
+
hb-ot-var.h:
|
|
269
|
+
hb_ot_var_axis_t
|
|
270
|
+
hb_ot_var_has_data()
|
|
271
|
+
hb_ot_var_get_axis_count()
|
|
272
|
+
hb_ot_var_get_axes()
|
|
273
|
+
hb_ot_var_find_axis()
|
|
274
|
+
hb_ot_var_normalize_variations()
|
|
275
|
+
hb_ot_var_normalize_coords()
|
|
276
|
+
|
|
277
|
+
- MVAR to be implemented later. Access to named instances to be
|
|
278
|
+
implemented later as well.
|
|
279
|
+
|
|
280
|
+
- Misc fixes.
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
Overview of changes leading to 1.4.1
|
|
284
|
+
Thursday, January 5, 2017
|
|
285
|
+
====================================
|
|
286
|
+
|
|
287
|
+
- Always build and use UCDN for Unicode data by default.
|
|
288
|
+
Reduces dependence on version of Unicode data in glib,
|
|
289
|
+
specially in the Windows bundles we are shipping, which
|
|
290
|
+
have very old glib.
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
Overview of changes leading to 1.4.0
|
|
294
|
+
Thursday, January 5, 2017
|
|
295
|
+
====================================
|
|
296
|
+
|
|
297
|
+
- Merged "OpenType GX" branch which adds core of support for
|
|
298
|
+
OpenType 1.8 Font Variations. To that extent, the relevant
|
|
299
|
+
new API is:
|
|
300
|
+
|
|
301
|
+
New API:
|
|
302
|
+
hb_font_set_var_coords_normalized()
|
|
303
|
+
|
|
304
|
+
with supporting API:
|
|
305
|
+
|
|
306
|
+
New API:
|
|
307
|
+
HB_OT_LAYOUT_NO_VARIATIONS_INDEX
|
|
308
|
+
hb_ot_layout_table_find_feature_variations()
|
|
309
|
+
hb_ot_layout_feature_with_variations_get_lookups()
|
|
310
|
+
hb_shape_plan_create2()
|
|
311
|
+
hb_shape_plan_create_cached2()
|
|
312
|
+
|
|
313
|
+
Currently variations in GSUB/GPOS/GDEF are fully supported,
|
|
314
|
+
and no other tables are supported. In particular, fvar/avar
|
|
315
|
+
are NOT supported, hence the hb_font_set_var_coords_normalized()
|
|
316
|
+
taking normalized coordinates. API to take design coordinates
|
|
317
|
+
will be added in the future.
|
|
318
|
+
|
|
319
|
+
HVAR/VVAR/MVAR support will also be added to hb-ot-font in the
|
|
320
|
+
future.
|
|
321
|
+
|
|
322
|
+
- Fix regression in GDEF glyph class processing.
|
|
323
|
+
- Add decompositions for Chakma, Limbu, and Balinese in USE shaper.
|
|
324
|
+
- Misc fixes.
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
Overview of changes leading to 1.3.4
|
|
328
|
+
Monday, December 5, 2016
|
|
329
|
+
====================================
|
|
330
|
+
|
|
331
|
+
- Fix vertical glyph origin in hb-ot-font.
|
|
332
|
+
- Implement CBDT/CBLC color font glyph extents in hb-ot-font.
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
Overview of changes leading to 1.3.3
|
|
336
|
+
Wednesday, September 28, 2016
|
|
337
|
+
====================================
|
|
338
|
+
|
|
339
|
+
- Implement parsing of OpenType MATH table.
|
|
340
|
+
New API:
|
|
341
|
+
HB_OT_TAG_MATH
|
|
342
|
+
HB_OT_MATH_SCRIPT
|
|
343
|
+
hb_ot_math_constant_t
|
|
344
|
+
hb_ot_math_kern_t
|
|
345
|
+
hb_ot_math_glyph_variant_t
|
|
346
|
+
hb_ot_math_glyph_part_flags_t
|
|
347
|
+
hb_ot_math_glyph_part_t
|
|
348
|
+
hb_ot_math_has_data
|
|
349
|
+
hb_ot_math_get_constant
|
|
350
|
+
hb_ot_math_get_glyph_italics_correction
|
|
351
|
+
hb_ot_math_get_glyph_top_accent_attachment
|
|
352
|
+
hb_ot_math_get_glyph_kerning
|
|
353
|
+
hb_ot_math_is_glyph_extended_shape
|
|
354
|
+
hb_ot_math_get_glyph_variants
|
|
355
|
+
hb_ot_math_get_min_connector_overlap
|
|
356
|
+
hb_ot_math_get_glyph_assembly
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
Overview of changes leading to 1.3.2
|
|
360
|
+
Wednesday, September 27, 2016
|
|
361
|
+
====================================
|
|
362
|
+
|
|
363
|
+
- Fix build of hb-coretext on older OS X versions.
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
Overview of changes leading to 1.3.1
|
|
367
|
+
Wednesday, September 7, 2016
|
|
368
|
+
====================================
|
|
369
|
+
|
|
370
|
+
- Blacklist bad GDEF of more fonts (Padauk).
|
|
371
|
+
- More CoreText backend crash fixes with OS X 10.9.5.
|
|
372
|
+
- Misc fixes.
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
Overview of changes leading to 1.3.0
|
|
376
|
+
Thursday, July 21, 2016
|
|
377
|
+
====================================
|
|
378
|
+
|
|
379
|
+
- Update to Unicode 9.0.0
|
|
380
|
+
- Move Javanese from Indic shaper to Universal Shaping Engine.
|
|
381
|
+
- Allow MultipleSubst to delete a glyph (matching Windows engine).
|
|
382
|
+
- Update Universal Shaping Engine to latest draft from Microsoft.
|
|
383
|
+
- DirectWrite backend improvements. Note: this backend is for testing ONLY.
|
|
384
|
+
- CoreText backend improvements with unreachable fonts.
|
|
385
|
+
- Implement symbol fonts (cmap 3.0.0) in hb-ft and hb-ot-font.
|
|
386
|
+
- Blacklist bad GDEF of more fonts (Tahoma & others).
|
|
387
|
+
- Misc fixes.
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
Overview of changes leading to 1.2.7
|
|
391
|
+
Monday, May 2, 2016
|
|
392
|
+
====================================
|
|
393
|
+
|
|
394
|
+
- Blacklist another version of Times New Roman (Bold) Italic from Windows 7.
|
|
395
|
+
- Fix Mongolian Free Variation Selectors shaping with certain fonts.
|
|
396
|
+
- Fix Tibetan shorthand contractions shaping.
|
|
397
|
+
- Improved list of language tag mappings.
|
|
398
|
+
- Unbreak build on Windows CE.
|
|
399
|
+
- Make 'glyf' table loading lazy in hb-ot-font.
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
Overview of changes leading to 1.2.6
|
|
403
|
+
Friday, April 8, 2016
|
|
404
|
+
====================================
|
|
405
|
+
|
|
406
|
+
- Blacklist GDEF table of another set of Times New Roman (Bold) Italic.
|
|
407
|
+
- DirectWrite backend improvements. Note: DirectWrite backend is
|
|
408
|
+
exclusively for our internal testing and should NOT be used in any
|
|
409
|
+
production system whatsoever.
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
Overview of changes leading to 1.2.5
|
|
413
|
+
Monday, April 4, 2016
|
|
414
|
+
====================================
|
|
415
|
+
|
|
416
|
+
- Fix GDEF mark-filtering-set, which was broken in 1.2.3.
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
Overview of changes leading to 1.2.4
|
|
420
|
+
Thursday, March 17, 2016
|
|
421
|
+
====================================
|
|
422
|
+
|
|
423
|
+
- Synthesize GDEF glyph class for any glyph that does not have one in GDEF.
|
|
424
|
+
I really hope we don't discover broken fonts that shape badly with this
|
|
425
|
+
change.
|
|
426
|
+
- Misc build and other minor fixes.
|
|
427
|
+
- API changes:
|
|
428
|
+
- Added HB_NDEBUG. It's fine for production systems to define this to
|
|
429
|
+
disable high-overhead debugging checks. However, I also reduced the
|
|
430
|
+
overhead of those checks, so it's a non-issue right now. You can
|
|
431
|
+
forget it. Just not defining anything at all is fine.
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
Overview of changes leading to 1.2.3
|
|
435
|
+
Thursday, February 25, 2016
|
|
436
|
+
====================================
|
|
437
|
+
|
|
438
|
+
- Blacklist GDEF table of certain versions of Times New Roman (Bold) Italic,
|
|
439
|
+
due to bug in glyph class of ASCII double-quote character. This should
|
|
440
|
+
address "regression" introduced in 1.2.0 when we switched mark zeroing
|
|
441
|
+
in most shapers from BY_UNICODE_LATE to BY_GDEF_LATE.
|
|
442
|
+
This fourth release in a week should finally stablize things...
|
|
443
|
+
|
|
444
|
+
- hb-ot-font's get_glyph() implementation saw some optimizations. Though,
|
|
445
|
+
might be really hard to measure in real-world situations.
|
|
446
|
+
|
|
447
|
+
- Also, two rather small API changes:
|
|
448
|
+
|
|
449
|
+
We now disable some time-consuming internal bookkeeping if built with NDEBUG
|
|
450
|
+
defined. This is a first time that we use NDEBUG to disable debug code. If
|
|
451
|
+
there exist production systems that do NOT want to enable NDEBUG, please let
|
|
452
|
+
me know and I'll add HB_NDEBUG.
|
|
453
|
+
|
|
454
|
+
Added get_nominal_glyph() and get_variation_glyph() instead of get_glyph()
|
|
455
|
+
|
|
456
|
+
New API:
|
|
457
|
+
- hb_font_get_nominal_glyph_func_t
|
|
458
|
+
- hb_font_get_variation_glyph_func_t
|
|
459
|
+
- hb_font_funcs_set_nominal_glyph_func()
|
|
460
|
+
- hb_font_funcs_set_variation_glyph_func()
|
|
461
|
+
- hb_font_get_nominal_glyph()
|
|
462
|
+
- hb_font_get_variation_glyph()
|
|
463
|
+
|
|
464
|
+
Deprecated API:
|
|
465
|
+
- hb_font_get_glyph_func_t
|
|
466
|
+
- hb_font_funcs_set_glyph_func()
|
|
467
|
+
|
|
468
|
+
Clients that implement their own font-funcs are encouraged to replace
|
|
469
|
+
their get_glyph() implementation with a get_nominal_glyph() and
|
|
470
|
+
get_variation_glyph() pair. The variation version can assume that
|
|
471
|
+
variation_selector argument is not zero. Old (deprecated) functions
|
|
472
|
+
will continue working indefinitely using internal gymnastics; it is
|
|
473
|
+
just more efficient to use the new functions.
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
Overview of changes leading to 1.2.2
|
|
477
|
+
Wednesday, February 24, 2016
|
|
478
|
+
====================================
|
|
479
|
+
|
|
480
|
+
- Fix regression with mark positioning with fonts that have
|
|
481
|
+
non-zero mark advances. This was introduced in 1.2.0 while
|
|
482
|
+
trying to make mark and cursive attachments to work together.
|
|
483
|
+
I have partially reverted that, so this version is much more
|
|
484
|
+
like what we had before. All clients who updated to 1.2.0
|
|
485
|
+
should update to this version.
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
Overview of changes leading to 1.2.1
|
|
489
|
+
Tuesday, February 23, 2016
|
|
490
|
+
====================================
|
|
491
|
+
|
|
492
|
+
- CoreText: Fix bug with wrong scale if font scale was changed later.
|
|
493
|
+
https://github.com/libass/libass/issues/212
|
|
494
|
+
- CoreText: Drastically speed up font initialization.
|
|
495
|
+
- CoreText: Fix tiny leak.
|
|
496
|
+
- Group ZWJ/ZWNJ with previous syllable under cluster-level=0.
|
|
497
|
+
https://github.com/harfbuzz/harfbuzz/issues/217
|
|
498
|
+
- Add test/shaping/README.md about how to add tests to the suite.
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
Overview of changes leading to 1.2.0
|
|
502
|
+
Friday, February 19, 2016
|
|
503
|
+
====================================
|
|
504
|
+
|
|
505
|
+
- Fix various issues (hangs mostly) in case of memory allocation failure.
|
|
506
|
+
- Change mark zeroing types of most shapers from BY_UNICODE_LATE to
|
|
507
|
+
BY_GDEF_LATE. This seems to be what Uniscribe does.
|
|
508
|
+
- Change mark zeroing of USE shaper from NONE to BY_GDEF_EARLY. That's
|
|
509
|
+
what Windows does.
|
|
510
|
+
- Allow GPOS cursive connection on marks, and fix the interaction with
|
|
511
|
+
mark attachment. This work resulted in some changes to how mark
|
|
512
|
+
attachments work. See:
|
|
513
|
+
https://github.com/harfbuzz/harfbuzz/issues/211
|
|
514
|
+
https://github.com/harfbuzz/harfbuzz/commit/86c68c7a2c971efe8e35b1f1bd99401dc8b688d2
|
|
515
|
+
- Graphite2 shaper: improved negative advance handling (eg. Nastaliq).
|
|
516
|
+
- Add nmake-based build system for Windows.
|
|
517
|
+
- Minor speedup.
|
|
518
|
+
- Misc. improvements.
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
Overview of changes leading to 1.1.3
|
|
522
|
+
Monday, January 11, 2016
|
|
523
|
+
====================================
|
|
524
|
+
|
|
525
|
+
- Ported Indic shaper to Unicode 8.0 data.
|
|
526
|
+
- Universal Shaping Engine fixes.
|
|
527
|
+
- Speed up CoreText shaper when font fallback happens in CoreText.
|
|
528
|
+
- Documentation improvements, thanks to Khaled Hosny.
|
|
529
|
+
- Very rough directwrite shaper for testing, thanks to Ebrahim Byagowi.
|
|
530
|
+
- Misc bug fixes.
|
|
531
|
+
- New API:
|
|
532
|
+
|
|
533
|
+
* Font extents:
|
|
534
|
+
hb_font_extents_t
|
|
535
|
+
hb_font_get_font_extents_func_t
|
|
536
|
+
hb_font_get_font_h_extents_func_t
|
|
537
|
+
hb_font_get_font_v_extents_func_t
|
|
538
|
+
hb_font_funcs_set_font_h_extents_func
|
|
539
|
+
hb_font_funcs_set_font_v_extents_func
|
|
540
|
+
hb_font_get_h_extents
|
|
541
|
+
hb_font_get_v_extents
|
|
542
|
+
hb_font_get_extents_for_direction
|
|
543
|
+
|
|
544
|
+
* Buffer message (aka debug):
|
|
545
|
+
hb_buffer_message_func_t
|
|
546
|
+
hb_buffer_set_message_func()
|
|
547
|
+
Actual message protocol to be fleshed out later.
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
Overview of changes leading to 1.1.2
|
|
551
|
+
Wednesday, November 26, 2015
|
|
552
|
+
====================================
|
|
553
|
+
|
|
554
|
+
- Fix badly-broken fallback shaper that affected terminology.
|
|
555
|
+
https://github.com/harfbuzz/harfbuzz/issues/187
|
|
556
|
+
- Fix y_scaling in Graphite shaper.
|
|
557
|
+
- API changes:
|
|
558
|
+
* An unset glyph_h_origin() function in font-funcs now (sensibly)
|
|
559
|
+
implies horizontal origin at 0,0. Ie, the nil callback returns
|
|
560
|
+
true instead of false. As such, implementations that have a
|
|
561
|
+
glyph_h_origin() that simply returns true, can remove that function
|
|
562
|
+
with HarfBuzz >= 1.1.2. This results in a tiny speedup.
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
Overview of changes leading to 1.1.1
|
|
566
|
+
Wednesday, November 24, 2015
|
|
567
|
+
====================================
|
|
568
|
+
|
|
569
|
+
- Build fixes, specially for hb-coretext.
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
Overview of changes leading to 1.1.0
|
|
573
|
+
Wednesday, November 18, 2015
|
|
574
|
+
====================================
|
|
575
|
+
|
|
576
|
+
- Implement 'stch' stretch feature for Syriac Abbreviation Mark.
|
|
577
|
+
https://github.com/harfbuzz/harfbuzz/issues/141
|
|
578
|
+
- Disable use of decompose_compatibility() callback.
|
|
579
|
+
- Implement "shaping" of various Unicode space characters, even
|
|
580
|
+
if the font does not support them.
|
|
581
|
+
https://github.com/harfbuzz/harfbuzz/issues/153
|
|
582
|
+
- If font does not support U+2011 NO-BREAK HYPHEN, fallback to
|
|
583
|
+
U+2010 HYPHEN.
|
|
584
|
+
- Changes resulting from libFuzzer continuous fuzzing:
|
|
585
|
+
* Reject font tables that need more than 8 edits,
|
|
586
|
+
* Bound buffer growth during shaping to 32x,
|
|
587
|
+
* Fix assertions and other issues at OOM / buffer max-growth.
|
|
588
|
+
- Misc fixes and optimizations.
|
|
589
|
+
- API changes:
|
|
590
|
+
* All fonts created with hb_font_create() now inherit from
|
|
591
|
+
(ie. have parent) hb_font_get_empty().
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
Overview of changes leading to 1.0.6
|
|
595
|
+
Thursday, October 15, 2015
|
|
596
|
+
====================================
|
|
597
|
+
|
|
598
|
+
- Reduce max nesting level in OT lookups from 8 to 6.
|
|
599
|
+
Should not affect any real font as far as I know.
|
|
600
|
+
- Fix memory access issue in ot-font.
|
|
601
|
+
- Revert default load-flags of fonts created using hb_ft_font_create()
|
|
602
|
+
back to FT_LOAD_DEFAULT|FT_LOAD_NO_HINTING. This was changed in
|
|
603
|
+
last release (1.0.5), but caused major issues, so revert.
|
|
604
|
+
https://github.com/harfbuzz/harfbuzz/issues/143
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
Overview of changes leading to 1.0.5
|
|
608
|
+
Tuesday, October 13, 2015
|
|
609
|
+
====================================
|
|
610
|
+
|
|
611
|
+
- Fix multiple memory access bugs discovered using libFuzzer.
|
|
612
|
+
https://github.com/harfbuzz/harfbuzz/issues/139
|
|
613
|
+
Everyone should upgrade to this version as soon as possible.
|
|
614
|
+
We now have continuous fuzzing set up, to avoid issues like
|
|
615
|
+
these creeping in again.
|
|
616
|
+
- Misc fixes.
|
|
617
|
+
|
|
618
|
+
- New API:
|
|
619
|
+
* hb_font_set_parent().
|
|
620
|
+
* hb_ft_font_[sg]et_load_flags()
|
|
621
|
+
The default flags for fonts created using hb_ft_font_create()
|
|
622
|
+
has changed to default to FT_LOAD_DEFAULT now. Previously it
|
|
623
|
+
was defaulting to FT_LOAD_DFEAULT|FT_LOAD_NO_HINTING.
|
|
624
|
+
|
|
625
|
+
- API changes:
|
|
626
|
+
* Fonts now default to units-per-EM as their scale, instead of 0.
|
|
627
|
+
* hb_font_create_sub_font() does NOT make parent font immutable
|
|
628
|
+
anymore. hb_font_make_immutable() does.
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
Overview of changes leading to 1.0.4
|
|
632
|
+
Wednesday, September 30, 2015
|
|
633
|
+
====================================
|
|
634
|
+
|
|
635
|
+
- Fix minor out-of-bounds read error.
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
Overview of changes leading to 1.0.3
|
|
639
|
+
Tuesday, September 1, 2015
|
|
640
|
+
====================================
|
|
641
|
+
|
|
642
|
+
- Start of user documentation, from Simon Cozens!
|
|
643
|
+
- Implement glyph_extents() for TrueType fonts in hb-ot-font.
|
|
644
|
+
- Improve GPOS cursive attachments with conflicting lookups.
|
|
645
|
+
- More fixes for cluster-level = 1.
|
|
646
|
+
- Uniscribe positioning fix.
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
Overview of changes leading to 1.0.2
|
|
650
|
+
Wednesday, August 19, 2015
|
|
651
|
+
====================================
|
|
652
|
+
|
|
653
|
+
- Fix shaping with cluster-level > 0.
|
|
654
|
+
- Fix Uniscribe backend font-size scaling.
|
|
655
|
+
- Declare dependencies in harfbuzz.pc.
|
|
656
|
+
FreeType is not declared though, to avoid bugs in pkg-config
|
|
657
|
+
0.26 with recursive dependencies.
|
|
658
|
+
- Slightly improved debug infrastructure. More to come later.
|
|
659
|
+
- Misc build fixes.
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
Overview of changes leading to 1.0.1
|
|
663
|
+
Monday, July 27, 2015
|
|
664
|
+
====================================
|
|
665
|
+
|
|
666
|
+
- Fix out-of-bounds access in USE shaper.
|
|
667
|
+
|
|
668
|
+
|
|
669
|
+
Overview of changes leading to 1.0.0
|
|
670
|
+
Sunday, July 26, 2015
|
|
671
|
+
====================================
|
|
672
|
+
|
|
673
|
+
- Implement Universal Shaping Engine:
|
|
674
|
+
https://www.microsoft.com/typography/OpenTypeDev/USE/intro.htm
|
|
675
|
+
http://blogs.windows.com/bloggingwindows/2015/02/23/windows-shapes-the-worlds-languages/
|
|
676
|
+
- Bump version to 1.0.0. The soname was NOT bumped.
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
Overview of changes leading to 0.9.42
|
|
680
|
+
Thursday, July 26, 2015
|
|
681
|
+
=====================================
|
|
682
|
+
|
|
683
|
+
- New API to allow for retrieving finer-grained cluster
|
|
684
|
+
mappings if the client desires to handle them. Default
|
|
685
|
+
behavior is unchanged.
|
|
686
|
+
- Fix cluster merging when removing default-ignorables.
|
|
687
|
+
- Update to Unicode 8.0
|
|
688
|
+
- hb-graphite2 fixes.
|
|
689
|
+
- Misc fixes.
|
|
690
|
+
- Removed HB_NO_MERGE_CLUSTERS hack.
|
|
691
|
+
- New API:
|
|
692
|
+
hb_buffer_cluster_level_t enum
|
|
693
|
+
hb_buffer_get_cluster_level()
|
|
694
|
+
hb_buffer_set_cluster_level()
|
|
695
|
+
hb-shape / hb-view --cluster-level
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
Overview of changes leading to 0.9.41
|
|
699
|
+
Thursday, June 18, 2015
|
|
700
|
+
=====================================
|
|
701
|
+
|
|
702
|
+
- Fix hb-coretext with trailing whitespace in right-to-left.
|
|
703
|
+
- New API: hb_buffer_reverse_range().
|
|
704
|
+
- Allow implementing atomic ops in config.h.
|
|
705
|
+
- Fix hb_language_t in language bindings.
|
|
706
|
+
- Misc fixes.
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
Overview of changes leading to 0.9.40
|
|
710
|
+
Friday, March 20, 2015
|
|
711
|
+
=====================================
|
|
712
|
+
|
|
713
|
+
- Another hb-coretext crasher fix. Ouch!
|
|
714
|
+
- Happy Norouz!
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
Overview of changes leading to 0.9.39
|
|
718
|
+
Wednesday, March 4, 2015
|
|
719
|
+
=====================================
|
|
720
|
+
|
|
721
|
+
- Critical hb-coretext fixes.
|
|
722
|
+
- Optimizations and refactoring; no functional change
|
|
723
|
+
expected.
|
|
724
|
+
- Misc build fixes.
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
Overview of changes leading to 0.9.38
|
|
728
|
+
Friday, January 23, 2015
|
|
729
|
+
=====================================
|
|
730
|
+
|
|
731
|
+
- Fix minor out-of-bounds access in Indic shaper.
|
|
732
|
+
- Change New Tai Lue shaping engine from South-East Asian to default,
|
|
733
|
+
reflecting change in Unicode encoding model.
|
|
734
|
+
- Add hb-shape --font-size. Can take up to two numbers for separate
|
|
735
|
+
x / y size.
|
|
736
|
+
- Fix CoreText and FreeType scale issues with negative scales.
|
|
737
|
+
- Reject blobs larger than 2GB. This might break some icu-le-hb clients
|
|
738
|
+
that need security fixes. See:
|
|
739
|
+
http://www.icu-project.org/trac/ticket/11450
|
|
740
|
+
- Avoid accessing font tables during face destruction, in casce rogue
|
|
741
|
+
clients released face data already.
|
|
742
|
+
- Fix up gobject-introspection a bit. Python bindings kinda working.
|
|
743
|
+
See README.python.
|
|
744
|
+
- Misc fixes.
|
|
745
|
+
- API additions:
|
|
746
|
+
hb_ft_face_create_referenced()
|
|
747
|
+
hb_ft_font_create_referenced()
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
Overview of changes leading to 0.9.37
|
|
751
|
+
Wednesday, December 17, 2014
|
|
752
|
+
=====================================
|
|
753
|
+
|
|
754
|
+
- Fix out-of-bounds access in Context lookup format 3.
|
|
755
|
+
- Indic: Allow ZWJ/ZWNJ before syllable modifiers.
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
Overview of changes leading to 0.9.36
|
|
759
|
+
Thursday, November 20, 2014
|
|
760
|
+
=====================================
|
|
761
|
+
|
|
762
|
+
- First time that three months went by without a release since
|
|
763
|
+
0.9.2 was released on August 10, 2012!
|
|
764
|
+
- Fix performance bug in hb_ot_collect_glyphs():
|
|
765
|
+
https://bugzilla.mozilla.org/show_bug.cgi?id=1090869
|
|
766
|
+
- Add basic vertical-text support to hb-ot-font.
|
|
767
|
+
- Misc build fixes.
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
Overview of changes leading to 0.9.35
|
|
771
|
+
Saturday, August 13, 2014
|
|
772
|
+
=====================================
|
|
773
|
+
|
|
774
|
+
- Fix major shape-plan caching bug when more than one shaper were
|
|
775
|
+
provided to hb_shape_full() (as exercised by XeTeX).
|
|
776
|
+
http://www.mail-archive.com/debian-bugs-dist@lists.debian.org/msg1246370.html
|
|
777
|
+
- Fix Arabic fallback shaping regression. This was broken in 0.9.32.
|
|
778
|
+
- Major hb-coretext fixes. That backend is complete now, including
|
|
779
|
+
respecing buffer direction and language, down to vertical writing.
|
|
780
|
+
- Build fixes for Windows CE. Should build fine now.
|
|
781
|
+
- Misc fixes:
|
|
782
|
+
Use atexit() only if it's safe to call from shared library
|
|
783
|
+
https://bugs.freedesktop.org/show_bug.cgi?id=82246
|
|
784
|
+
Mandaic had errors in its Unicode Joining_Type
|
|
785
|
+
https://bugs.freedesktop.org/show_bug.cgi?id=82306
|
|
786
|
+
- API changes:
|
|
787
|
+
|
|
788
|
+
* hb_buffer_clear_contents() does not reset buffer flags now.
|
|
789
|
+
|
|
790
|
+
After 763e5466c0a03a7c27020e1e2598e488612529a7, one doesn't
|
|
791
|
+
need to set flags for different pieces of text. The flags now
|
|
792
|
+
are something the client sets up once, depending on how it
|
|
793
|
+
actually uses the buffer. As such, don't clear it in
|
|
794
|
+
clear_contents().
|
|
795
|
+
|
|
796
|
+
I don't expect any changes to be needed to any existing client.
|
|
797
|
+
|
|
798
|
+
|
|
799
|
+
Overview of changes leading to 0.9.34
|
|
800
|
+
Saturday, August 2, 2014
|
|
801
|
+
=====================================
|
|
802
|
+
|
|
803
|
+
- hb_feature_from_string() now accepts CSS font-feature-settings format.
|
|
804
|
+
- As a result, hb-shape / hb-view --features also accept CSS-style strings.
|
|
805
|
+
Eg, "'liga' off" is accepted now.
|
|
806
|
+
- Add old-spec Myanmar shaper:
|
|
807
|
+
https://bugs.freedesktop.org/show_bug.cgi?id=81775
|
|
808
|
+
- Don't apply 'calt' in Hangul shaper.
|
|
809
|
+
- Fix mark advance zeroing for Hebrew shaper:
|
|
810
|
+
https://bugs.freedesktop.org/show_bug.cgi?id=76767
|
|
811
|
+
- Implement Windows-1256 custom Arabic shaping. Only built on Windows,
|
|
812
|
+
and requires help from get_glyph(). Used by Firefox.
|
|
813
|
+
https://bugzilla.mozilla.org/show_bug.cgi?id=1045139
|
|
814
|
+
- Disable 'liga' in vertical text.
|
|
815
|
+
- Build fixes.
|
|
816
|
+
- API changes:
|
|
817
|
+
|
|
818
|
+
* Make HB_BUFFER_FLAG_BOT/EOT easier to use.
|
|
819
|
+
|
|
820
|
+
Previously, we expected users to provide BOT/EOT flags when the
|
|
821
|
+
text *segment* was at paragraph boundaries. This meant that for
|
|
822
|
+
clients that provide full paragraph to HarfBuzz (eg. Pango), they
|
|
823
|
+
had code like this:
|
|
824
|
+
|
|
825
|
+
hb_buffer_set_flags (hb_buffer,
|
|
826
|
+
(item_offset == 0 ? HB_BUFFER_FLAG_BOT : 0) |
|
|
827
|
+
(item_offset + item_length == paragraph_length ?
|
|
828
|
+
HB_BUFFER_FLAG_EOT : 0));
|
|
829
|
+
|
|
830
|
+
hb_buffer_add_utf8 (hb_buffer,
|
|
831
|
+
paragraph_text, paragraph_length,
|
|
832
|
+
item_offset, item_length);
|
|
833
|
+
|
|
834
|
+
After this change such clients can simply say:
|
|
835
|
+
|
|
836
|
+
hb_buffer_set_flags (hb_buffer,
|
|
837
|
+
HB_BUFFER_FLAG_BOT | HB_BUFFER_FLAG_EOT);
|
|
838
|
+
|
|
839
|
+
hb_buffer_add_utf8 (hb_buffer,
|
|
840
|
+
paragraph_text, paragraph_length,
|
|
841
|
+
item_offset, item_length);
|
|
842
|
+
|
|
843
|
+
Ie, HarfBuzz itself checks whether the segment is at the beginning/end
|
|
844
|
+
of the paragraph. Clients that only pass item-at-a-time to HarfBuzz
|
|
845
|
+
continue not setting any flags whatsoever.
|
|
846
|
+
|
|
847
|
+
Another way to put it is: if there's pre-context text in the buffer,
|
|
848
|
+
HarfBuzz ignores the BOT flag. If there's post-context, it ignores
|
|
849
|
+
EOT flag.
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
Overview of changes leading to 0.9.33
|
|
853
|
+
Tuesday, July 22, 2014
|
|
854
|
+
=====================================
|
|
855
|
+
|
|
856
|
+
- Turn off ARabic 'cswh' feature that was accidentally turned on.
|
|
857
|
+
- Add HB_TAG_MAX_SIGNED.
|
|
858
|
+
- Make hb_face_make_immutable() really make face immutable!
|
|
859
|
+
- Windows build fixes.
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
Overview of changes leading to 0.9.32
|
|
863
|
+
Thursday, July 17, 2014
|
|
864
|
+
=====================================
|
|
865
|
+
|
|
866
|
+
- Apply Arabic shaping features in spec order exactly.
|
|
867
|
+
- Another fix for Mongolian free variation selectors.
|
|
868
|
+
- For non-Arabic scripts in Arabic shaper apply 'rlig' and 'calt'
|
|
869
|
+
together.
|
|
870
|
+
- Minor adjustment to U+FFFD logic.
|
|
871
|
+
- Fix hb-coretext build.
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
Overview of changes leading to 0.9.31
|
|
875
|
+
Wednesday, July 16, 2014
|
|
876
|
+
=====================================
|
|
877
|
+
|
|
878
|
+
- Only accept valid UTF-8/16/32; we missed many cases before.
|
|
879
|
+
- Better shaping of invalid UTF-8/16/32. Falls back to
|
|
880
|
+
U+FFFD REPLACEMENT CHARACTER now.
|
|
881
|
+
- With all changes in this release, the buffer will contain fully
|
|
882
|
+
valid Unicode after hb_buffer_add_utf8/16/32 no matter how
|
|
883
|
+
broken the input is. This can be overridden though. See below.
|
|
884
|
+
- Fix Mongolian Variation Selectors for fonts without GDEF.
|
|
885
|
+
- Fix minor invalid buffer access.
|
|
886
|
+
- Accept zh-Hant and zh-Hans language tags. hb_ot_tag_to_language()
|
|
887
|
+
now uses these instead of private tags.
|
|
888
|
+
- Build fixes.
|
|
889
|
+
- New API:
|
|
890
|
+
* hb_buffer_add_codepoints(). This does what hb_buffer_add_utf32()
|
|
891
|
+
used to do, ie. no validity check on the input at all. add_utf32
|
|
892
|
+
now replaces invalid Unicode codepoints with the replacement
|
|
893
|
+
character (see below).
|
|
894
|
+
* hb_buffer_set_replacement_codepoint()
|
|
895
|
+
* hb_buffer_get_replacement_codepoint()
|
|
896
|
+
Previously, in hb_buffer_add_utf8 and hb_buffer_add_utf16, when
|
|
897
|
+
we detected broken input, we replaced that with (hb_codepoint_t)-1.
|
|
898
|
+
This has changed to use U+FFFD now, but can be changed using these
|
|
899
|
+
new API.
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
Overview of changes leading to 0.9.30
|
|
903
|
+
Wednesday, July 9, 2014
|
|
904
|
+
=====================================
|
|
905
|
+
|
|
906
|
+
- Update to Unicode 7.0.0:
|
|
907
|
+
* New scripts Manichaean and Psalter Pahlavi are shaped using
|
|
908
|
+
Arabic shaper.
|
|
909
|
+
* All the other new scripts to through the generic shaper for
|
|
910
|
+
now.
|
|
911
|
+
- Minor Indic improvements.
|
|
912
|
+
- Fix graphite2 backend cluster mapping [crasher!]
|
|
913
|
+
- API changes:
|
|
914
|
+
* New HB_SCRIPT_* values for Unicode 7.0 scripts.
|
|
915
|
+
* New function hb_ot_layout_language_get_required_feature().
|
|
916
|
+
- Build fixes.
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
Overview of changes leading to 0.9.29
|
|
920
|
+
Thursday, May 29, 2014
|
|
921
|
+
=====================================
|
|
922
|
+
|
|
923
|
+
- Implement cmap in hb-ot-font.h. No variation-selectors yet.
|
|
924
|
+
- Myanmar: Allow MedialYa+Asat.
|
|
925
|
+
- Various Indic fixes:
|
|
926
|
+
* Support most characters in Extended Devanagary and Vedic
|
|
927
|
+
Unicode blocks.
|
|
928
|
+
* Allow digits and a some punctuation as consonant placeholders.
|
|
929
|
+
- Build fixes.
|
|
930
|
+
|
|
931
|
+
|
|
932
|
+
Overview of changes leading to 0.9.28
|
|
933
|
+
Monday, April 28, 2014
|
|
934
|
+
=====================================
|
|
935
|
+
|
|
936
|
+
- Unbreak old-spec Indic shaping. (bug 76705)
|
|
937
|
+
- Fix shaping of U+17DD and U+0FC6.
|
|
938
|
+
- Add HB_NO_MERGE_CLUSTERS build option. NOT to be enabled by default
|
|
939
|
+
for shipping libraries. It's an option for further experimentation
|
|
940
|
+
right now. When we are sure how to do it properly, we will add
|
|
941
|
+
public run-time API for the functionality.
|
|
942
|
+
- Build fixes.
|
|
943
|
+
|
|
944
|
+
|
|
945
|
+
Overview of changes leading to 0.9.27
|
|
946
|
+
Tuesday, March 18, 2014
|
|
947
|
+
=====================================
|
|
948
|
+
|
|
949
|
+
- Don't use "register" storage class specifier
|
|
950
|
+
- Wrap definition of free_langs() with HAVE_ATEXIT
|
|
951
|
+
- Add coretext_aat shaper and hb_coretext_face_create() constructor
|
|
952
|
+
- If HAVE_ICU_BUILTIN is defined, use hb-icu Unicode callbacks
|
|
953
|
+
- Add Myanmar test case from OpenType Myanmar spec
|
|
954
|
+
- Only do fallback Hebrew composition if no GPOS 'mark' available
|
|
955
|
+
- Allow bootstrapping without gtk-doc
|
|
956
|
+
- Use AM_MISSING_PROG for ragel and git
|
|
957
|
+
- Typo in ucdn's Makefile.am
|
|
958
|
+
- Improve MemoryBarrier() implementation
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
Overview of changes leading to 0.9.26
|
|
962
|
+
Thursday, January 30, 2014
|
|
963
|
+
=====================================
|
|
964
|
+
|
|
965
|
+
- Misc fixes.
|
|
966
|
+
- Fix application of 'rtlm' feature.
|
|
967
|
+
- Automatically apply frac/numr/dnom around U+2044 FRACTION SLASH.
|
|
968
|
+
- New header: hb-ot-shape.h
|
|
969
|
+
- Uniscribe: fix scratch-buffer accounting.
|
|
970
|
+
- Reorder Tai Tham SAKOT to after tone-marks.
|
|
971
|
+
- Add Hangul shaper.
|
|
972
|
+
- New files:
|
|
973
|
+
hb-ot-shape-complex-hangul.cc
|
|
974
|
+
hb-ot-shape-complex-hebrew.cc
|
|
975
|
+
hb-ot-shape-complex-tibetan.cc
|
|
976
|
+
- Disable 'cswh' feature in Arabic shaper.
|
|
977
|
+
- Coretext: better handle surrogate pairs.
|
|
978
|
+
- Add HB_TAG_MAX and _HB_SCRIPT_MAX_VALUE.
|
|
979
|
+
|
|
980
|
+
|
|
981
|
+
Overview of changes leading to 0.9.25
|
|
982
|
+
Wednesday, December 4, 2013
|
|
983
|
+
=====================================
|
|
984
|
+
|
|
985
|
+
- Myanmar shaper improvements.
|
|
986
|
+
- Avoid font fallback in CoreText backend.
|
|
987
|
+
- Additional OpenType language tag mappiongs.
|
|
988
|
+
- More aggressive shape-plan caching.
|
|
989
|
+
- Build with / require automake 1.13.
|
|
990
|
+
- Build with libtool 2.4.2.418 alpha to support ppc64le.
|
|
991
|
+
|
|
992
|
+
|
|
993
|
+
Overview of changes leading to 0.9.24
|
|
994
|
+
Tuesday, November 13, 2013
|
|
995
|
+
=====================================
|
|
996
|
+
|
|
997
|
+
- Misc compiler warning fixes with clang.
|
|
998
|
+
- No functional changes.
|
|
999
|
+
|
|
1000
|
+
|
|
1001
|
+
Overview of changes leading to 0.9.23
|
|
1002
|
+
Monday, October 28, 2013
|
|
1003
|
+
=====================================
|
|
1004
|
+
|
|
1005
|
+
- "Udupi HarfBuzz Hackfest", Paris, October 14..18 2013.
|
|
1006
|
+
- Fix (Chain)Context recursion with non-monotone lookup positions.
|
|
1007
|
+
- Misc Indic bug fixes.
|
|
1008
|
+
- New Javanese / Buginese shaping, similar to Windows 8.1.
|
|
1009
|
+
|
|
1010
|
+
|
|
1011
|
+
Overview of changes leading to 0.9.22
|
|
1012
|
+
Thursday, October 3, 2013
|
|
1013
|
+
=====================================
|
|
1014
|
+
|
|
1015
|
+
- Fix use-after-end-of-scope in hb_language_from_string().
|
|
1016
|
+
- Fix hiding of default_ignorables if font doesn't have space glyph.
|
|
1017
|
+
- Protect against out-of-range lookup indices.
|
|
1018
|
+
|
|
1019
|
+
- API Changes:
|
|
1020
|
+
|
|
1021
|
+
* Added hb_ot_layout_table_get_lookup_count()
|
|
1022
|
+
|
|
1023
|
+
|
|
1024
|
+
Overview of changes leading to 0.9.21
|
|
1025
|
+
Monday, September 16, 2013
|
|
1026
|
+
=====================================
|
|
1027
|
+
|
|
1028
|
+
- Rename gobject-introspection library name from harfbuzz to HarfBuzz.
|
|
1029
|
+
- Remove (long disabled) hb-old and hb-icu-le test shapers.
|
|
1030
|
+
- Misc gtk-doc and gobject-introspection annotations.
|
|
1031
|
+
- Misc fixes.
|
|
1032
|
+
- API changes:
|
|
1033
|
+
|
|
1034
|
+
* Add HB_SET_VALUE_INVALID
|
|
1035
|
+
|
|
1036
|
+
Overview of changes leading to 0.9.20
|
|
1037
|
+
Thursday, August 29, 2013
|
|
1038
|
+
=====================================
|
|
1039
|
+
|
|
1040
|
+
General:
|
|
1041
|
+
- Misc substitute_closure() fixes.
|
|
1042
|
+
- Build fixes.
|
|
1043
|
+
|
|
1044
|
+
Documentation:
|
|
1045
|
+
- gtk-doc boilerplate integrated. Docs are built now, but
|
|
1046
|
+
contain no contents. By next release hopefully we have
|
|
1047
|
+
some content in. Enable using --enable-gtk-doc.
|
|
1048
|
+
|
|
1049
|
+
GObject and Introspection:
|
|
1050
|
+
- Added harfbuzz-gobject library (hb-gobject.h) that has type
|
|
1051
|
+
bindings for all HarfBuzz objects and enums. Enable using
|
|
1052
|
+
--with-gobject.
|
|
1053
|
+
- Added gobject-introspection boilerplate. Nothing useful
|
|
1054
|
+
right now. Work in progress. Gets enabled automatically if
|
|
1055
|
+
--with-gobject is used. Override with --disable-introspection.
|
|
1056
|
+
|
|
1057
|
+
OpenType shaper:
|
|
1058
|
+
- Apply 'mark' in Myanmar shaper.
|
|
1059
|
+
- Don't apply 'dlig' by default.
|
|
1060
|
+
|
|
1061
|
+
Uniscribe shaper:
|
|
1062
|
+
- Support user features.
|
|
1063
|
+
- Fix loading of fonts that are also installed on the system.
|
|
1064
|
+
- Fix shaping of Arabic Presentation Forms.
|
|
1065
|
+
- Fix build with wide chars.
|
|
1066
|
+
|
|
1067
|
+
CoreText shaper:
|
|
1068
|
+
- Support user features.
|
|
1069
|
+
|
|
1070
|
+
Source changes:
|
|
1071
|
+
- hb_face_t code moved to hb-face.h / hb-face.cc.
|
|
1072
|
+
- Added hb-deprecated.h.
|
|
1073
|
+
|
|
1074
|
+
API changes:
|
|
1075
|
+
- Added HB_DISABLE_DEPRECATED.
|
|
1076
|
+
- Deprecated HB_SCRIPT_CANADIAN_ABORIGINAL; replaced by
|
|
1077
|
+
HB_SCRIPT_CANADIAN_SYLLABICS.
|
|
1078
|
+
- Deprecated HB_BUFFER_FLAGS_DEFAULT; replaced by
|
|
1079
|
+
HB_BUFFER_FLAG_DEFAULT.
|
|
1080
|
+
- Deprecated HB_BUFFER_SERIALIZE_FLAGS_DEFAULT; replaced by
|
|
1081
|
+
HB_BUFFER_SERIALIZE_FLAG_DEFAULT.
|
|
1082
|
+
|
|
1083
|
+
|
|
1084
|
+
Overview of changes leading to 0.9.19
|
|
1085
|
+
Tuesday, July 16, 2013
|
|
1086
|
+
=====================================
|
|
1087
|
+
|
|
1088
|
+
- Build fixes.
|
|
1089
|
+
- Better handling of multiple variation selectors in a row.
|
|
1090
|
+
- Pass on variation selector to GSUB if not consumed by cmap.
|
|
1091
|
+
- Fix undefined memory access.
|
|
1092
|
+
- Add Javanese config to Indic shaper.
|
|
1093
|
+
- Misc bug fixes.
|
|
1094
|
+
|
|
1095
|
+
Overview of changes leading to 0.9.18
|
|
1096
|
+
Tuesday, May 28, 2013
|
|
1097
|
+
=====================================
|
|
1098
|
+
|
|
1099
|
+
New build system:
|
|
1100
|
+
|
|
1101
|
+
- All unneeded code is all disabled by default,
|
|
1102
|
+
|
|
1103
|
+
- Uniscribe and CoreText shapers can be enabled with their --with options,
|
|
1104
|
+
|
|
1105
|
+
- icu_le and old shapers cannot be enabled for now,
|
|
1106
|
+
|
|
1107
|
+
- glib, freetype, and cairo will be detected automatically.
|
|
1108
|
+
They can be force on/off'ed with their --with options,
|
|
1109
|
+
|
|
1110
|
+
- icu and graphite2 are default off, can be enabled with their --with
|
|
1111
|
+
options,
|
|
1112
|
+
|
|
1113
|
+
Moreover, ICU support is now build into a separate library:
|
|
1114
|
+
libharfbuzz-icu.so, and a new harfbuzz-icu.pc is shipped for it.
|
|
1115
|
+
Distros can enable ICU now without every application on earth
|
|
1116
|
+
getting linked to via libharfbuzz.so.
|
|
1117
|
+
|
|
1118
|
+
For distros I recommend that they make sure they are building --with-glib
|
|
1119
|
+
--with-freetype --with-cairo, --with-icu, and optionally --with-graphite2;
|
|
1120
|
+
And package harfbuzz and harfbuzz-icu separately.
|
|
1121
|
+
|
|
1122
|
+
|
|
1123
|
+
Overview of changes leading to 0.9.17
|
|
1124
|
+
Monday, May 20, 2013
|
|
1125
|
+
=====================================
|
|
1126
|
+
|
|
1127
|
+
- Build fixes.
|
|
1128
|
+
- Fix bug in hb_set_get_min().
|
|
1129
|
+
- Fix regression with Arabic mark positioning / width-zeroing.
|
|
1130
|
+
|
|
1131
|
+
Overview of changes leading to 0.9.16
|
|
1132
|
+
Friday, April 19, 2013
|
|
1133
|
+
=====================================
|
|
1134
|
+
|
|
1135
|
+
- Major speedup in OpenType lookup processing. With the Amiri
|
|
1136
|
+
Arabic font, this release is over 3x faster than previous
|
|
1137
|
+
release. All scripts / languages should see this speedup.
|
|
1138
|
+
|
|
1139
|
+
- New --num-iterations option for hb-shape / hb-view; useful for
|
|
1140
|
+
profiling.
|
|
1141
|
+
|
|
1142
|
+
Overview of changes leading to 0.9.15
|
|
1143
|
+
Friday, April 05, 2013
|
|
1144
|
+
=====================================
|
|
1145
|
+
|
|
1146
|
+
- Build fixes.
|
|
1147
|
+
- Fix crasher in graphite2 shaper.
|
|
1148
|
+
- Fix Arabic mark width zeroing regression.
|
|
1149
|
+
- Don't compose Hangul jamo into Unicode syllables.
|
|
1150
|
+
|
|
1151
|
+
|
|
1152
|
+
Overview of changes leading to 0.9.14
|
|
1153
|
+
Thursday, March 21, 2013
|
|
1154
|
+
=====================================
|
|
1155
|
+
|
|
1156
|
+
- Build fixes.
|
|
1157
|
+
- Fix time-consuming sanitize with malicious fonts.
|
|
1158
|
+
- Implement hb_buffer_deserialize_glyphs() for both json and text.
|
|
1159
|
+
- Do not ignore Hangul filler characters.
|
|
1160
|
+
- Indic fixes:
|
|
1161
|
+
* Fix Malayalam pre-base reordering interaction with post-forms.
|
|
1162
|
+
* Further adjust ZWJ handling. Should fix known regressions from
|
|
1163
|
+
0.9.13.
|
|
1164
|
+
|
|
1165
|
+
|
|
1166
|
+
Overview of changes leading to 0.9.13
|
|
1167
|
+
Thursday, February 25, 2013
|
|
1168
|
+
=====================================
|
|
1169
|
+
|
|
1170
|
+
- Build fixes.
|
|
1171
|
+
- Ngapi HarfBuzz Hackfest in London (February 2013):
|
|
1172
|
+
* Fixed all known Indic bugs,
|
|
1173
|
+
* New Win8-style Myanmar shaper,
|
|
1174
|
+
* New South-East Asian shaper for Tai Tham, Cham, and New Tai Lue,
|
|
1175
|
+
* Smartly ignore Default_Ignorable characters (joiners, etc) wheb
|
|
1176
|
+
matching GSUB/GPOS lookups,
|
|
1177
|
+
* Fix 'Phags-Pa U+A872 shaping,
|
|
1178
|
+
* Fix partial disabling of default-on features,
|
|
1179
|
+
* Allow disabling of TrueType kerning.
|
|
1180
|
+
- Fix possible crasher with broken fonts with overlapping tables.
|
|
1181
|
+
- Removed generated files from git again. So, one needs ragel to
|
|
1182
|
+
bootstrap from the git tree.
|
|
1183
|
+
|
|
1184
|
+
API changes:
|
|
1185
|
+
- hb_shape() and related APIs now abort if buffer direction is
|
|
1186
|
+
HB_DIRECTION_INVALID. Previously, hb_shape() was calling
|
|
1187
|
+
hb_buffer_guess_segment_properties() on the buffer before
|
|
1188
|
+
shaping. The heuristics in that function are fragile. If the
|
|
1189
|
+
user really wants the old behvaior, they can call that function
|
|
1190
|
+
right before calling hb_shape() to get the old behavior.
|
|
1191
|
+
- hb_blob_create_sub_blob() always creates sub-blob with
|
|
1192
|
+
HB_MEMORY_MODE_READONLY. See comments for the reason.
|
|
1193
|
+
|
|
1194
|
+
|
|
1195
|
+
Overview of changes leading to 0.9.12
|
|
1196
|
+
Thursday, January 18, 2013
|
|
1197
|
+
=====================================
|
|
1198
|
+
|
|
1199
|
+
- Build fixes for Sun compiler.
|
|
1200
|
+
- Minor bug fix.
|
|
1201
|
+
|
|
1202
|
+
Overview of changes leading to 0.9.11
|
|
1203
|
+
Thursday, January 10, 2013
|
|
1204
|
+
=====================================
|
|
1205
|
+
|
|
1206
|
+
- Build fixes.
|
|
1207
|
+
- Fix GPOS mark attachment with null Anchor offsets.
|
|
1208
|
+
- [Indic] Fix old-spec reordering of viramas if sequence ends in one.
|
|
1209
|
+
- Fix multi-threaded shaper data creation crash.
|
|
1210
|
+
- Add atomic ops for Solaris.
|
|
1211
|
+
|
|
1212
|
+
API changes:
|
|
1213
|
+
- Rename hb_buffer_clear() to hb_buffer_clear_contents().
|
|
1214
|
+
|
|
1215
|
+
|
|
1216
|
+
Overview of changes leading to 0.9.10
|
|
1217
|
+
Thursday, January 3, 2013
|
|
1218
|
+
=====================================
|
|
1219
|
+
|
|
1220
|
+
- [Indic] Fixed rendering of Malayalam dot-reph
|
|
1221
|
+
- Updated OT language tags.
|
|
1222
|
+
- Updated graphite2 backend.
|
|
1223
|
+
- Improved hb_ot_layout_get_size_params() logic.
|
|
1224
|
+
- Improve hb-shape/hb-view help output.
|
|
1225
|
+
- Fixed hb-set.h implementation to not crash.
|
|
1226
|
+
- Fixed various issues with hb_ot_layout_collect_lookups().
|
|
1227
|
+
- Various build fixes.
|
|
1228
|
+
|
|
1229
|
+
New API:
|
|
1230
|
+
|
|
1231
|
+
hb_graphite2_face_get_gr_face()
|
|
1232
|
+
hb_graphite2_font_get_gr_font()
|
|
1233
|
+
hb_coretext_face_get_cg_font()
|
|
1234
|
+
|
|
1235
|
+
Modified API:
|
|
1236
|
+
|
|
1237
|
+
hb_ot_layout_get_size_params()
|
|
1238
|
+
|
|
1239
|
+
|
|
1240
|
+
Overview of changes leading to 0.9.9
|
|
1241
|
+
Wednesday, December 5, 2012
|
|
1242
|
+
====================================
|
|
1243
|
+
|
|
1244
|
+
- Fix build on Windows.
|
|
1245
|
+
- Minor improvements.
|
|
1246
|
+
|
|
1247
|
+
|
|
1248
|
+
Overview of changes leading to 0.9.8
|
|
1249
|
+
Tuesday, December 4, 2012
|
|
1250
|
+
====================================
|
|
1251
|
+
|
|
1252
|
+
|
|
1253
|
+
- Actually implement hb_shape_plan_get_shaper ().
|
|
1254
|
+
- Make UCDB data tables const.
|
|
1255
|
+
- Lots of internal refactoring in OTLayout tables.
|
|
1256
|
+
- Flesh out hb_ot_layout_lookup_collect_glyphs().
|
|
1257
|
+
|
|
1258
|
+
New API:
|
|
1259
|
+
|
|
1260
|
+
hb_ot_layout_collect_lookups()
|
|
1261
|
+
hb_ot_layout_get_size_params()
|
|
1262
|
+
|
|
1263
|
+
|
|
1264
|
+
Overview of changes leading to 0.9.7
|
|
1265
|
+
Sunday, November 21, 2012
|
|
1266
|
+
====================================
|
|
1267
|
+
|
|
1268
|
+
|
|
1269
|
+
HarfBuzz "All-You-Can-Eat-Sushi" (aka Vancouver) Hackfest and follow-on fixes.
|
|
1270
|
+
|
|
1271
|
+
- Fix Arabic contextual joining using pre-context text.
|
|
1272
|
+
- Fix Sinhala "split matra" mess.
|
|
1273
|
+
- Fix Khmer shaping with broken fonts.
|
|
1274
|
+
- Implement Thai "PUA" shaping for old fonts.
|
|
1275
|
+
- Do NOT route Kharoshthi script through the Indic shaper.
|
|
1276
|
+
- Disable fallback positioning for Indic and Thai shapers.
|
|
1277
|
+
- Misc fixes.
|
|
1278
|
+
|
|
1279
|
+
|
|
1280
|
+
hb-shape / hb-view changes:
|
|
1281
|
+
|
|
1282
|
+
- Add --text-before and --text-after
|
|
1283
|
+
- Add --bot / --eot / --preserve-default-ignorables
|
|
1284
|
+
- hb-shape --output-format=json
|
|
1285
|
+
|
|
1286
|
+
|
|
1287
|
+
New API:
|
|
1288
|
+
|
|
1289
|
+
hb_buffer_clear()
|
|
1290
|
+
|
|
1291
|
+
hb_buffer_flags_t
|
|
1292
|
+
|
|
1293
|
+
HB_BUFFER_FLAGS_DEFAULT
|
|
1294
|
+
HB_BUFFER_FLAG_BOT
|
|
1295
|
+
HB_BUFFER_FLAG_EOT
|
|
1296
|
+
HB_BUFFER_FLAG_PRESERVE_DEFAULT_IGNORABLES
|
|
1297
|
+
|
|
1298
|
+
hb_buffer_set_flags()
|
|
1299
|
+
hb_buffer_get_flags()
|
|
1300
|
+
|
|
1301
|
+
HB_BUFFER_SERIALIZE_FLAGS
|
|
1302
|
+
hb_buffer_serialize_glyphs()
|
|
1303
|
+
hb_buffer_deserialize_glyphs()
|
|
1304
|
+
hb_buffer_serialize_list_formats()
|
|
1305
|
+
|
|
1306
|
+
hb_set_add_range()
|
|
1307
|
+
hb_set_del_range()
|
|
1308
|
+
hb_set_get_population()
|
|
1309
|
+
hb_set_next_range()
|
|
1310
|
+
|
|
1311
|
+
hb_face_[sg]et_glyph_count()
|
|
1312
|
+
|
|
1313
|
+
hb_segment_properties_t
|
|
1314
|
+
HB_SEGMENT_PROPERTIES_DEFAULT
|
|
1315
|
+
hb_segment_properties_equal()
|
|
1316
|
+
hb_segment_properties_hash()
|
|
1317
|
+
|
|
1318
|
+
hb_buffer_set_segment_properties()
|
|
1319
|
+
hb_buffer_get_segment_properties()
|
|
1320
|
+
|
|
1321
|
+
hb_ot_layout_glyph_class_t
|
|
1322
|
+
hb_ot_layout_get_glyph_class()
|
|
1323
|
+
hb_ot_layout_get_glyphs_in_class()
|
|
1324
|
+
|
|
1325
|
+
hb_shape_plan_t
|
|
1326
|
+
hb_shape_plan_create()
|
|
1327
|
+
hb_shape_plan_create_cached()
|
|
1328
|
+
hb_shape_plan_get_empty()
|
|
1329
|
+
hb_shape_plan_reference()
|
|
1330
|
+
hb_shape_plan_destroy()
|
|
1331
|
+
hb_shape_plan_set_user_data()
|
|
1332
|
+
hb_shape_plan_get_user_data()
|
|
1333
|
+
hb_shape_plan_execute()
|
|
1334
|
+
hb_shape_plan_get_shaper()
|
|
1335
|
+
|
|
1336
|
+
hb_ot_shape_plan_collect_lookups()
|
|
1337
|
+
|
|
1338
|
+
|
|
1339
|
+
API changes:
|
|
1340
|
+
|
|
1341
|
+
- Remove "mask" parameter from hb_buffer_add().
|
|
1342
|
+
- Rename hb_ot_layout_would_substitute_lookup() and hb_ot_layout_substitute_closure_lookup().
|
|
1343
|
+
- hb-set.h API const correction.
|
|
1344
|
+
- Renamed hb_set_min/max() to hb_set_get_min/max().
|
|
1345
|
+
- Rename hb_ot_layout_feature_get_lookup_indexes() to hb_ot_layout_feature_get_lookups().
|
|
1346
|
+
- Rename hb_buffer_guess_properties() to hb_buffer_guess_segment_properties().
|
|
1347
|
+
|
|
1348
|
+
|
|
1349
|
+
|
|
1350
|
+
Overview of changes leading to 0.9.6
|
|
1351
|
+
Sunday, November 13, 2012
|
|
1352
|
+
====================================
|
|
1353
|
+
|
|
1354
|
+
- Don't clear pre-context text if no new context is provided.
|
|
1355
|
+
- Fix ReverseChainingSubstLookup, which was totally borked.
|
|
1356
|
+
- Adjust output format of hb-shape a bit.
|
|
1357
|
+
- Include config.h.in in-tree. Makes it easier for alternate build systems.
|
|
1358
|
+
- Fix hb_buffer_set_length(buffer, 0) invalid memory allocation.
|
|
1359
|
+
- Use ICU LayoutEngine's C API instead of C++. Avoids much headache.
|
|
1360
|
+
- Drop glyphs for all of Unicode Default_Ignorable characters.
|
|
1361
|
+
- Misc build fixes.
|
|
1362
|
+
|
|
1363
|
+
Arabic shaper:
|
|
1364
|
+
- Enable 'dlig' and 'mset' features in Arabic shaper.
|
|
1365
|
+
- Implement 'Phags-pa shaping, improve Mongolian.
|
|
1366
|
+
|
|
1367
|
+
Indic shaper:
|
|
1368
|
+
- Decompose Sinhala split matras the way old HarfBuzz / Pango did.
|
|
1369
|
+
- Initial support for Consonant Medials.
|
|
1370
|
+
- Start adding new-style Myanmar shaping.
|
|
1371
|
+
- Make reph and 'pref' logic introspect the font.
|
|
1372
|
+
- Route Meetei-Mayek through the Indic shaper.
|
|
1373
|
+
- Don't apply 'liga' in Indic shaper.
|
|
1374
|
+
- Improve Malayalam pre-base reordering Ra interaction with Chillus.
|
|
1375
|
+
|
|
1376
|
+
|
|
1377
|
+
|
|
1378
|
+
Overview of changes leading to 0.9.5
|
|
1379
|
+
Sunday, October 14, 2012
|
|
1380
|
+
====================================
|
|
1381
|
+
|
|
1382
|
+
- Synthetic-GSUB Arabic fallback shaping.
|
|
1383
|
+
|
|
1384
|
+
- Misc Indic improvements.
|
|
1385
|
+
|
|
1386
|
+
- Add build system support for pthread.
|
|
1387
|
+
|
|
1388
|
+
- Imported UCDN for in-tree Unicode callbacks implementation.
|
|
1389
|
+
|
|
1390
|
+
- Context-aware Arabic joining.
|
|
1391
|
+
|
|
1392
|
+
- Misc other fixes.
|
|
1393
|
+
|
|
1394
|
+
- New API:
|
|
1395
|
+
|
|
1396
|
+
hb_feature_to/from-string()
|
|
1397
|
+
hb_buffer_[sg]et_content_type()
|
|
1398
|
+
|
|
1399
|
+
|
|
1400
|
+
|
|
1401
|
+
Overview of changes leading to 0.9.4
|
|
1402
|
+
Tuesday, Sep 03, 2012
|
|
1403
|
+
====================================
|
|
1404
|
+
|
|
1405
|
+
- Indic improvements with old-spec Malayalam.
|
|
1406
|
+
|
|
1407
|
+
- Better fallback glyph positioning, specially with Thai / Lao marks.
|
|
1408
|
+
|
|
1409
|
+
- Implement dotted-circle insertion.
|
|
1410
|
+
|
|
1411
|
+
- Better Arabic fallback shaping / ligation.
|
|
1412
|
+
|
|
1413
|
+
- Added ICU LayoutEngine backend for testing. Call it by the 'icu_le' name.
|
|
1414
|
+
|
|
1415
|
+
- Misc fixes.
|
|
1416
|
+
|
|
1417
|
+
|
|
1418
|
+
|
|
1419
|
+
Overview of changes leading to 0.9.3
|
|
1420
|
+
Friday, Aug 18, 2012
|
|
1421
|
+
====================================
|
|
1422
|
+
|
|
1423
|
+
- Fixed fallback mark positioning for left-to-right text.
|
|
1424
|
+
|
|
1425
|
+
- Improve mark positioning for the remaining combining classes.
|
|
1426
|
+
|
|
1427
|
+
- Unbreak Thai and fallback Arabic shaping.
|
|
1428
|
+
|
|
1429
|
+
- Port Arabic shaper to shape-plan caching.
|
|
1430
|
+
|
|
1431
|
+
- Use new ICU normalizer functions.
|
|
1432
|
+
|
|
1433
|
+
|
|
1434
|
+
|
|
1435
|
+
Overview of changes leading to 0.9.2
|
|
1436
|
+
Friday, Aug 10, 2012
|
|
1437
|
+
====================================
|
|
1438
|
+
|
|
1439
|
+
- Over a thousand commits! This is the first major release of HarfBuzz.
|
|
1440
|
+
|
|
1441
|
+
- HarfBuzz is feature-complete now! It should be in par, or better, than
|
|
1442
|
+
both Pango's shapers and old HarfBuzz / Qt shapers.
|
|
1443
|
+
|
|
1444
|
+
- New Indic shaper, supporting main Indic scripts, Sinhala, and Khmer.
|
|
1445
|
+
|
|
1446
|
+
- Improved Arabic shaper, with fallback Arabic shaping, supporting Arabic,
|
|
1447
|
+
Sinhala, N'ko, Mongolian, and Mandaic.
|
|
1448
|
+
|
|
1449
|
+
- New Thai / Lao shaper.
|
|
1450
|
+
|
|
1451
|
+
- Tibetan / Hangul support in the generic shaper.
|
|
1452
|
+
|
|
1453
|
+
- Synthetic GDEF support for fonts without a GDEF table.
|
|
1454
|
+
|
|
1455
|
+
- Fallback mark positioning for fonts without a GPOS table.
|
|
1456
|
+
|
|
1457
|
+
- Unicode normalization shaping heuristic during glyph mapping.
|
|
1458
|
+
|
|
1459
|
+
- New experimental Graphite2 backend.
|
|
1460
|
+
|
|
1461
|
+
- New Uniscribe backend (primarily for testing).
|
|
1462
|
+
|
|
1463
|
+
- New CoreText backend (primarily for testing).
|
|
1464
|
+
|
|
1465
|
+
- Major optimization and speedup.
|
|
1466
|
+
|
|
1467
|
+
- Test suites and testing infrastructure (work in progress).
|
|
1468
|
+
|
|
1469
|
+
- Greatly improved hb-view cmdline tool.
|
|
1470
|
+
|
|
1471
|
+
- hb-shape cmdline tool.
|
|
1472
|
+
|
|
1473
|
+
- Unicode 6.1 support.
|
|
1474
|
+
|
|
1475
|
+
Summary of API changes:
|
|
1476
|
+
|
|
1477
|
+
o Changed API:
|
|
1478
|
+
|
|
1479
|
+
- Users are expected to only include main header files now (ie. hb.h,
|
|
1480
|
+
hb-glib.h, hb-ft.h, ...)
|
|
1481
|
+
|
|
1482
|
+
- All struct tag names had their initial underscore removed.
|
|
1483
|
+
Ie. "struct _hb_buffer_t" is "struct hb_buffer_t" now.
|
|
1484
|
+
|
|
1485
|
+
- All set_user_data() functions now take a "replace" boolean parameter.
|
|
1486
|
+
|
|
1487
|
+
- hb_buffer_create() takes zero arguments now.
|
|
1488
|
+
Use hb_buffer_pre_allocate() to pre-allocate.
|
|
1489
|
+
|
|
1490
|
+
- hb_buffer_add_utf*() now accept -1 for length parameteres,
|
|
1491
|
+
meaning "nul-terminated".
|
|
1492
|
+
|
|
1493
|
+
- hb_direction_t enum values changed.
|
|
1494
|
+
|
|
1495
|
+
- All *_from_string() APIs now take a length parameter to allow for
|
|
1496
|
+
non-nul-terminated strings. A -1 length means "nul-terminated".
|
|
1497
|
+
|
|
1498
|
+
- Typedef for hb_language_t changed.
|
|
1499
|
+
|
|
1500
|
+
- hb_get_table_func_t renamed to hb_reference_table_func_t.
|
|
1501
|
+
|
|
1502
|
+
- hb_ot_layout_table_choose_script()
|
|
1503
|
+
|
|
1504
|
+
- Various renames in hb-unicode.h.
|
|
1505
|
+
|
|
1506
|
+
o New API:
|
|
1507
|
+
|
|
1508
|
+
- hb_buffer_guess_properties()
|
|
1509
|
+
Automatically called by hb_shape().
|
|
1510
|
+
|
|
1511
|
+
- hb_buffer_normalize_glyphs()
|
|
1512
|
+
|
|
1513
|
+
- hb_tag_from_string()
|
|
1514
|
+
|
|
1515
|
+
- hb-coretext.h
|
|
1516
|
+
|
|
1517
|
+
- hb-uniscribe.h
|
|
1518
|
+
|
|
1519
|
+
- hb_face_reference_blob()
|
|
1520
|
+
- hb_face_[sg]et_index()
|
|
1521
|
+
- hb_face_set_upem()
|
|
1522
|
+
|
|
1523
|
+
- hb_font_get_glyph_name_func_t
|
|
1524
|
+
hb_font_get_glyph_from_name_func_t
|
|
1525
|
+
hb_font_funcs_set_glyph_name_func()
|
|
1526
|
+
hb_font_funcs_set_glyph_from_name_func()
|
|
1527
|
+
hb_font_get_glyph_name()
|
|
1528
|
+
hb_font_get_glyph_from_name()
|
|
1529
|
+
hb_font_glyph_to_string()
|
|
1530
|
+
hb_font_glyph_from_string()
|
|
1531
|
+
|
|
1532
|
+
- hb_font_set_funcs_data()
|
|
1533
|
+
|
|
1534
|
+
- hb_ft_font_set_funcs()
|
|
1535
|
+
- hb_ft_font_get_face()
|
|
1536
|
+
|
|
1537
|
+
- hb-gobject.h (work in progress)
|
|
1538
|
+
|
|
1539
|
+
- hb_ot_shape_glyphs_closure()
|
|
1540
|
+
hb_ot_layout_substitute_closure_lookup()
|
|
1541
|
+
|
|
1542
|
+
- hb-set.h
|
|
1543
|
+
|
|
1544
|
+
- hb_shape_full()
|
|
1545
|
+
|
|
1546
|
+
- hb_unicode_combining_class_t
|
|
1547
|
+
|
|
1548
|
+
- hb_unicode_compose_func_t
|
|
1549
|
+
hb_unicode_decompose_func_t
|
|
1550
|
+
hb_unicode_decompose_compatibility_func_t
|
|
1551
|
+
hb_unicode_funcs_set_compose_func()
|
|
1552
|
+
hb_unicode_funcs_set_decompose_func()
|
|
1553
|
+
hb_unicode_funcs_set_decompose_compatibility_func()
|
|
1554
|
+
hb_unicode_compose()
|
|
1555
|
+
hb_unicode_decompose()
|
|
1556
|
+
hb_unicode_decompose_compatibility()
|
|
1557
|
+
|
|
1558
|
+
o Removed API:
|
|
1559
|
+
|
|
1560
|
+
- hb_ft_get_font_funcs()
|
|
1561
|
+
|
|
1562
|
+
- hb_ot_layout_substitute_start()
|
|
1563
|
+
hb_ot_layout_substitute_lookup()
|
|
1564
|
+
hb_ot_layout_substitute_finish()
|
|
1565
|
+
hb_ot_layout_position_start()
|
|
1566
|
+
hb_ot_layout_position_lookup()
|
|
1567
|
+
hb_ot_layout_position_finish()
|
|
1568
|
+
|
|
1569
|
+
|
|
1570
|
+
|
|
1571
|
+
Overview of changes leading to 0.6.0
|
|
1572
|
+
Friday, May 27, 2011
|
|
1573
|
+
====================================
|
|
1574
|
+
|
|
1575
|
+
- Vertical text support in GPOS
|
|
1576
|
+
- Almost all API entries have unit tests now, under test/
|
|
1577
|
+
- All thread-safety issues are fixed
|
|
1578
|
+
|
|
1579
|
+
Summary of API changes follows.
|
|
1580
|
+
|
|
1581
|
+
|
|
1582
|
+
* Simple Types API:
|
|
1583
|
+
|
|
1584
|
+
o New API:
|
|
1585
|
+
HB_LANGUAGE_INVALID
|
|
1586
|
+
hb_language_get_default()
|
|
1587
|
+
hb_direction_to_string()
|
|
1588
|
+
hb_direction_from_string()
|
|
1589
|
+
hb_script_get_horizontal_direction()
|
|
1590
|
+
HB_UNTAG()
|
|
1591
|
+
|
|
1592
|
+
o Renamed API:
|
|
1593
|
+
hb_category_t renamed to hb_unicode_general_category_t
|
|
1594
|
+
|
|
1595
|
+
o Changed API:
|
|
1596
|
+
hb_language_t is a typed pointers now
|
|
1597
|
+
|
|
1598
|
+
o Removed API:
|
|
1599
|
+
HB_TAG_STR()
|
|
1600
|
+
|
|
1601
|
+
|
|
1602
|
+
* Use ISO 15924 tags for hb_script_t:
|
|
1603
|
+
|
|
1604
|
+
o New API:
|
|
1605
|
+
hb_script_from_iso15924_tag()
|
|
1606
|
+
hb_script_to_iso15924_tag()
|
|
1607
|
+
hb_script_from_string()
|
|
1608
|
+
|
|
1609
|
+
o Changed API:
|
|
1610
|
+
HB_SCRIPT_* enum members changed value.
|
|
1611
|
+
|
|
1612
|
+
|
|
1613
|
+
* Buffer API streamlined:
|
|
1614
|
+
|
|
1615
|
+
o New API:
|
|
1616
|
+
hb_buffer_reset()
|
|
1617
|
+
hb_buffer_set_length()
|
|
1618
|
+
hb_buffer_allocation_successful()
|
|
1619
|
+
|
|
1620
|
+
o Renamed API:
|
|
1621
|
+
hb_buffer_ensure() renamed to hb_buffer_pre_allocate()
|
|
1622
|
+
hb_buffer_add_glyph() renamed to hb_buffer_add()
|
|
1623
|
+
|
|
1624
|
+
o Removed API:
|
|
1625
|
+
hb_buffer_clear()
|
|
1626
|
+
hb_buffer_clear_positions()
|
|
1627
|
+
|
|
1628
|
+
o Changed API:
|
|
1629
|
+
hb_buffer_get_glyph_infos() takes an out length parameter now
|
|
1630
|
+
hb_buffer_get_glyph_positions() takes an out length parameter now
|
|
1631
|
+
|
|
1632
|
+
|
|
1633
|
+
* Blob API streamlined:
|
|
1634
|
+
|
|
1635
|
+
o New API:
|
|
1636
|
+
hb_blob_get_data()
|
|
1637
|
+
hb_blob_get_data_writable()
|
|
1638
|
+
|
|
1639
|
+
o Renamed API:
|
|
1640
|
+
hb_blob_create_empty() renamed to hb_blob_get_empty()
|
|
1641
|
+
|
|
1642
|
+
o Removed API:
|
|
1643
|
+
hb_blob_lock()
|
|
1644
|
+
hb_blob_unlock()
|
|
1645
|
+
hb_blob_is_writable()
|
|
1646
|
+
hb_blob_try_writable()
|
|
1647
|
+
|
|
1648
|
+
o Changed API:
|
|
1649
|
+
hb_blob_create() takes user_data before destroy now
|
|
1650
|
+
|
|
1651
|
+
|
|
1652
|
+
* Unicode functions API:
|
|
1653
|
+
|
|
1654
|
+
o Unicode function vectors can subclass other unicode function vectors now.
|
|
1655
|
+
Unimplemented callbacks in the subclass automatically chainup to the parent.
|
|
1656
|
+
|
|
1657
|
+
o All hb_unicode_funcs_t callbacks take a user_data now. Their setters
|
|
1658
|
+
take a user_data and its respective destroy callback.
|
|
1659
|
+
|
|
1660
|
+
o New API:
|
|
1661
|
+
hb_unicode_funcs_get_empty()
|
|
1662
|
+
hb_unicode_funcs_get_default()
|
|
1663
|
+
hb_unicode_funcs_get_parent()
|
|
1664
|
+
|
|
1665
|
+
o Changed API:
|
|
1666
|
+
hb_unicode_funcs_create() now takes a parent_funcs.
|
|
1667
|
+
|
|
1668
|
+
o Removed func getter functions:
|
|
1669
|
+
hb_unicode_funcs_get_mirroring_func()
|
|
1670
|
+
hb_unicode_funcs_get_general_category_func()
|
|
1671
|
+
hb_unicode_funcs_get_script_func()
|
|
1672
|
+
hb_unicode_funcs_get_combining_class_func()
|
|
1673
|
+
hb_unicode_funcs_get_eastasian_width_func()
|
|
1674
|
+
|
|
1675
|
+
|
|
1676
|
+
* Face API:
|
|
1677
|
+
|
|
1678
|
+
o Renamed API:
|
|
1679
|
+
hb_face_get_table() renamed to hb_face_reference_table()
|
|
1680
|
+
hb_face_create_for_data() renamed to hb_face_create()
|
|
1681
|
+
|
|
1682
|
+
o Changed API:
|
|
1683
|
+
hb_face_create_for_tables() takes user_data before destroy now
|
|
1684
|
+
hb_face_reference_table() returns empty blob instead of NULL
|
|
1685
|
+
hb_get_table_func_t accepts the face as first parameter now
|
|
1686
|
+
|
|
1687
|
+
* Font API:
|
|
1688
|
+
|
|
1689
|
+
o Fonts can subclass other fonts now. Unimplemented callbacks in the
|
|
1690
|
+
subclass automatically chainup to the parent. When chaining up,
|
|
1691
|
+
scale is adjusted if the parent font has a different scale.
|
|
1692
|
+
|
|
1693
|
+
o All hb_font_funcs_t callbacks take a user_data now. Their setters
|
|
1694
|
+
take a user_data and its respective destroy callback.
|
|
1695
|
+
|
|
1696
|
+
o New API:
|
|
1697
|
+
hb_font_get_parent()
|
|
1698
|
+
hb_font_funcs_get_empty()
|
|
1699
|
+
hb_font_create_sub_font()
|
|
1700
|
+
|
|
1701
|
+
o Removed API:
|
|
1702
|
+
hb_font_funcs_copy()
|
|
1703
|
+
hb_font_unset_funcs()
|
|
1704
|
+
|
|
1705
|
+
o Removed func getter functions:
|
|
1706
|
+
hb_font_funcs_get_glyph_func()
|
|
1707
|
+
hb_font_funcs_get_glyph_advance_func()
|
|
1708
|
+
hb_font_funcs_get_glyph_extents_func()
|
|
1709
|
+
hb_font_funcs_get_contour_point_func()
|
|
1710
|
+
hb_font_funcs_get_kerning_func()
|
|
1711
|
+
|
|
1712
|
+
o Changed API:
|
|
1713
|
+
hb_font_create() takes a face and references it now
|
|
1714
|
+
hb_font_set_funcs() takes user_data before destroy now
|
|
1715
|
+
hb_font_set_scale() accepts signed integers now
|
|
1716
|
+
hb_font_get_contour_point_func_t now takes glyph first, then point_index
|
|
1717
|
+
hb_font_get_glyph_func_t returns a success boolean now
|
|
1718
|
+
|
|
1719
|
+
|
|
1720
|
+
* Changed object model:
|
|
1721
|
+
|
|
1722
|
+
o All object types have a _get_empty() now:
|
|
1723
|
+
hb_blob_get_empty()
|
|
1724
|
+
hb_buffer_get_empty()
|
|
1725
|
+
hb_face_get_empty()
|
|
1726
|
+
hb_font_get_empty()
|
|
1727
|
+
hb_font_funcs_get_empty()
|
|
1728
|
+
hb_unicode_funcs_get_empty()
|
|
1729
|
+
|
|
1730
|
+
o Added _set_user_data() and _get_user_data() for all object types:
|
|
1731
|
+
hb_blob_get_user_data()
|
|
1732
|
+
hb_blob_set_user_data()
|
|
1733
|
+
hb_buffer_get_user_data()
|
|
1734
|
+
hb_buffer_set_user_data()
|
|
1735
|
+
hb_face_get_user_data()
|
|
1736
|
+
hb_face_set_user_data()
|
|
1737
|
+
hb_font_funcs_get_user_data()
|
|
1738
|
+
hb_font_funcs_set_user_data()
|
|
1739
|
+
hb_font_get_user_data()
|
|
1740
|
+
hb_font_set_user_data()
|
|
1741
|
+
hb_unicode_funcs_get_user_data()
|
|
1742
|
+
hb_unicode_funcs_set_user_data()
|
|
1743
|
+
|
|
1744
|
+
o Removed the _get_reference_count() from all object types:
|
|
1745
|
+
hb_blob_get_reference_count()
|
|
1746
|
+
hb_buffer_get_reference_count()
|
|
1747
|
+
hb_face_get_reference_count()
|
|
1748
|
+
hb_font_funcs_get_reference_count()
|
|
1749
|
+
hb_font_get_reference_count()
|
|
1750
|
+
hb_unicode_funcs_get_reference_count()
|
|
1751
|
+
|
|
1752
|
+
o Added _make_immutable() and _is_immutable() for all object types except for buffer:
|
|
1753
|
+
hb_blob_make_immutable()
|
|
1754
|
+
hb_blob_is_immutable()
|
|
1755
|
+
hb_face_make_immutable()
|
|
1756
|
+
hb_face_is_immutable()
|
|
1757
|
+
|
|
1758
|
+
|
|
1759
|
+
* Changed API for vertical text support
|
|
1760
|
+
|
|
1761
|
+
o The following callbacks where removed:
|
|
1762
|
+
hb_font_get_glyph_advance_func_t
|
|
1763
|
+
hb_font_get_kerning_func_t
|
|
1764
|
+
|
|
1765
|
+
o The following new callbacks added instead:
|
|
1766
|
+
hb_font_get_glyph_h_advance_func_t
|
|
1767
|
+
hb_font_get_glyph_v_advance_func_t
|
|
1768
|
+
hb_font_get_glyph_h_origin_func_t
|
|
1769
|
+
hb_font_get_glyph_v_origin_func_t
|
|
1770
|
+
hb_font_get_glyph_h_kerning_func_t
|
|
1771
|
+
hb_font_get_glyph_v_kerning_func_t
|
|
1772
|
+
|
|
1773
|
+
o The following API removed as such:
|
|
1774
|
+
hb_font_funcs_set_glyph_advance_func()
|
|
1775
|
+
hb_font_funcs_set_kerning_func()
|
|
1776
|
+
hb_font_get_glyph_advance()
|
|
1777
|
+
hb_font_get_kerning()
|
|
1778
|
+
|
|
1779
|
+
o New API added instead:
|
|
1780
|
+
hb_font_funcs_set_glyph_h_advance_func()
|
|
1781
|
+
hb_font_funcs_set_glyph_v_advance_func()
|
|
1782
|
+
hb_font_funcs_set_glyph_h_origin_func()
|
|
1783
|
+
hb_font_funcs_set_glyph_v_origin_func()
|
|
1784
|
+
hb_font_funcs_set_glyph_h_kerning_func()
|
|
1785
|
+
hb_font_funcs_set_glyph_v_kerning_func()
|
|
1786
|
+
hb_font_get_glyph_h_advance()
|
|
1787
|
+
hb_font_get_glyph_v_advance()
|
|
1788
|
+
hb_font_get_glyph_h_origin()
|
|
1789
|
+
hb_font_get_glyph_v_origin()
|
|
1790
|
+
hb_font_get_glyph_h_kerning()
|
|
1791
|
+
hb_font_get_glyph_v_kerning()
|
|
1792
|
+
|
|
1793
|
+
o The following higher-leve API added for convenience:
|
|
1794
|
+
hb_font_get_glyph_advance_for_direction()
|
|
1795
|
+
hb_font_get_glyph_origin_for_direction()
|
|
1796
|
+
hb_font_add_glyph_origin_for_direction()
|
|
1797
|
+
hb_font_subtract_glyph_origin_for_direction()
|
|
1798
|
+
hb_font_get_glyph_kerning_for_direction()
|
|
1799
|
+
hb_font_get_glyph_extents_for_origin()
|
|
1800
|
+
hb_font_get_glyph_contour_point_for_origin()
|
|
1801
|
+
|
|
1802
|
+
|
|
1803
|
+
* OpenType Layout API:
|
|
1804
|
+
|
|
1805
|
+
o New API:
|
|
1806
|
+
hb_ot_layout_position_start()
|
|
1807
|
+
hb_ot_layout_substitute_start()
|
|
1808
|
+
hb_ot_layout_substitute_finish()
|
|
1809
|
+
|
|
1810
|
+
|
|
1811
|
+
* Glue code:
|
|
1812
|
+
|
|
1813
|
+
o New API:
|
|
1814
|
+
hb_glib_script_to_script()
|
|
1815
|
+
hb_glib_script_from_script()
|
|
1816
|
+
hb_icu_script_to_script()
|
|
1817
|
+
hb_icu_script_from_script()
|
|
1818
|
+
|
|
1819
|
+
|
|
1820
|
+
* Version API added:
|
|
1821
|
+
|
|
1822
|
+
o New API:
|
|
1823
|
+
HB_VERSION_MAJOR
|
|
1824
|
+
HB_VERSION_MINOR
|
|
1825
|
+
HB_VERSION_MICRO
|
|
1826
|
+
HB_VERSION_STRING
|
|
1827
|
+
HB_VERSION_CHECK()
|
|
1828
|
+
hb_version()
|
|
1829
|
+
hb_version_string()
|
|
1830
|
+
hb_version_check()
|
|
1831
|
+
|
|
1832
|
+
|