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
- 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.

8
Cargo.lock generated
View File

@@ -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",

View File

@@ -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" }

View File

@@ -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(