1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 21:30:03 -04:00

Release 0.17.0 - Improved font selection and image handling

This commit is contained in:
Emil Ernerfeldt
2022-02-22 19:32:30 +01:00
parent 83225f46ad
commit a05520b9d3
25 changed files with 968 additions and 822 deletions

View File

@@ -1,9 +1,11 @@
# epaint changelog
All notable changes to the epaint crate will be documented in this file.
## Unreleased
## 0.17.0 - 2022-02-22
* Much improved font selection ([#1154](https://github.com/emilk/egui/pull/1154)):
* Replaced `TextStyle` with `FontId` which lets you pick any font size and font family.
* Replaced `Fonts::font_image` with `font_image_delta` for partial font atlas updates.

View File

@@ -1,6 +1,6 @@
[package]
name = "epaint"
version = "0.16.0"
version = "0.17.0"
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
description = "Minimal 2D graphics library for GUI work"
edition = "2021"
@@ -55,7 +55,7 @@ multi_threaded = ["parking_lot"]
[dependencies]
emath = { version = "0.16.0", path = "../emath" }
emath = { version = "0.17.0", path = "../emath" }
ab_glyph = "0.2.11"
ahash = { version = "0.7", features = ["std"], default-features = false }