mirror of
https://github.com/emilk/egui.git
synced 2026-08-31 13:50:04 -04:00
Release 0.25.0 - Better keyboard input
This commit is contained in:
@@ -6,11 +6,14 @@ This file is updated upon each release.
|
||||
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
|
||||
## 0.25.0 - 2024-01-08
|
||||
* Add `Color32::from_hex` and `Color32::to_hex` [#3570](https://github.com/emilk/egui/pull/3570) [#3777](https://github.com/emilk/egui/pull/3777) (thanks [@YgorSouza](https://github.com/YgorSouza)!)
|
||||
|
||||
|
||||
## 0.24.1 - 2023-11-30
|
||||
* Optimize color conversions [#3666](https://github.com/emilk/egui/pull/3666)
|
||||
|
||||
|
||||
|
||||
## 0.24.0 - 2023-11-23
|
||||
* Update MSRV to Rust 1.72 [#3595](https://github.com/emilk/egui/pull/3595)
|
||||
* Add `#[inline]` to all color-related function [38b4234](https://github.com/emilk/egui/commit/38b4234c3282a7c044c18b77234ee8c204efe171)
|
||||
|
||||
@@ -7,6 +7,19 @@ This file is updated upon each release.
|
||||
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
|
||||
## 0.25.0 - 2024-01-08
|
||||
* If both `glow` and `wgpu` features are enabled, default to `wgpu` [#3717](https://github.com/emilk/egui/pull/3717)
|
||||
|
||||
#### Desktop/Native:
|
||||
* Update to winit 0.29 [#3649](https://github.com/emilk/egui/pull/3649) (thanks [@fornwall](https://github.com/fornwall)!)
|
||||
* Make glow `Send + Sync` again [#3646](https://github.com/emilk/egui/pull/3646) (thanks [@surban](https://github.com/surban)!)
|
||||
* Bug fix: framebuffer clear when using glow with multi-viewports [#3713](https://github.com/emilk/egui/pull/3713)
|
||||
* Fix: Let `accesskit` process window events [#3733](https://github.com/emilk/egui/pull/3733) (thanks [@DataTriny](https://github.com/DataTriny)!)
|
||||
|
||||
#### Web:
|
||||
* Fix building the `wasm32` docs for `docs.rs` [#3757](https://github.com/emilk/egui/pull/3757)
|
||||
|
||||
|
||||
## 0.24.1 - 2023-11-30
|
||||
#### Desktop/Native:
|
||||
* Fix window flashing white on launch [#3631](https://github.com/emilk/egui/pull/3631) (thanks [@zeozeozeo](https://github.com/zeozeozeo)!)
|
||||
|
||||
@@ -103,7 +103,7 @@ x11 = ["egui-winit/x11"]
|
||||
__screenshot = []
|
||||
|
||||
[dependencies]
|
||||
egui = { version = "0.24.1", path = "../egui", default-features = false, features = [
|
||||
egui = { version = "0.25.0", path = "../egui", default-features = false, features = [
|
||||
"bytemuck",
|
||||
"log",
|
||||
] }
|
||||
@@ -116,7 +116,7 @@ thiserror.workspace = true
|
||||
## Enable this when generating docs.
|
||||
document-features = { version = "0.2", optional = true }
|
||||
|
||||
egui_glow = { version = "0.24.1", path = "../egui_glow", optional = true, default-features = false }
|
||||
egui_glow = { version = "0.25.0", path = "../egui_glow", optional = true, default-features = false }
|
||||
glow = { workspace = true, optional = true }
|
||||
ron = { version = "0.8", optional = true, features = ["integer128"] }
|
||||
serde = { version = "1", optional = true, features = ["derive"] }
|
||||
@@ -124,7 +124,7 @@ serde = { version = "1", optional = true, features = ["derive"] }
|
||||
# -------------------------------------------
|
||||
# native:
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||
egui-winit = { version = "0.24.1", path = "../egui-winit", default-features = false, features = [
|
||||
egui-winit = { version = "0.25.0", path = "../egui-winit", default-features = false, features = [
|
||||
"clipboard",
|
||||
"links",
|
||||
] }
|
||||
@@ -136,7 +136,7 @@ winit = { version = "0.29.4", default-features = false, features = ["rwh_05"] }
|
||||
|
||||
# optional native:
|
||||
directories-next = { version = "2", optional = true }
|
||||
egui-wgpu = { version = "0.24.1", path = "../egui-wgpu", optional = true, features = [
|
||||
egui-wgpu = { version = "0.25.0", path = "../egui-wgpu", optional = true, features = [
|
||||
"winit",
|
||||
] } # if wgpu is used, use it with winit
|
||||
pollster = { version = "0.3", optional = true } # needed for wgpu
|
||||
@@ -210,6 +210,6 @@ web-sys = { version = "0.3.58", features = [
|
||||
] }
|
||||
|
||||
# optional web:
|
||||
egui-wgpu = { version = "0.24.1", path = "../egui-wgpu", optional = true } # if wgpu is used, use it without (!) winit
|
||||
egui-wgpu = { version = "0.25.0", path = "../egui-wgpu", optional = true } # if wgpu is used, use it without (!) winit
|
||||
raw-window-handle = { workspace = true, optional = true }
|
||||
wgpu = { workspace = true, optional = true }
|
||||
|
||||
@@ -6,6 +6,10 @@ This file is updated upon each release.
|
||||
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
|
||||
## 0.25.0 - 2024-01-08
|
||||
* Only call wgpu paint callback if viewport is positive [#3778](https://github.com/emilk/egui/pull/3778) (thanks [@msparkles](https://github.com/msparkles)!)
|
||||
|
||||
|
||||
## 0.24.1 - 2023-11-30
|
||||
* Add a few `puffin` profile scopes
|
||||
|
||||
|
||||
@@ -36,8 +36,8 @@ winit = ["dep:winit"]
|
||||
|
||||
|
||||
[dependencies]
|
||||
egui = { version = "0.24.1", path = "../egui", default-features = false }
|
||||
epaint = { version = "0.24.1", path = "../epaint", default-features = false, features = [
|
||||
egui = { version = "0.25.0", path = "../egui", default-features = false }
|
||||
epaint = { version = "0.25.0", path = "../epaint", default-features = false, features = [
|
||||
"bytemuck",
|
||||
] }
|
||||
|
||||
|
||||
@@ -5,6 +5,12 @@ This file is updated upon each release.
|
||||
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
|
||||
## 0.25.0 - 2024-01-08
|
||||
* Update to winit 0.29 [#3649](https://github.com/emilk/egui/pull/3649) (thanks [@fornwall](https://github.com/fornwall)!)
|
||||
* Fix: Let `accesskit` process window events [#3733](https://github.com/emilk/egui/pull/3733) (thanks [@DataTriny](https://github.com/DataTriny)!)
|
||||
* Simplify `egui_winit::State` [#3678](https://github.com/emilk/egui/pull/3678)
|
||||
|
||||
|
||||
## 0.24.1 - 2023-11-30
|
||||
* Don't treat `WindowEvent::CloseRequested` as consumed [#3627](https://github.com/emilk/egui/pull/3627) (thanks [@Aaron1011](https://github.com/Aaron1011)!)
|
||||
* Fix windowing problems when using the `x11` feature on Linux [#3643](https://github.com/emilk/egui/pull/3643)
|
||||
|
||||
@@ -55,7 +55,7 @@ wayland = ["winit/wayland", "bytemuck"]
|
||||
x11 = ["winit/x11", "bytemuck"]
|
||||
|
||||
[dependencies]
|
||||
egui = { version = "0.24.1", path = "../egui", default-features = false, features = [
|
||||
egui = { version = "0.25.0", path = "../egui", default-features = false, features = [
|
||||
"log",
|
||||
] }
|
||||
log = { version = "0.4", features = ["std"] }
|
||||
|
||||
@@ -76,7 +76,7 @@ unity = ["epaint/unity"]
|
||||
|
||||
|
||||
[dependencies]
|
||||
epaint = { version = "0.24.1", path = "../epaint", default-features = false }
|
||||
epaint = { version = "0.25.0", path = "../epaint", default-features = false }
|
||||
|
||||
ahash = { version = "0.8.6", default-features = false, features = [
|
||||
"no-rng", # we don't need DOS-protection, so we let users opt-in to it instead
|
||||
|
||||
@@ -36,18 +36,18 @@ chrono = { version = "0.4", default-features = false, features = [
|
||||
"js-sys",
|
||||
"wasmbind",
|
||||
] }
|
||||
eframe = { version = "0.24.1", path = "../eframe", default-features = false, features = [
|
||||
eframe = { version = "0.25.0", path = "../eframe", default-features = false, features = [
|
||||
"web_screen_reader",
|
||||
] }
|
||||
egui = { version = "0.24.1", path = "../egui", features = [
|
||||
egui = { version = "0.25.0", path = "../egui", features = [
|
||||
"callstack",
|
||||
"extra_debug_asserts",
|
||||
"log",
|
||||
] }
|
||||
egui_demo_lib = { version = "0.24.1", path = "../egui_demo_lib", features = [
|
||||
egui_demo_lib = { version = "0.25.0", path = "../egui_demo_lib", features = [
|
||||
"chrono",
|
||||
] }
|
||||
egui_extras = { version = "0.24.1", path = "../egui_extras", features = [
|
||||
egui_extras = { version = "0.25.0", path = "../egui_extras", features = [
|
||||
"image",
|
||||
] }
|
||||
log = { version = "0.4", features = ["std"] }
|
||||
|
||||
@@ -38,9 +38,9 @@ syntect = ["egui_extras/syntect"]
|
||||
|
||||
|
||||
[dependencies]
|
||||
egui = { version = "0.24.1", path = "../egui", default-features = false }
|
||||
egui_extras = { version = "0.24.1", path = "../egui_extras" }
|
||||
egui_plot = { version = "0.24.1", path = "../egui_plot" }
|
||||
egui = { version = "0.25.0", path = "../egui", default-features = false }
|
||||
egui_extras = { version = "0.25.0", path = "../egui_extras" }
|
||||
egui_plot = { version = "0.25.0", path = "../egui_plot" }
|
||||
log = { version = "0.4", features = ["std"] }
|
||||
unicode_names2 = { version = "0.6.0", default-features = false } # this old version has fewer dependencies
|
||||
|
||||
|
||||
@@ -5,6 +5,13 @@ This file is updated upon each release.
|
||||
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
|
||||
## 0.25.0 - 2024-01-08
|
||||
* Implement table row selection and hover highlighting [#3347](https://github.com/emilk/egui/pull/3347) (thanks [@laurooyen](https://github.com/laurooyen)!)
|
||||
* Fix `egui_extras::Table` scrolling bug [#3690](https://github.com/emilk/egui/pull/3690) (thanks [@abey79](https://github.com/abey79)!)
|
||||
* Fix crash due to assertion during image loading from http [#3750](https://github.com/emilk/egui/pull/3750)
|
||||
* Update resvg dependency of egui_extras [#3719](https://github.com/emilk/egui/pull/3719) (thanks [@PingPongun](https://github.com/PingPongun)!)
|
||||
|
||||
|
||||
## 0.24.2 - 2023-12-08 - `Table` scroll bug fix
|
||||
* Fix `Table` scrolling bug [#3690](https://github.com/emilk/egui/pull/3690)
|
||||
|
||||
|
||||
@@ -60,7 +60,7 @@ syntect = ["dep:syntect"]
|
||||
|
||||
|
||||
[dependencies]
|
||||
egui = { version = "0.24.1", path = "../egui", default-features = false, features = [
|
||||
egui = { version = "0.25.0", path = "../egui", default-features = false, features = [
|
||||
"serde",
|
||||
] }
|
||||
enum-map = { version = "2", features = ["serde"] }
|
||||
|
||||
@@ -5,6 +5,12 @@ This file is updated upon each release.
|
||||
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
|
||||
|
||||
## 0.25.0 - 2024-01-08
|
||||
* Update to glow 0.13 [#3715](https://github.com/emilk/egui/pull/3715)
|
||||
* Make glow `Send + Sync` again [#3646](https://github.com/emilk/egui/pull/3646) (thanks [@surban](https://github.com/surban)!)
|
||||
|
||||
|
||||
## 0.24.1 - 2023-11-30
|
||||
* Improve a docstring
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ winit = ["egui-winit"]
|
||||
|
||||
|
||||
[dependencies]
|
||||
egui = { version = "0.24.1", path = "../egui", default-features = false, features = [
|
||||
egui = { version = "0.25.0", path = "../egui", default-features = false, features = [
|
||||
"bytemuck",
|
||||
] }
|
||||
|
||||
@@ -59,7 +59,7 @@ document-features = { version = "0.2", optional = true }
|
||||
|
||||
# Native:
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||
egui-winit = { version = "0.24.1", path = "../egui-winit", optional = true, default-features = false }
|
||||
egui-winit = { version = "0.25.0", path = "../egui-winit", optional = true, default-features = false }
|
||||
puffin = { workspace = true, optional = true }
|
||||
|
||||
# Web:
|
||||
|
||||
@@ -5,6 +5,12 @@ This file is updated upon each release.
|
||||
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
|
||||
## 0.25.0 - 2024-01-08
|
||||
* Fix plot auto-bounds unset by default [#3722](https://github.com/emilk/egui/pull/3722) (thanks [@abey79](https://github.com/abey79)!)
|
||||
* Add methods to zoom a `Plot` programmatically [#2714](https://github.com/emilk/egui/pull/2714) (thanks [@YgorSouza](https://github.com/YgorSouza)!)
|
||||
* Add a public API for overriding plot legend traces' visibilities [#3534](https://github.com/emilk/egui/pull/3534) (thanks [@jayzhudev](https://github.com/jayzhudev)!)
|
||||
|
||||
|
||||
## 0.24.1 - 2024-12-03
|
||||
* Fix plot auto-bounds default [#3722](https://github.com/emilk/egui/pull/3722) (thanks [@abey79](https://github.com/abey79)!)
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@ serde = ["dep:serde", "egui/serde"]
|
||||
|
||||
|
||||
[dependencies]
|
||||
egui = { version = "0.24.1", path = "../egui", default-features = false }
|
||||
egui = { version = "0.25.0", path = "../egui", default-features = false }
|
||||
|
||||
|
||||
#! ### Optional dependencies
|
||||
|
||||
@@ -5,6 +5,14 @@ This file is updated upon each release.
|
||||
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
|
||||
## 0.25.0 - 2024-01-08
|
||||
* Replace a special `Color32::PLACEHOLDER` with widget fallback color [#3727](https://github.com/emilk/egui/pull/3727)
|
||||
* Add support for dashed lines with offset [#3720](https://github.com/emilk/egui/pull/3720) (thanks [@oscargus](https://github.com/oscargus)!)
|
||||
* Impl `Clone` for `Fonts` [#3737](https://github.com/emilk/egui/pull/3737)
|
||||
* Fix: allow using the full Private Use Area for custom fonts [#3509](https://github.com/emilk/egui/pull/3509) (thanks [@varphone](https://github.com/varphone)!)
|
||||
* Add `Color32::from_hex` and `Color32::to_hex` [#3570](https://github.com/emilk/egui/pull/3570) [#3777](https://github.com/emilk/egui/pull/3777) (thanks [@YgorSouza](https://github.com/YgorSouza)!)
|
||||
|
||||
|
||||
## 0.24.1 - 2023-11-30
|
||||
* Optimize `FontImage::srgba_pixels` and reduce the initial font atlas texture size from 8MiB -> 1MiB [#3666](https://github.com/emilk/egui/pull/3666)
|
||||
|
||||
|
||||
@@ -70,8 +70,8 @@ serde = ["dep:serde", "ahash/serde", "emath/serde", "ecolor/serde"]
|
||||
unity = []
|
||||
|
||||
[dependencies]
|
||||
emath = { version = "0.24.1", path = "../emath" }
|
||||
ecolor = { version = "0.24.1", path = "../ecolor" }
|
||||
emath = { version = "0.25.0", path = "../emath" }
|
||||
ecolor = { version = "0.25.0", path = "../ecolor" }
|
||||
|
||||
ab_glyph = "0.2.11"
|
||||
ahash = { version = "0.8.1", default-features = false, features = [
|
||||
|
||||
Reference in New Issue
Block a user