Skip to content

Commit

Permalink
chore(releases): prepare release v0.8.0 (fluxxcode#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
fluxxcode authored Dec 17, 2024
1 parent 0f75ef8 commit 10888a2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# egui-file-dialog changelog

## Unreleased
## 2024-12-17 - egui update, custom right panel and more

### ✨ Features

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "egui-file-dialog"
description = "An easy-to-use file dialog for egui"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
authors = ["fluxxcode"]
repository = "https://github.com/fluxxcode/egui-file-dialog"
Expand Down
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ Cargo.toml:

```toml
[dependencies]
eframe = "0.29.1"
egui-file-dialog = "0.7.0"
eframe = "0.30.0"
egui-file-dialog = "0.8.0"
```

main.rs:
Expand Down Expand Up @@ -119,11 +119,6 @@ fn main() -> eframe::Result<()> {
}
```

## Examples

The examples can be found in the [examples](examples) folder.
Further descriptions can be found in the [EXAMPLES.](examples/README.md) file.

## Keybindings

Keybindings can be used in the file dialog for easier navigation. All keybindings can be configured from the backend with `FileDialogKeyBindings` and `FileDialog::keybindings`. \
Expand Down
3 changes: 1 addition & 2 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Requires the feature `information_view` as well as these dependencies:
```toml
[dependencies]
egui-file-dialog = { version = "*", features = ["information_view"] }
egui_extras = { version = "0.29", features = ["all_loaders"] }
egui_extras = { version = "0.30", features = ["all_loaders"] }
# required by the egui loaders
image = { version = "0.25.5", features = ["bmp", "jpeg", "gif", "png", "tiff", "rayon"] }
```
Expand All @@ -97,4 +97,3 @@ cargo run --example pick_file_with_information_view
```

![Screenshot](../media/examples/information_view.png)

0 comments on commit 10888a2

Please sign in to comment.