Skip to content
Draft
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: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## [Unreleased]

## [v1.0.0]

- Fixed newline-only srv3 events creating empty visual lines (they are now ignored).
- Fixed incorrect advance being used during layout of glyphs from non-scalable fonts. Mostly affects emoji which previously took up excessive horizontal space.
- Implemented srv3 visual line padding.
Expand All @@ -24,6 +26,7 @@
- Fixed pixel scale handling in font matching. After the introduction of the new inline layout engine fonts were being unintentionally scaled *twice* on DPIs other than 72.
- Added Android NDK font provider for better font matching on Android.

[Unreleased]: https://github.com/afishhh/subrandr/compare/v0.2.2...HEAD
[Unreleased]: https://github.com/afishhh/subrandr/compare/v1.0.0...HEAD
[v1.0.0]: https://github.com/afishhh/subrandr/compare/v0.2.2...v1.0.0
[v0.2.2]: https://github.com/afishhh/subrandr/compare/v0.2.1...v0.2.2
[v0.2.1]: https://github.com/afishhh/subrandr/compare/v0.2.0...v0.2.1
10 changes: 5 additions & 5 deletions Cargo.lock

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

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[package]
name = "subrandr"
version.workspace = true
version = "1.0.0"
edition.workspace = true

[workspace.package]
version = "0.2.2"
# Version number for internal packages with unstable APIs.
version = "0.3.0"
edition = "2021"

[package.metadata.capi]
Expand Down