Skip to content

Commit 628e0f2

Browse files
authored
Merge pull request #357 from tauri-apps/get-latest
2 parents db2476f + 4912f49 commit 628e0f2

9 files changed

+26
-26
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = [
1212
]
1313

1414
[workspace.package]
15-
version = "145.1.1+145.0.23"
15+
version = "145.2.0+145.0.24"
1616
edition = "2021"
1717
license = "Apache-2.0 OR MIT"
1818
authors = [
@@ -24,7 +24,7 @@ repository = "https://github.com/tauri-apps/cef-rs"
2424

2525
[workspace.dependencies]
2626
cef = { path = "cef", default-features = false }
27-
cef-dll-sys = { version = "145.1.1", path = "sys" }
27+
cef-dll-sys = { version = "145.2.0", path = "sys" }
2828
download-cef = { version = "2.3", path = "download-cef" }
2929

3030
anyhow = "1"

sys/src/bindings/aarch64_apple_darwin.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14500;
2626
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2727
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2828
pub const CEF_API_VERSION: i32 = 999999;
29-
pub const CEF_VERSION: &[u8; 41] = b"145.0.23+g3e7fe1c+chromium-145.0.7632.68\0";
29+
pub const CEF_VERSION: &[u8; 41] = b"145.0.24+gad514df+chromium-145.0.7632.76\0";
3030
pub const CEF_VERSION_MAJOR: i32 = 145;
3131
pub const CEF_VERSION_MINOR: i32 = 0;
32-
pub const CEF_VERSION_PATCH: i32 = 23;
32+
pub const CEF_VERSION_PATCH: i32 = 24;
3333
pub const CHROME_VERSION_MAJOR: i32 = 145;
3434
pub const CHROME_VERSION_MINOR: i32 = 0;
3535
pub const CHROME_VERSION_BUILD: i32 = 7632;
36-
pub const CHROME_VERSION_PATCH: i32 = 68;
36+
pub const CHROME_VERSION_PATCH: i32 = 76;
3737
unsafe extern "C" {
3838
#[doc = "\n Load the CEF library at the specified |path|. Returns true (1) on\n success and false (0) on failure.\n"]
3939
pub fn cef_load_library(path: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int;

sys/src/bindings/aarch64_pc_windows_msvc.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14500;
2626
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2727
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2828
pub const CEF_API_VERSION: i32 = 999999;
29-
pub const CEF_VERSION: &[u8; 41] = b"145.0.23+g3e7fe1c+chromium-145.0.7632.68\0";
29+
pub const CEF_VERSION: &[u8; 41] = b"145.0.24+gad514df+chromium-145.0.7632.76\0";
3030
pub const CEF_VERSION_MAJOR: i32 = 145;
3131
pub const CEF_VERSION_MINOR: i32 = 0;
32-
pub const CEF_VERSION_PATCH: i32 = 23;
32+
pub const CEF_VERSION_PATCH: i32 = 24;
3333
pub const CHROME_VERSION_MAJOR: i32 = 145;
3434
pub const CHROME_VERSION_MINOR: i32 = 0;
3535
pub const CHROME_VERSION_BUILD: i32 = 7632;
36-
pub const CHROME_VERSION_PATCH: i32 = 68;
36+
pub const CHROME_VERSION_PATCH: i32 = 76;
3737
unsafe extern "C" {
3838
#[doc = "\n Configures the CEF API version and returns API hashes for the libcef\n library. The returned string is owned by the library and should not be\n freed. The |version| parameter should be CEF_API_VERSION and any changes to\n this value will be ignored after the first call to this method. The |entry|\n parameter describes which hash value will be returned:\n\n 0 - CEF_API_HASH_PLATFORM\n 1 - CEF_API_HASH_UNIVERSAL (deprecated, same as CEF_API_HASH_PLATFORM)\n 2 - CEF_COMMIT_HASH (from cef_version.h)\n"]
3939
pub fn cef_api_hash(

sys/src/bindings/aarch64_unknown_linux_gnu.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14500;
2626
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2727
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2828
pub const CEF_API_VERSION: i32 = 999999;
29-
pub const CEF_VERSION: &[u8; 41] = b"145.0.23+g3e7fe1c+chromium-145.0.7632.68\0";
29+
pub const CEF_VERSION: &[u8; 41] = b"145.0.24+gad514df+chromium-145.0.7632.76\0";
3030
pub const CEF_VERSION_MAJOR: i32 = 145;
3131
pub const CEF_VERSION_MINOR: i32 = 0;
32-
pub const CEF_VERSION_PATCH: i32 = 23;
32+
pub const CEF_VERSION_PATCH: i32 = 24;
3333
pub const CHROME_VERSION_MAJOR: i32 = 145;
3434
pub const CHROME_VERSION_MINOR: i32 = 0;
3535
pub const CHROME_VERSION_BUILD: i32 = 7632;
36-
pub const CHROME_VERSION_PATCH: i32 = 68;
36+
pub const CHROME_VERSION_PATCH: i32 = 76;
3737
pub type __uint16_t = ::std::os::raw::c_ushort;
3838
pub type __uint_least16_t = __uint16_t;
3939
pub type __pid_t = ::std::os::raw::c_int;

sys/src/bindings/arm_unknown_linux_gnueabi.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14500;
2626
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2727
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2828
pub const CEF_API_VERSION: i32 = 999999;
29-
pub const CEF_VERSION: &[u8; 41] = b"145.0.23+g3e7fe1c+chromium-145.0.7632.68\0";
29+
pub const CEF_VERSION: &[u8; 41] = b"145.0.24+gad514df+chromium-145.0.7632.76\0";
3030
pub const CEF_VERSION_MAJOR: i32 = 145;
3131
pub const CEF_VERSION_MINOR: i32 = 0;
32-
pub const CEF_VERSION_PATCH: i32 = 23;
32+
pub const CEF_VERSION_PATCH: i32 = 24;
3333
pub const CHROME_VERSION_MAJOR: i32 = 145;
3434
pub const CHROME_VERSION_MINOR: i32 = 0;
3535
pub const CHROME_VERSION_BUILD: i32 = 7632;
36-
pub const CHROME_VERSION_PATCH: i32 = 68;
36+
pub const CHROME_VERSION_PATCH: i32 = 76;
3737
pub type __uint16_t = ::std::os::raw::c_ushort;
3838
pub type __uint_least16_t = __uint16_t;
3939
pub type __pid_t = ::std::os::raw::c_int;

sys/src/bindings/i686_pc_windows_msvc.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14500;
2626
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2727
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2828
pub const CEF_API_VERSION: i32 = 999999;
29-
pub const CEF_VERSION: &[u8; 41] = b"145.0.23+g3e7fe1c+chromium-145.0.7632.68\0";
29+
pub const CEF_VERSION: &[u8; 41] = b"145.0.24+gad514df+chromium-145.0.7632.76\0";
3030
pub const CEF_VERSION_MAJOR: i32 = 145;
3131
pub const CEF_VERSION_MINOR: i32 = 0;
32-
pub const CEF_VERSION_PATCH: i32 = 23;
32+
pub const CEF_VERSION_PATCH: i32 = 24;
3333
pub const CHROME_VERSION_MAJOR: i32 = 145;
3434
pub const CHROME_VERSION_MINOR: i32 = 0;
3535
pub const CHROME_VERSION_BUILD: i32 = 7632;
36-
pub const CHROME_VERSION_PATCH: i32 = 68;
36+
pub const CHROME_VERSION_PATCH: i32 = 76;
3737
unsafe extern "C" {
3838
#[doc = "\n Configures the CEF API version and returns API hashes for the libcef\n library. The returned string is owned by the library and should not be\n freed. The |version| parameter should be CEF_API_VERSION and any changes to\n this value will be ignored after the first call to this method. The |entry|\n parameter describes which hash value will be returned:\n\n 0 - CEF_API_HASH_PLATFORM\n 1 - CEF_API_HASH_UNIVERSAL (deprecated, same as CEF_API_HASH_PLATFORM)\n 2 - CEF_COMMIT_HASH (from cef_version.h)\n"]
3939
pub fn cef_api_hash(

sys/src/bindings/x86_64_apple_darwin.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14500;
2626
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2727
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2828
pub const CEF_API_VERSION: i32 = 999999;
29-
pub const CEF_VERSION: &[u8; 41] = b"145.0.23+g3e7fe1c+chromium-145.0.7632.68\0";
29+
pub const CEF_VERSION: &[u8; 41] = b"145.0.24+gad514df+chromium-145.0.7632.76\0";
3030
pub const CEF_VERSION_MAJOR: i32 = 145;
3131
pub const CEF_VERSION_MINOR: i32 = 0;
32-
pub const CEF_VERSION_PATCH: i32 = 23;
32+
pub const CEF_VERSION_PATCH: i32 = 24;
3333
pub const CHROME_VERSION_MAJOR: i32 = 145;
3434
pub const CHROME_VERSION_MINOR: i32 = 0;
3535
pub const CHROME_VERSION_BUILD: i32 = 7632;
36-
pub const CHROME_VERSION_PATCH: i32 = 68;
36+
pub const CHROME_VERSION_PATCH: i32 = 76;
3737
unsafe extern "C" {
3838
#[doc = "\n Load the CEF library at the specified |path|. Returns true (1) on\n success and false (0) on failure.\n"]
3939
pub fn cef_load_library(path: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int;

sys/src/bindings/x86_64_pc_windows_msvc.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14500;
2626
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2727
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2828
pub const CEF_API_VERSION: i32 = 999999;
29-
pub const CEF_VERSION: &[u8; 41] = b"145.0.23+g3e7fe1c+chromium-145.0.7632.68\0";
29+
pub const CEF_VERSION: &[u8; 41] = b"145.0.24+gad514df+chromium-145.0.7632.76\0";
3030
pub const CEF_VERSION_MAJOR: i32 = 145;
3131
pub const CEF_VERSION_MINOR: i32 = 0;
32-
pub const CEF_VERSION_PATCH: i32 = 23;
32+
pub const CEF_VERSION_PATCH: i32 = 24;
3333
pub const CHROME_VERSION_MAJOR: i32 = 145;
3434
pub const CHROME_VERSION_MINOR: i32 = 0;
3535
pub const CHROME_VERSION_BUILD: i32 = 7632;
36-
pub const CHROME_VERSION_PATCH: i32 = 68;
36+
pub const CHROME_VERSION_PATCH: i32 = 76;
3737
unsafe extern "C" {
3838
#[doc = "\n Configures the CEF API version and returns API hashes for the libcef\n library. The returned string is owned by the library and should not be\n freed. The |version| parameter should be CEF_API_VERSION and any changes to\n this value will be ignored after the first call to this method. The |entry|\n parameter describes which hash value will be returned:\n\n 0 - CEF_API_HASH_PLATFORM\n 1 - CEF_API_HASH_UNIVERSAL (deprecated, same as CEF_API_HASH_PLATFORM)\n 2 - CEF_COMMIT_HASH (from cef_version.h)\n"]
3939
pub fn cef_api_hash(

sys/src/bindings/x86_64_unknown_linux_gnu.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14500;
2626
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2727
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2828
pub const CEF_API_VERSION: i32 = 999999;
29-
pub const CEF_VERSION: &[u8; 41] = b"145.0.23+g3e7fe1c+chromium-145.0.7632.68\0";
29+
pub const CEF_VERSION: &[u8; 41] = b"145.0.24+gad514df+chromium-145.0.7632.76\0";
3030
pub const CEF_VERSION_MAJOR: i32 = 145;
3131
pub const CEF_VERSION_MINOR: i32 = 0;
32-
pub const CEF_VERSION_PATCH: i32 = 23;
32+
pub const CEF_VERSION_PATCH: i32 = 24;
3333
pub const CHROME_VERSION_MAJOR: i32 = 145;
3434
pub const CHROME_VERSION_MINOR: i32 = 0;
3535
pub const CHROME_VERSION_BUILD: i32 = 7632;
36-
pub const CHROME_VERSION_PATCH: i32 = 68;
36+
pub const CHROME_VERSION_PATCH: i32 = 76;
3737
pub type __uint16_t = ::std::os::raw::c_ushort;
3838
pub type __uint_least16_t = __uint16_t;
3939
pub type __pid_t = ::std::os::raw::c_int;

0 commit comments

Comments
 (0)