From 10888a26839f6ada794553093e54453e15ea28d2 Mon Sep 17 00:00:00 2001 From: Jannis <55352293+fluxxcode@users.noreply.github.com> Date: Tue, 17 Dec 2024 21:25:10 +0100 Subject: [PATCH] chore(releases): prepare release v0.8.0 (#222) --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- README.md | 9 ++------- examples/README.md | 3 +-- 4 files changed, 5 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8296874..98183042 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # egui-file-dialog changelog -## Unreleased +## 2024-12-17 - egui update, custom right panel and more ### ✨ Features diff --git a/Cargo.toml b/Cargo.toml index 7811eb9c..978e5507 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/README.md b/README.md index 49784ce4..8f9a95ad 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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`. \ diff --git a/examples/README.md b/examples/README.md index 3eb1b732..b80af78e 100644 --- a/examples/README.md +++ b/examples/README.md @@ -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"] } ``` @@ -97,4 +97,3 @@ cargo run --example pick_file_with_information_view ``` ![Screenshot](../media/examples/information_view.png) -