diff --git a/CHANGELOG.md b/CHANGELOG.md index 0551117..3bd38f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ ### Breaking Changes - Support Bevy 0.18 -- Update CEF version to 144.2.0+144.0.11 +- Update CEF version to 144.4.0 - Improve message loop handling - We can now specify command-line switches when creating the `CefPlugin`. - As a result, `CefPlugin` is no longer a unit struct. diff --git a/Cargo.lock b/Cargo.lock index 131b1a7..dc8de05 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1930,9 +1930,9 @@ dependencies = [ [[package]] name = "cef" -version = "144.2.0+144.0.11" +version = "144.4.0+144.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8743b7a17569f5a0b27a1ef72a2275dc096ae32263bf35fc5541f46e73084ec5" +checksum = "42320c2356f3fe4ed3f875b8fc93cbbabd1be3c59fcc0a8eb1e5b5c25616ac28" dependencies = [ "anyhow", "cargo_metadata", @@ -1950,9 +1950,9 @@ dependencies = [ [[package]] name = "cef-dll-sys" -version = "144.2.0+144.0.11" +version = "144.4.0+144.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf6882e1e10fe7ff0c9b1815e8a2943c0975be5bb48f15ca3b4cbb9dc4329d0e" +checksum = "6d802abd4ac0b8c12be11b6af24100c6e21543c265867ad53067268048bc7e3a" dependencies = [ "anyhow", "cmake", diff --git a/Cargo.toml b/Cargo.toml index b8c5128..928df56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,8 +38,8 @@ bevy = { version = "0.18", default-features = false, features = [ "picking", ] } bevy_remote = "0.18" -cef = { version = "144.2.0" } -cef-dll-sys = { version = "144.2.0", features = ["sandbox"] } +cef = { version = "144.4.0" } +cef-dll-sys = { version = "144.4.0", features = ["sandbox"] } bevy_cef = { path = "." , version = "0.2.0-dev" } bevy_cef_core = { path = "crates/bevy_cef_core", version = "0.2.0-dev" } async-channel = { version = "2.5" } diff --git a/examples/simple.rs b/examples/simple.rs index 808bc05..3dc5ddc 100644 --- a/examples/simple.rs +++ b/examples/simple.rs @@ -6,13 +6,7 @@ use bevy_cef::prelude::*; fn main() { App::new() .add_plugins(( - DefaultPlugins.set(WindowPlugin { - primary_window: Some(Window { - ime_enabled: true, - ..default() - }), - ..default() - }), + DefaultPlugins, CefPlugin::default(), )) .add_systems(