Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ This release has an [MSRV] of 1.82.

### Fixed

#### Fontique

- Font family name aliases (secondary names for font families, often in another language) not being registered. ([#380][] by [@valadaptive][])

## [0.5.0] - 2025-06-01

This release has an [MSRV] of 1.82.
Expand Down Expand Up @@ -292,6 +296,7 @@ This release has an [MSRV][] of 1.70.
[#353]: https://github.com/linebender/parley/pull/353
[#362]: https://github.com/linebender/parley/pull/362
[#369]: https://github.com/linebender/parley/pull/369
[#380]: https://github.com/linebender/parley/pull/380

[Unreleased]: https://github.com/linebender/parley/compare/v0.5.0...HEAD
[0.5.0]: https://github.com/linebender/parley/compare/v0.4.0...v0.5.0
Expand Down
2 changes: 1 addition & 1 deletion fontique/src/family_name.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl FamilyNameMap {
}
let new_name = FamilyName {
name: name.into(),
id: FamilyId::new(),
id,
};
self.name_map.insert(key.as_bytes().into(), new_name);
Comment thread
valadaptive marked this conversation as resolved.
}
Expand Down