mirror of
https://github.com/emilk/egui.git
synced 2026-09-01 14:20:04 -04:00
Release 0.24.1 - Bug fixes
This commit is contained in:
@@ -4,7 +4,20 @@ All notable changes to the `eframe` crate.
|
||||
NOTE: [`egui-winit`](../egui-winit/CHANGELOG.md), [`egui_glium`](../egui_glium/CHANGELOG.md), [`egui_glow`](../egui_glow/CHANGELOG.md),and [`egui-wgpu`](../egui-wgpu/CHANGELOG.md) have their own changelogs!
|
||||
|
||||
This file is updated upon each release.
|
||||
Changes since the last release can be found by running the `scripts/generate_changelog.py` script.
|
||||
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.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)!)
|
||||
* Fix windowing problems when using the `x11` feature on Linux [#3643](https://github.com/emilk/egui/pull/3643)
|
||||
* Fix bugs when there are multiple monitors with different scales [#3663](https://github.com/emilk/egui/pull/3663)
|
||||
* `glow` backend: clear framebuffer color before calling `App::update` [#3665](https://github.com/emilk/egui/pull/3665)
|
||||
|
||||
#### Web:
|
||||
* Fix click-to-copy on Safari [#3621](https://github.com/emilk/egui/pull/3621)
|
||||
* Don't throw away frames on click/copy/cut [#3623](https://github.com/emilk/egui/pull/3623)
|
||||
* Remove dependency on `tts` [#3651](https://github.com/emilk/egui/pull/3651)
|
||||
|
||||
|
||||
## 0.24.0 - 2023-11-23
|
||||
|
||||
@@ -102,7 +102,7 @@ x11 = ["egui-winit/x11"]
|
||||
__screenshot = []
|
||||
|
||||
[dependencies]
|
||||
egui = { version = "0.24.0", path = "../egui", default-features = false, features = [
|
||||
egui = { version = "0.24.1", path = "../egui", default-features = false, features = [
|
||||
"bytemuck",
|
||||
"log",
|
||||
] }
|
||||
@@ -115,7 +115,7 @@ thiserror.workspace = true
|
||||
## Enable this when generating docs.
|
||||
document-features = { version = "0.2", optional = true }
|
||||
|
||||
egui_glow = { version = "0.24.0", path = "../egui_glow", optional = true, default-features = false }
|
||||
egui_glow = { version = "0.24.1", path = "../egui_glow", optional = true, default-features = false }
|
||||
glow = { version = "0.12", optional = true }
|
||||
ron = { version = "0.8", optional = true, features = ["integer128"] }
|
||||
serde = { version = "1", optional = true, features = ["derive"] }
|
||||
@@ -123,7 +123,7 @@ serde = { version = "1", optional = true, features = ["derive"] }
|
||||
# -------------------------------------------
|
||||
# native:
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||
egui-winit = { version = "0.24.0", path = "../egui-winit", default-features = false, features = [
|
||||
egui-winit = { version = "0.24.1", path = "../egui-winit", default-features = false, features = [
|
||||
"clipboard",
|
||||
"links",
|
||||
] }
|
||||
@@ -135,7 +135,7 @@ winit = { version = "0.28.1", default-features = false }
|
||||
|
||||
# optional native:
|
||||
directories-next = { version = "2", optional = true }
|
||||
egui-wgpu = { version = "0.24.0", path = "../egui-wgpu", optional = true, features = [
|
||||
egui-wgpu = { version = "0.24.1", path = "../egui-wgpu", optional = true, features = [
|
||||
"winit",
|
||||
] } # if wgpu is used, use it with winit
|
||||
pollster = { version = "0.3", optional = true } # needed for wgpu
|
||||
@@ -209,6 +209,6 @@ web-sys = { version = "0.3.58", features = [
|
||||
] }
|
||||
|
||||
# optional web:
|
||||
egui-wgpu = { version = "0.24.0", path = "../egui-wgpu", optional = true } # if wgpu is used, use it without (!) winit
|
||||
egui-wgpu = { version = "0.24.1", 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 }
|
||||
|
||||
Reference in New Issue
Block a user