Skip to content

Commit

Permalink
Update egui (#157)
Browse files Browse the repository at this point in the history
* Update egui to version 0.29.1

* Update changelog
  • Loading branch information
fluxxcode authored Oct 1, 2024
1 parent ad8bb8c commit 0ce7e32
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Unreleased
### 🚨 Breaking Changes
- Updated `egui` from version `0.28.0` to version `0.29.0` [#155](https://github.com/fluxxcode/egui-file-dialog/pull/155) (thanks [@crumblingstatue](https://github.com/crumblingstatue)!)
- Updated `egui` from version `0.28.0` to version `0.29.1` [#155](https://github.com/fluxxcode/egui-file-dialog/pull/155) and [#157](https://github.com/fluxxcode/egui-file-dialog/pull/157) (thanks [@crumblingstatue](https://github.com/crumblingstatue)!)

### 🔧 Changes
- Path edit is now selected as the desired file if the path entered is an existing file and the dialog is in `DialogueMode::SelectFile` mode [#151](https://github.com/fluxxcode/egui-file-dialog/pull/151)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = ["examples/*"]

[workspace.dependencies]
eframe = { version = "0.29.0", default-features = false, features = [
eframe = { version = "0.29.1", default-features = false, features = [
"glow",
"persistence",
] }
Expand All @@ -21,7 +21,7 @@ license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
egui = "0.29.0"
egui = "0.29.1"

# Used to fetch user folders
directories = "5.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ The following example shows the basic use of the file dialog with [eframe](https
Cargo.toml:
```toml
[dependencies]
eframe = "0.28.0"
eframe = "0.29.1"
egui-file-dialog = "0.6.1"
```

Expand Down

0 comments on commit 0ce7e32

Please sign in to comment.