Skip to content

Commit

Permalink
Bump to 0.29
Browse files Browse the repository at this point in the history
  • Loading branch information
vladbat00 committed Aug 18, 2024
1 parent c6895db commit edddb17
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.29.0] - 18-Aug-2024

### Added

- Initial worldspace UI support ([#304](https://github.com/mvlabat/bevy_egui/pull/304) by @TheButlah, @Schmarni-Dev)
- Paint callback support ([#303](https://github.com/mvlabat/bevy_egui/pull/303) by @no-materials)

### Changed

- Adapt to `web-sys` clipboard api change ([#301](https://github.com/mvlabat/bevy_egui/pull/301) by @no-materials).

### Fixed

- Clear modifier state when focus is lost ([#298](https://github.com/mvlabat/bevy_egui/pull/298) by @SludgePhD).
- Fix redraws ([#293](https://github.com/mvlabat/bevy_egui/pull/293)).

## [0.28.0] - 6-Jul-2024

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_egui"
version = "0.28.0"
version = "0.29.0"
authors = ["mvlabat <mvlabat@gmail.com>"]
description = "A plugin for Egui integration into Bevy"
license = "MIT"
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ An example WASM project is live at [mvlabat.github.io/bevy_egui_web_showcase](ht
- Desktop and web platforms support
- Clipboard
- Opening URLs
- Multiple windows support (see [./examples/two_windows.rs](https://github.com/mvlabat/bevy_egui/blob/v0.20.1/examples/two_windows.rs))
- Multiple windows support (see [./examples/two_windows.rs](https://github.com/mvlabat/bevy_egui/blob/v0.29.0/examples/two_windows.rs))
- Paint callback support (see [./examples/paint_callback.rs](https://github.com/mvlabat/bevy_egui/blob/v0.29.0/examples/paint_callback.rs))

`bevy_egui` can be compiled with using only `bevy`, `egui` and `bytemuck` as dependencies: `manage_clipboard` and `open_url` features,
that require additional crates, can be disabled.
Expand All @@ -44,7 +45,7 @@ Here's a minimal usage example:
# Cargo.toml
[dependencies]
bevy = "0.14"
bevy_egui = "0.28"
bevy_egui = "0.29"
```

```rust
Expand Down Expand Up @@ -85,7 +86,7 @@ cargo run --example ui

| bevy | bevy_egui |
|------|-----------|
| 0.14 | 0.28 |
| 0.14 | 0.28-0.29 |
| 0.13 | 0.25-0.27 |
| 0.12 | 0.23-0.24 |
| 0.11 | 0.21-0.22 |
Expand Down

0 comments on commit edddb17

Please sign in to comment.