Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .tool-versions

This file was deleted.

21 changes: 15 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ repository = "https://github.com/dsh0416/godot-cef"

[workspace.dependencies]
godot = { version = "0.5.3", features = ["api-4-5", "experimental-threads"] }
cef = { version = "148.1.0", features = ["sandbox", "accelerated_osr"] }
cef-dll-sys = { version = "148.1.0", features = ["sandbox"] }
cef = { version = "148.2.0", features = ["sandbox", "accelerated_osr"] }
cef-dll-sys = { version = "148.2.0", features = ["sandbox"] }
process_path = "0.1.4"
plist = { version = "1" }
serde = { version = "1", features = ["derive"] }
Expand Down Expand Up @@ -54,7 +54,7 @@ url = "2"
percent-encoding = "2"
adblock = "0.12"
ciborium = "0.2"
quick-xml = "0.39"
quick-xml = "0.40"

[workspace.lints.rust]
unconditional_panic = "deny"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ For detailed build instructions, see [CONTRIBUTING.md](CONTRIBUTING.md#developme
export-cef-dir --version "$CEF_VERSION" --force "$CEF_PATH"
```

`CEF_VERSION` is pinned in `mise.toml` to the CEF runtime build version from the resolved `cef` / `cef-dll-sys` crate in `Cargo.lock`. For example, crate version `148.1.0+147.0.14` uses CEF runtime `147.0.14`.
`CEF_VERSION` is pinned in `mise.toml` to the CEF runtime build version from the resolved `cef` / `cef-dll-sys` crate in `Cargo.lock`. For example, crate version `148.2.0+148.0.8` uses CEF runtime `148.0.8`.

4. **Build**:
```bash
Expand Down
2 changes: 1 addition & 1 deletion docs/api/compatibility-matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This matrix summarizes the expected rendering mode behavior for each platform/ba

## Version Baseline

Current builds are based on the Rust `cef` / `cef-dll-sys` crates resolved as `148.1.0+147.0.14` in `Cargo.lock`. The matching CEF runtime version is pinned as `CEF_VERSION` in `mise.toml`; use it when installing CEF binaries manually:
Current builds are based on the Rust `cef` / `cef-dll-sys` crates resolved as `148.2.0+148.0.8` in `Cargo.lock`. The matching CEF runtime version is pinned as `CEF_VERSION` in `mise.toml`; use it when installing CEF binaries manually:

```bash
export CEF_PATH="$HOME/.local/share/cef"
Expand Down
2 changes: 1 addition & 1 deletion docs/zh_CN/api/compatibility-matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## 版本基线

当前构建基于 `Cargo.lock` 中解析到的 Rust `cef` / `cef-dll-sys` crate 版本:`148.1.0+147.0.14`。匹配的 CEF 运行时版本已在 `mise.toml` 中固定为 `CEF_VERSION`;手动安装 CEF 二进制文件时请使用它:
当前构建基于 `Cargo.lock` 中解析到的 Rust `cef` / `cef-dll-sys` crate 版本:`148.2.0+148.0.8`。匹配的 CEF 运行时版本已在 `mise.toml` 中固定为 `CEF_VERSION`;手动安装 CEF 二进制文件时请使用它:

```bash
export CEF_PATH="$HOME/.local/share/cef"
Expand Down
8 changes: 4 additions & 4 deletions mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
[tools]
# Nightly is required by retour-rs for feature(unboxed_closures, tuple_trait).
rust = { version = "nightly", components = "rustfmt,clippy" }
node = "24"
pnpm = "10.29.3"
"cargo:export-cef-dir" = "148.1.0+147.0.14"
node = "24.16.0"
pnpm = "11.3.0"
"cargo:export-cef-dir" = "148.2.0+148.0.8"

[env]
# Keep this in sync with the resolved cef / cef-dll-sys version in Cargo.lock,
# using the CEF runtime build version after the '+'.
CEF_VERSION = "147.0.14"
CEF_VERSION = "148.0.8"
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading