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

Release 0.36.1 - Fix Sense::drag bug

This commit is contained in:
Lucas Meurer
2026-08-07 15:01:57 +02:00
parent 42cd8211c3
commit 4c1f2fae95
14 changed files with 79 additions and 31 deletions

View File

@@ -14,6 +14,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. 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.36.1 - 2026-08-07
* Fix `Sense::drag` detecting drags when clicking widget above it [#8396](https://github.com/emilk/egui/pull/8396) by [@lucasmerlin](https://github.com/lucasmerlin)
## 0.36.0 - 2026-08-05 ## 0.36.0 - 2026-08-05
### Highlights ✨ ### Highlights ✨

View File

@@ -1243,7 +1243,7 @@ checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
[[package]] [[package]]
name = "ecolor" name = "ecolor"
version = "0.36.0" version = "0.36.1"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"cint", "cint",
@@ -1255,7 +1255,7 @@ dependencies = [
[[package]] [[package]]
name = "eframe" name = "eframe"
version = "0.36.0" version = "0.36.1"
dependencies = [ dependencies = [
"ahash", "ahash",
"bytemuck", "bytemuck",
@@ -1293,7 +1293,7 @@ dependencies = [
[[package]] [[package]]
name = "egui" name = "egui"
version = "0.36.0" version = "0.36.1"
dependencies = [ dependencies = [
"accesskit", "accesskit",
"ahash", "ahash",
@@ -1315,7 +1315,7 @@ dependencies = [
[[package]] [[package]]
name = "egui-wgpu" name = "egui-wgpu"
version = "0.36.0" version = "0.36.1"
dependencies = [ dependencies = [
"ahash", "ahash",
"bytemuck", "bytemuck",
@@ -1333,7 +1333,7 @@ dependencies = [
[[package]] [[package]]
name = "egui-winit" name = "egui-winit"
version = "0.36.0" version = "0.36.1"
dependencies = [ dependencies = [
"accesskit_winit", "accesskit_winit",
"arboard", "arboard",
@@ -1356,7 +1356,7 @@ dependencies = [
[[package]] [[package]]
name = "egui_demo_app" name = "egui_demo_app"
version = "0.36.0" version = "0.36.1"
dependencies = [ dependencies = [
"accesskit", "accesskit",
"accesskit_consumer", "accesskit_consumer",
@@ -1385,7 +1385,7 @@ dependencies = [
[[package]] [[package]]
name = "egui_demo_lib" name = "egui_demo_lib"
version = "0.36.0" version = "0.36.1"
dependencies = [ dependencies = [
"criterion", "criterion",
"document-features", "document-features",
@@ -1403,7 +1403,7 @@ dependencies = [
[[package]] [[package]]
name = "egui_extras" name = "egui_extras"
version = "0.36.0" version = "0.36.1"
dependencies = [ dependencies = [
"ahash", "ahash",
"document-features", "document-features",
@@ -1423,7 +1423,7 @@ dependencies = [
[[package]] [[package]]
name = "egui_glow" name = "egui_glow"
version = "0.36.0" version = "0.36.1"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"document-features", "document-features",
@@ -1439,7 +1439,7 @@ dependencies = [
[[package]] [[package]]
name = "egui_inspection" name = "egui_inspection"
version = "0.36.0" version = "0.36.1"
dependencies = [ dependencies = [
"document-features", "document-features",
"egui", "egui",
@@ -1452,7 +1452,7 @@ dependencies = [
[[package]] [[package]]
name = "egui_kittest" name = "egui_kittest"
version = "0.36.0" version = "0.36.1"
dependencies = [ dependencies = [
"dify", "dify",
"document-features", "document-features",
@@ -1473,7 +1473,7 @@ dependencies = [
[[package]] [[package]]
name = "egui_tests" name = "egui_tests"
version = "0.36.0" version = "0.36.1"
dependencies = [ dependencies = [
"egui", "egui",
"egui_extras", "egui_extras",
@@ -1503,7 +1503,7 @@ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
[[package]] [[package]]
name = "emath" name = "emath"
version = "0.36.0" version = "0.36.1"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"document-features", "document-features",
@@ -1601,7 +1601,7 @@ dependencies = [
[[package]] [[package]]
name = "epaint" name = "epaint"
version = "0.36.0" version = "0.36.1"
dependencies = [ dependencies = [
"ahash", "ahash",
"bytemuck", "bytemuck",
@@ -1630,7 +1630,7 @@ dependencies = [
[[package]] [[package]]
name = "epaint_default_fonts" name = "epaint_default_fonts"
version = "0.36.0" version = "0.36.1"
[[package]] [[package]]
name = "equivalent" name = "equivalent"
@@ -3594,7 +3594,7 @@ dependencies = [
[[package]] [[package]]
name = "popups" name = "popups"
version = "0.36.0" version = "0.36.1"
dependencies = [ dependencies = [
"eframe", "eframe",
"env_logger", "env_logger",
@@ -5903,7 +5903,7 @@ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
[[package]] [[package]]
name = "xtask" name = "xtask"
version = "0.36.0" version = "0.36.1"
[[package]] [[package]]
name = "yaml-rust" name = "yaml-rust"

View File

@@ -25,7 +25,7 @@ members = [
edition = "2024" edition = "2024"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
rust-version = "1.95" rust-version = "1.95"
version = "0.36.0" version = "0.36.1"
[profile.release] [profile.release]
@@ -56,19 +56,19 @@ opt-level = 2
[workspace.dependencies] [workspace.dependencies]
emath = { version = "0.36.0", path = "crates/emath", default-features = false } emath = { version = "0.36.1", path = "crates/emath", default-features = false }
ecolor = { version = "0.36.0", path = "crates/ecolor", default-features = false } ecolor = { version = "0.36.1", path = "crates/ecolor", default-features = false }
epaint = { version = "0.36.0", path = "crates/epaint", default-features = false } epaint = { version = "0.36.1", path = "crates/epaint", default-features = false }
epaint_default_fonts = { version = "0.36.0", path = "crates/epaint_default_fonts" } epaint_default_fonts = { version = "0.36.1", path = "crates/epaint_default_fonts" }
egui = { version = "0.36.0", path = "crates/egui", default-features = false } egui = { version = "0.36.1", path = "crates/egui", default-features = false }
egui-winit = { version = "0.36.0", path = "crates/egui-winit", default-features = false } egui-winit = { version = "0.36.1", path = "crates/egui-winit", default-features = false }
egui_extras = { version = "0.36.0", path = "crates/egui_extras", default-features = false } egui_extras = { version = "0.36.1", path = "crates/egui_extras", default-features = false }
egui-wgpu = { version = "0.36.0", path = "crates/egui-wgpu", default-features = false } egui-wgpu = { version = "0.36.1", path = "crates/egui-wgpu", default-features = false }
egui_demo_lib = { version = "0.36.0", path = "crates/egui_demo_lib", default-features = false } egui_demo_lib = { version = "0.36.1", path = "crates/egui_demo_lib", default-features = false }
egui_glow = { version = "0.36.0", path = "crates/egui_glow", default-features = false } egui_glow = { version = "0.36.1", path = "crates/egui_glow", default-features = false }
egui_inspection = { version = "0.36.0", path = "crates/egui_inspection", default-features = false } egui_inspection = { version = "0.36.1", path = "crates/egui_inspection", default-features = false }
egui_kittest = { version = "0.36.0", path = "crates/egui_kittest", default-features = false } egui_kittest = { version = "0.36.1", path = "crates/egui_kittest", default-features = false }
eframe = { version = "0.36.0", path = "crates/eframe", default-features = false } eframe = { version = "0.36.1", path = "crates/eframe", default-features = false }
accesskit = "0.24.1" accesskit = "0.24.1"
accesskit_consumer = "0.35.0" # Can't update to 0.36+: kittest 0.4 pins accesskit_consumer 0.35, so bumping splits it into two versions accesskit_consumer = "0.35.0" # Can't update to 0.36+: kittest 0.4 pins accesskit_consumer 0.35, so bumping splits it into two versions

View File

@@ -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. 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.36.1 - 2026-08-07
Nothing new
## 0.36.0 - 2026-08-05 ## 0.36.0 - 2026-08-05
Nothing new Nothing new

View File

@@ -7,6 +7,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. 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.36.1 - 2026-08-07
Nothing new
## 0.36.0 - 2026-08-05 ## 0.36.0 - 2026-08-05
### 🔧 Changed ### 🔧 Changed
* Improve robustness of text input handling for `eframe/web` [#8045](https://github.com/emilk/egui/pull/8045) by [@umajho](https://github.com/umajho) * Improve robustness of text input handling for `eframe/web` [#8045](https://github.com/emilk/egui/pull/8045) by [@umajho](https://github.com/umajho)

View File

@@ -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. 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.36.1 - 2026-08-07
Nothing new
## 0.36.0 - 2026-08-05 ## 0.36.0 - 2026-08-05
* Upgrade wgpu to v30 [#8289](https://github.com/emilk/egui/pull/8289) by [@akx](https://github.com/akx) * Upgrade wgpu to v30 [#8289](https://github.com/emilk/egui/pull/8289) by [@akx](https://github.com/akx)
* Fix: ensure mapped range is dropped before unmapping buffer in capture [#8337](https://github.com/emilk/egui/pull/8337) by [@MagicCrazyMan](https://github.com/MagicCrazyMan) * Fix: ensure mapped range is dropped before unmapping buffer in capture [#8337](https://github.com/emilk/egui/pull/8337) by [@MagicCrazyMan](https://github.com/MagicCrazyMan)

View File

@@ -5,6 +5,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. 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.36.1 - 2026-08-07
Nothing new
## 0.36.0 - 2026-08-05 ## 0.36.0 - 2026-08-05
Nothing new Nothing new

View File

@@ -5,6 +5,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. 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.36.1 - 2026-08-07
Nothing new
## 0.36.0 - 2026-08-05 ## 0.36.0 - 2026-08-05
Nothing new Nothing new

View File

@@ -6,6 +6,10 @@ Changes since the last release can be found at <https://github.com/emilk/egui/co
## 0.36.1 - 2026-08-07
Nothing new
## 0.36.0 - 2026-08-05 ## 0.36.0 - 2026-08-05
Nothing new Nothing new

View File

@@ -5,6 +5,10 @@ All notable changes to the `egui_inspection` crate will be noted in this file.
This file is updated upon each release. 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. 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.36.1 - 2026-08-07
Nothing new
## 0.36.0 - 2026-08-05 ## 0.36.0 - 2026-08-05
* Add `egui_inspection::Request::Settle` [#8344](https://github.com/emilk/egui/pull/8344) by [@lucasmerlin](https://github.com/lucasmerlin) * Add `egui_inspection::Request::Settle` [#8344](https://github.com/emilk/egui/pull/8344) by [@lucasmerlin](https://github.com/lucasmerlin)

View File

@@ -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. 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.36.1 - 2026-08-07
Nothing new
## 0.36.0 - 2026-08-05 ## 0.36.0 - 2026-08-05
* Handle `ViewportCommand::InnerSize` in `egui_kittest` [#8350](https://github.com/emilk/egui/pull/8350) by [@lucasmerlin](https://github.com/lucasmerlin) * Handle `ViewportCommand::InnerSize` in `egui_kittest` [#8350](https://github.com/emilk/egui/pull/8350) by [@lucasmerlin](https://github.com/lucasmerlin)
* Report failing pixels by threshold when a kittest snapshot fails [#8360](https://github.com/emilk/egui/pull/8360) by [@emilk](https://github.com/emilk) * Report failing pixels by threshold when a kittest snapshot fails [#8360](https://github.com/emilk/egui/pull/8360) by [@emilk](https://github.com/emilk)

View File

@@ -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. 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.36.1 - 2026-08-07
Nothing new
## 0.36.0 - 2026-08-05 ## 0.36.0 - 2026-08-05
Nothing new Nothing new

View File

@@ -5,6 +5,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. 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.36.1 - 2026-08-07
Nothing new
## 0.36.0 - 2026-08-05 ## 0.36.0 - 2026-08-05
* Add `LayoutJob::clear` [#8376](https://github.com/emilk/egui/pull/8376) by [@emilk](https://github.com/emilk) * Add `LayoutJob::clear` [#8376](https://github.com/emilk/egui/pull/8376) by [@emilk](https://github.com/emilk)
* Add `extra_text_line_spacing` to control vertical spacing between text lines [#8040](https://github.com/emilk/egui/pull/8040) by [@rustbasic](https://github.com/rustbasic) * Add `extra_text_line_spacing` to control vertical spacing between text lines [#8040](https://github.com/emilk/egui/pull/8040) by [@rustbasic](https://github.com/rustbasic)

View File

@@ -5,6 +5,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. 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.36.1 - 2026-08-07
Nothing new
## 0.36.0 - 2026-08-05 ## 0.36.0 - 2026-08-05
Nothing new Nothing new