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 @@ -23,6 +23,10 @@ This release has an [MSRV] of 1.82.

### Changed

#### Fontique

- The fontconfig backend, used to enumerate system fonts on Linux, has been rewritten to call into the system's fontconfig library instead of parsing fontconfig's configuration files itself. This should significantly improve the behavior of system fonts and generic families on Linux. ([#378][] by [@valadaptive][])

### Fixed

#### Fontique
Expand Down Expand Up @@ -305,6 +309,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
[#378]: https://github.com/linebender/parley/pull/378
[#380]: https://github.com/linebender/parley/pull/380
[#385]: https://github.com/linebender/parley/pull/385

Expand Down
23 changes: 12 additions & 11 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions fontique/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ system = [
"dep:objc2-core-foundation",
"dep:objc2-core-text",
"dep:objc2-foundation",
"dep:fontconfig-cache-parser",
"dep:yeslogic-fontconfig-sys",
"dep:roxmltree",
]

Expand Down Expand Up @@ -74,7 +74,7 @@ objc2-core-text = { version = "0.3.1", optional = true, default-features = false
] }

[target.'cfg(target_os = "linux")'.dependencies]
fontconfig-cache-parser = { version = "0.2.0", optional = true }
yeslogic-fontconfig-sys = { version = "6.0.0", optional = true, features = ["dlopen"] }

[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
[target.'cfg(target_os = "android")'.dependencies]
roxmltree = { version = "0.20.0", optional = true }
Loading
Loading