You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16-2Lines changed: 16 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,27 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [0.37.0] - 1-Oct-2025
9
+
10
+
### Added
11
+
12
+
- Bindless texture support ([#416](https://github.com/vladbat00/bevy_egui/pull/416) by @PPakalns).
13
+
14
+
### Changed
15
+
16
+
- Update Bevy to 0.17 ([#410](https://github.com/vladbat00/bevy_egui/pull/410) by @fundon and @villor, [#422](https://github.com/vladbat00/bevy_egui/pull/422)).
17
+
18
+
### Fixed
19
+
20
+
- Fixed IME support ([#420](https://github.com/vladbat00/bevy_egui/pull/420)).
21
+
8
22
## [0.36.0] - 4-Aug-2025
9
23
10
-
## Added
24
+
###Added
11
25
12
26
- Make it configurable whether to render egui on top of bevy_ui or not ([#405](https://github.com/vladbat00/bevy_egui/pull/405) by @nightkr).
13
27
14
-
## Changed
28
+
###Changed
15
29
16
30
- Update Egui to 0.32 ([#402](https://github.com/vladbat00/bevy_egui/pull/402), [#399](https://github.com/vladbat00/bevy_egui/pull/399) by @globin and @hacknus).
Copy file name to clipboardExpand all lines: README.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,8 @@ A basic WASM example is live at [vladbat00.github.io/bevy_egui/ui](https://vladb
24
24
- Desktop and web platforms support
25
25
- Clipboard
26
26
- Opening URLs
27
-
- Multiple windows support and split-screen support (see [./examples/two_windows.rs](https://github.com/vladbat00/bevy_egui/blob/v0.36.0/examples/two_windows.rs) and [./examples/split_screen.rs](https://github.com/vladbat00/bevy_egui/blob/v0.36.0/examples/split_screen.rs))
28
-
- Paint callback support (see [./examples/paint_callback.rs](https://github.com/vladbat00/bevy_egui/blob/v0.36.0/examples/paint_callback.rs))
27
+
- Multiple windows support and split-screen support (see [./examples/two_windows.rs](https://github.com/vladbat00/bevy_egui/blob/v0.37.0/examples/two_windows.rs) and [./examples/split_screen.rs](https://github.com/vladbat00/bevy_egui/blob/v0.37.0/examples/split_screen.rs))
28
+
- Paint callback support (see [./examples/paint_callback.rs](https://github.com/vladbat00/bevy_egui/blob/v0.37.0/examples/paint_callback.rs))
29
29
- Mobile web virtual keyboard (still rough around the edges and only works without `prevent_default_event_handling` set to `false` in the `WindowPlugin` settings)
30
30
31
31

@@ -119,47 +119,47 @@ To run an example, use the following command (you may replace `ui` with a name o
Rendering test from [egui.rs](https://egui.rs). We don't fully pass it, help is wanted ([#291](https://github.com/vladbat00/bevy_egui/issues/291)).
Showing how to display an Egui side panel and transform a camera with a perspective projection to make rendering centered relative to the remaining screen area.
//! Rendering test from [egui.rs](https://egui.rs). We don't fully pass it, help is wanted ([#291](https://github.com/vladbat00/bevy_egui/issues/291)).
//! Showing how to display an Egui side panel and transform a camera with a perspective projection to make rendering centered relative to the remaining screen area.
0 commit comments