Skip to content

Commit

Permalink
Updated to egui 0.28 && bumped version
Browse files Browse the repository at this point in the history
Co-authored-by: Nicolas <[email protected]>
  • Loading branch information
ItsEthra and bircni committed Jul 5, 2024
1 parent 201c337 commit b828cbc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "egui-notify"
version = "0.14.0"
version = "0.15.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/ItsEthra/egui-notify"
Expand All @@ -12,10 +12,10 @@ readme = "README.md"
path = "src/lib.rs"

[dependencies]
egui = { version = "0.27.0", default-features = false }
egui = { version = "0.28.0", default-features = false }

[dev-dependencies]
eframe = { version = "0.27.0", default-features = false, features = [
eframe = { version = "0.28.0", default-features = false, features = [
"default_fonts",
"glow",
] }
Expand Down
4 changes: 2 additions & 2 deletions examples/all.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ fn main() -> eframe::Result<()> {
}
cc.egui_ctx.set_fonts(font_def);

Box::new(ExampleApp {
Ok(Box::new(ExampleApp {
caption: r#"Hello! It's a multiline caption
Next line
Another one
Expand All @@ -157,7 +157,7 @@ And another one"#
font_size: 16.,
custom_level_string: "$".into(),
custom_level_color: egui::Color32::GREEN,
})
}))
}),
)
}

0 comments on commit b828cbc

Please sign in to comment.