1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-01 06:10:06 -04:00

Release 0.20.0 - AccessKit, prettier text, overlapping widgets

This commit is contained in:
Emil Ernerfeldt
2022-12-08 15:11:54 +01:00
parent 124ef8ddf8
commit 7d91e90481
22 changed files with 77 additions and 47 deletions

View File

@@ -3,6 +3,9 @@ All notable changes to the `egui_glow` integration will be noted in this file.
## Unreleased
## 0.20.0 - 2022-08-20
* Allow empty textures.
* Added `shader_version` variable on `EguiGlow::new` for easier cross compilling on different OpenGL | ES targets ([#1993](https://github.com/emilk/egui/pull/1993)).

View File

@@ -1,6 +1,6 @@
[package]
name = "egui_glow"
version = "0.19.0"
version = "0.20.0"
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
description = "Bindings for using egui natively using the glow library"
edition = "2021"
@@ -47,7 +47,7 @@ winit = ["egui-winit"]
[dependencies]
egui = { version = "0.19.0", path = "../egui", default-features = false, features = [
egui = { version = "0.20.0", path = "../egui", default-features = false, features = [
"bytemuck",
] }
@@ -62,7 +62,7 @@ document-features = { version = "0.2", optional = true }
# Native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
egui-winit = { version = "0.19.0", path = "../egui-winit", optional = true, default-features = false }
egui-winit = { version = "0.20.0", path = "../egui-winit", optional = true, default-features = false }
puffin = { version = "0.14", optional = true }
# Web:
@@ -72,7 +72,7 @@ wasm-bindgen = { version = "0.2" }
[dev-dependencies]
glutin = "0.30.2" # examples/pure_glow
glutin = "0.30.2" # examples/pure_glow
raw-window-handle = "0.5.0"