File tree 3 files changed +15
-6
lines changed
3 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,20 @@ 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.28.0] - 6-Jul-2024
9
+
10
+ ### Changed
11
+
12
+ - Update Bevy to 0.14 ([ #284 ] ( https://github.com/mvlabat/bevy_egui/pull/284 ) by @Friz64 ).
13
+ - Update Egui to 0.28 ([ #290 ] ( https://github.com/mvlabat/bevy_egui/pull/290 ) by @Swoorup ).
14
+ - Update webbrowser to 1.0.1
15
+
8
16
## [ 0.27.1] - 2-Jun-2024
9
17
10
18
### Changed
11
19
12
20
- Request Redraw only if really needed ([ #278 ] ( https://github.com/mvlabat/bevy_egui/pull/278 ) by @Maximetinu ).
13
- - Fixed light in the ` render_to_image_wideget ` example ([ #282 ] ( https://github.com/mvlabat/bevy_egui/pull/282 ) by @rlidwka ).
21
+ - Fix light in the ` render_to_image_wideget ` example ([ #282 ] ( https://github.com/mvlabat/bevy_egui/pull/282 ) by @rlidwka ).
14
22
15
23
## [ 0.27.0] - 18-Apr-2024
16
24
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " bevy_egui"
3
- version = " 0.27.1 "
3
+ version = " 0.28.0 "
4
4
authors = [
" mvlabat <[email protected] >" ]
5
5
description = " A plugin for Egui integration into Bevy"
6
6
license = " MIT"
Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ An example WASM project is live at [mvlabat.github.io/bevy_egui_web_showcase](ht
20
20
21
21
** Features:**
22
22
- Desktop and web platforms support
23
- - Clipboard (web support is limited to the same window, see [ rust-windowing/winit # 1829 ] ( https://github.com/rust-windowing/winit/issues/1829 ) )
23
+ - Clipboard
24
24
- Opening URLs
25
25
- Multiple windows support (see [ ./examples/two_windows.rs] ( https://github.com/mvlabat/bevy_egui/blob/v0.20.1/examples/two_windows.rs ) )
26
26
27
- ` bevy_egui ` can be compiled with using only ` bevy ` and ` egui ` as dependencies: ` manage_clipboard ` and ` open_url ` features,
27
+ ` bevy_egui ` can be compiled with using only ` bevy ` , ` egui ` and ` bytemuck ` as dependencies: ` manage_clipboard ` and ` open_url ` features,
28
28
that require additional crates, can be disabled.
29
29
30
30
![ bevy_egui] ( bevy_egui.png )
@@ -43,8 +43,8 @@ Here's a minimal usage example:
43
43
``` toml
44
44
# Cargo.toml
45
45
[dependencies ]
46
- bevy = " 0.13 "
47
- bevy_egui = " 0.27 "
46
+ bevy = " 0.14 "
47
+ bevy_egui = " 0.28 "
48
48
```
49
49
50
50
``` rust
@@ -85,6 +85,7 @@ cargo run --example ui
85
85
86
86
| bevy | bevy_egui |
87
87
| ------| -----------|
88
+ | 0.14 | 0.28 |
88
89
| 0.13 | 0.25-0.27 |
89
90
| 0.12 | 0.23-0.24 |
90
91
| 0.11 | 0.21-0.22 |
You can’t perform that action at this time.
0 commit comments