Skip to content

Commit 0653020

Browse files
authored
Merge pull request #54 from wravery/dev
feat: update to CEF 133.4.3 and add call to api_hash in cefsimple
2 parents 4f59007 + 139f99d commit 0653020

24 files changed

+47179
-44730
lines changed

.github/workflows/update-bindings.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
-F expectedHeadOid=${RESET_REV} \
186186
-F 'commitMessage=chore: update bindings' \
187187
-F [email protected]/api/createCommitOnBranch.graphql \
188-
${FILES}
188+
${FILES[@]}
189189
190190
git pull
191191

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ members = [
1010
]
1111

1212
[workspace.package]
13-
version = "132.3.2"
13+
version = "133.4.3"
1414
edition = "2021"
1515
license = "Apache-2.0 OR MIT"
1616
authors = [
@@ -21,7 +21,7 @@ authors = [
2121
repository = "https://github.com/tauri-apps/cef-rs"
2222

2323
[workspace.dependencies]
24-
cef-dll-sys = { version = "132.3.2", path = "sys" }
24+
cef-dll-sys = { version = "133.4.3", path = "sys" }
2525
download-cef = { version = "1.2", path = "download-cef" }
2626

2727
anyhow = "1"

cef/examples/cefsimple/main.rs

+2
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,8 @@ fn main() {
272272
loader
273273
};
274274

275+
let _ = api_hash(sys::CEF_API_VERSION_LAST, 0);
276+
275277
let args = Args::new();
276278
let cmd = args.as_cmd_line().unwrap();
277279

0 commit comments

Comments
 (0)