1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 12:50:04 -04:00

Release 0.16.0 - Context menus and rich text

This commit is contained in:
Emil Ernerfeldt
2021-12-29 12:07:05 +01:00
parent 77869c21ea
commit 0146c7e7fc
21 changed files with 115 additions and 84 deletions

View File

@@ -4,9 +4,12 @@ All notable changes to the epaint crate will be documented in this file.
## Unreleased
* `Rgba` now implements `Hash` ([#886](https://github.com/emilk/egui/pull/886)).
## 0.16.0 - 2021-12-29
* Anti-alias path ends ([#893](https://github.com/emilk/egui/pull/893)).
* Rename `Texture` to `FontImage`.
* `Rgba` now implements `Hash` ([#886](https://github.com/emilk/egui/pull/886)).
* Renamed `Texture` to `FontImage`.
## 0.15.0 - 2021-10-24

View File

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