oden/third-party/vendor/fontdue/CHANGELOG.md
2024-03-08 11:03:01 -08:00

1.6 KiB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

Changes

  • Refactored development related artifacts into the dev folder. This reduces pollution in the main crate.
  • Removed some needless unsafe, documented other uses.

[0.7.3] - 2023-04-16

Added

  • Expose layout settings on Layout
  • Add a line height option to LayoutSettings

Changes

  • Relicense to MIT OR Apache-2.0 OR Zlib
  • Update hashbrown to 0.13

Fixed

  • More doc typos.

[0.7.2] - 2022-03-03

Added

  • Added byte_offset to GlyphPosition

Changes

  • Breaking - Renamed line_start/line_end to glyph_start/glyph_end

Fixed

  • More doc typos.
  • line_start/glyph_start skipping spacing characters.

[0.7.1] - 2022-02-25

Changes

  • ttf-parser updated to 0.15

Fixed

  • LinePosition doc typo.
  • Benign compiler error in debug mode in layout.

[0.7.0] - 2022-02-25

Added

  • A changelog.
  • simd flag, enabled by default. Leverages simd functions. This was implicitly always enabled prior.
  • parallel flag, disabled by default. Uses std + rayon to thread font loading.
  • Font.chars() gets all valid unicode codepoints that have mappings to glyph geometry in the font.
  • LinePosition holds various metadata on positioned lines computed during layout.

Changed

  • Layout.lines() returns a Option<Vec<LinePosition>> now instead of a line count.