update: bump CEF version to 144.4.0 and adjust CHANGELOG

This commit is contained in:
not-elm
2026-02-07 11:56:58 +09:00
parent 40a3455f55
commit 9da992fdd6
4 changed files with 8 additions and 14 deletions

View File

@@ -3,7 +3,7 @@
### Breaking Changes ### Breaking Changes
- Support Bevy 0.18 - 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 - Improve message loop handling
- We can now specify command-line switches when creating the `CefPlugin`. - We can now specify command-line switches when creating the `CefPlugin`.
- As a result, `CefPlugin` is no longer a unit struct. - As a result, `CefPlugin` is no longer a unit struct.

8
Cargo.lock generated
View File

@@ -1930,9 +1930,9 @@ dependencies = [
[[package]] [[package]]
name = "cef" 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" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8743b7a17569f5a0b27a1ef72a2275dc096ae32263bf35fc5541f46e73084ec5" checksum = "42320c2356f3fe4ed3f875b8fc93cbbabd1be3c59fcc0a8eb1e5b5c25616ac28"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"cargo_metadata", "cargo_metadata",
@@ -1950,9 +1950,9 @@ dependencies = [
[[package]] [[package]]
name = "cef-dll-sys" 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" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf6882e1e10fe7ff0c9b1815e8a2943c0975be5bb48f15ca3b4cbb9dc4329d0e" checksum = "6d802abd4ac0b8c12be11b6af24100c6e21543c265867ad53067268048bc7e3a"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"cmake", "cmake",

View File

@@ -38,8 +38,8 @@ bevy = { version = "0.18", default-features = false, features = [
"picking", "picking",
] } ] }
bevy_remote = "0.18" bevy_remote = "0.18"
cef = { version = "144.2.0" } cef = { version = "144.4.0" }
cef-dll-sys = { version = "144.2.0", features = ["sandbox"] } cef-dll-sys = { version = "144.4.0", features = ["sandbox"] }
bevy_cef = { path = "." , version = "0.2.0-dev" } bevy_cef = { path = "." , version = "0.2.0-dev" }
bevy_cef_core = { path = "crates/bevy_cef_core", version = "0.2.0-dev" } bevy_cef_core = { path = "crates/bevy_cef_core", version = "0.2.0-dev" }
async-channel = { version = "2.5" } async-channel = { version = "2.5" }

View File

@@ -6,13 +6,7 @@ use bevy_cef::prelude::*;
fn main() { fn main() {
App::new() App::new()
.add_plugins(( .add_plugins((
DefaultPlugins.set(WindowPlugin { DefaultPlugins,
primary_window: Some(Window {
ime_enabled: true,
..default()
}),
..default()
}),
CefPlugin::default(), CefPlugin::default(),
)) ))
.add_systems( .add_systems(