Merge pull request #325 from tauri-apps/get-latest

This commit is contained in:
Bill Avery
2026-01-08 18:14:14 -08:00
committed by GitHub
9 changed files with 26 additions and 26 deletions

View File

@@ -12,7 +12,7 @@ members = [
]
[workspace.package]
version = "143.6.0+143.0.13"
version = "143.7.0+143.0.14"
edition = "2021"
license = "Apache-2.0 OR MIT"
authors = [
@@ -24,7 +24,7 @@ repository = "https://github.com/tauri-apps/cef-rs"
[workspace.dependencies]
cef = { path = "cef", default-features = false }
cef-dll-sys = { version = "143.6.0", path = "sys" }
cef-dll-sys = { version = "143.7.0", path = "sys" }
download-cef = { version = "2.3", path = "download-cef" }
anyhow = "1"

View File

@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
pub const CEF_API_VERSION_NEXT: i32 = 999998;
pub const CEF_API_VERSION: i32 = 999999;
pub const CEF_VERSION: &[u8; 42] = b"143.0.13+g30cb3bd+chromium-143.0.7499.170\0";
pub const CEF_VERSION: &[u8; 42] = b"143.0.14+gdd46a37+chromium-143.0.7499.193\0";
pub const CEF_VERSION_MAJOR: i32 = 143;
pub const CEF_VERSION_MINOR: i32 = 0;
pub const CEF_VERSION_PATCH: i32 = 13;
pub const CEF_VERSION_PATCH: i32 = 14;
pub const CHROME_VERSION_MAJOR: i32 = 143;
pub const CHROME_VERSION_MINOR: i32 = 0;
pub const CHROME_VERSION_BUILD: i32 = 7499;
pub const CHROME_VERSION_PATCH: i32 = 170;
pub const CHROME_VERSION_PATCH: i32 = 193;
unsafe extern "C" {
#[doc = "\n Load the CEF library at the specified |path|. Returns true (1) on\n success and false (0) on failure.\n"]
pub fn cef_load_library(path: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int;

View File

@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
pub const CEF_API_VERSION_NEXT: i32 = 999998;
pub const CEF_API_VERSION: i32 = 999999;
pub const CEF_VERSION: &[u8; 42] = b"143.0.13+g30cb3bd+chromium-143.0.7499.170\0";
pub const CEF_VERSION: &[u8; 42] = b"143.0.14+gdd46a37+chromium-143.0.7499.193\0";
pub const CEF_VERSION_MAJOR: i32 = 143;
pub const CEF_VERSION_MINOR: i32 = 0;
pub const CEF_VERSION_PATCH: i32 = 13;
pub const CEF_VERSION_PATCH: i32 = 14;
pub const CHROME_VERSION_MAJOR: i32 = 143;
pub const CHROME_VERSION_MINOR: i32 = 0;
pub const CHROME_VERSION_BUILD: i32 = 7499;
pub const CHROME_VERSION_PATCH: i32 = 170;
pub const CHROME_VERSION_PATCH: i32 = 193;
unsafe extern "C" {
#[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"]
pub fn cef_api_hash(

View File

@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
pub const CEF_API_VERSION_NEXT: i32 = 999998;
pub const CEF_API_VERSION: i32 = 999999;
pub const CEF_VERSION: &[u8; 42] = b"143.0.13+g30cb3bd+chromium-143.0.7499.170\0";
pub const CEF_VERSION: &[u8; 42] = b"143.0.14+gdd46a37+chromium-143.0.7499.193\0";
pub const CEF_VERSION_MAJOR: i32 = 143;
pub const CEF_VERSION_MINOR: i32 = 0;
pub const CEF_VERSION_PATCH: i32 = 13;
pub const CEF_VERSION_PATCH: i32 = 14;
pub const CHROME_VERSION_MAJOR: i32 = 143;
pub const CHROME_VERSION_MINOR: i32 = 0;
pub const CHROME_VERSION_BUILD: i32 = 7499;
pub const CHROME_VERSION_PATCH: i32 = 170;
pub const CHROME_VERSION_PATCH: i32 = 193;
pub type __uint16_t = ::std::os::raw::c_ushort;
pub type __uint_least16_t = __uint16_t;
pub type __pid_t = ::std::os::raw::c_int;

View File

@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
pub const CEF_API_VERSION_NEXT: i32 = 999998;
pub const CEF_API_VERSION: i32 = 999999;
pub const CEF_VERSION: &[u8; 42] = b"143.0.13+g30cb3bd+chromium-143.0.7499.170\0";
pub const CEF_VERSION: &[u8; 42] = b"143.0.14+gdd46a37+chromium-143.0.7499.193\0";
pub const CEF_VERSION_MAJOR: i32 = 143;
pub const CEF_VERSION_MINOR: i32 = 0;
pub const CEF_VERSION_PATCH: i32 = 13;
pub const CEF_VERSION_PATCH: i32 = 14;
pub const CHROME_VERSION_MAJOR: i32 = 143;
pub const CHROME_VERSION_MINOR: i32 = 0;
pub const CHROME_VERSION_BUILD: i32 = 7499;
pub const CHROME_VERSION_PATCH: i32 = 170;
pub const CHROME_VERSION_PATCH: i32 = 193;
pub type __uint16_t = ::std::os::raw::c_ushort;
pub type __uint_least16_t = __uint16_t;
pub type __pid_t = ::std::os::raw::c_int;

View File

@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
pub const CEF_API_VERSION_NEXT: i32 = 999998;
pub const CEF_API_VERSION: i32 = 999999;
pub const CEF_VERSION: &[u8; 42] = b"143.0.13+g30cb3bd+chromium-143.0.7499.170\0";
pub const CEF_VERSION: &[u8; 42] = b"143.0.14+gdd46a37+chromium-143.0.7499.193\0";
pub const CEF_VERSION_MAJOR: i32 = 143;
pub const CEF_VERSION_MINOR: i32 = 0;
pub const CEF_VERSION_PATCH: i32 = 13;
pub const CEF_VERSION_PATCH: i32 = 14;
pub const CHROME_VERSION_MAJOR: i32 = 143;
pub const CHROME_VERSION_MINOR: i32 = 0;
pub const CHROME_VERSION_BUILD: i32 = 7499;
pub const CHROME_VERSION_PATCH: i32 = 170;
pub const CHROME_VERSION_PATCH: i32 = 193;
unsafe extern "C" {
#[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"]
pub fn cef_api_hash(

View File

@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
pub const CEF_API_VERSION_NEXT: i32 = 999998;
pub const CEF_API_VERSION: i32 = 999999;
pub const CEF_VERSION: &[u8; 42] = b"143.0.13+g30cb3bd+chromium-143.0.7499.170\0";
pub const CEF_VERSION: &[u8; 42] = b"143.0.14+gdd46a37+chromium-143.0.7499.193\0";
pub const CEF_VERSION_MAJOR: i32 = 143;
pub const CEF_VERSION_MINOR: i32 = 0;
pub const CEF_VERSION_PATCH: i32 = 13;
pub const CEF_VERSION_PATCH: i32 = 14;
pub const CHROME_VERSION_MAJOR: i32 = 143;
pub const CHROME_VERSION_MINOR: i32 = 0;
pub const CHROME_VERSION_BUILD: i32 = 7499;
pub const CHROME_VERSION_PATCH: i32 = 170;
pub const CHROME_VERSION_PATCH: i32 = 193;
unsafe extern "C" {
#[doc = "\n Load the CEF library at the specified |path|. Returns true (1) on\n success and false (0) on failure.\n"]
pub fn cef_load_library(path: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int;

View File

@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
pub const CEF_API_VERSION_NEXT: i32 = 999998;
pub const CEF_API_VERSION: i32 = 999999;
pub const CEF_VERSION: &[u8; 42] = b"143.0.13+g30cb3bd+chromium-143.0.7499.170\0";
pub const CEF_VERSION: &[u8; 42] = b"143.0.14+gdd46a37+chromium-143.0.7499.193\0";
pub const CEF_VERSION_MAJOR: i32 = 143;
pub const CEF_VERSION_MINOR: i32 = 0;
pub const CEF_VERSION_PATCH: i32 = 13;
pub const CEF_VERSION_PATCH: i32 = 14;
pub const CHROME_VERSION_MAJOR: i32 = 143;
pub const CHROME_VERSION_MINOR: i32 = 0;
pub const CHROME_VERSION_BUILD: i32 = 7499;
pub const CHROME_VERSION_PATCH: i32 = 170;
pub const CHROME_VERSION_PATCH: i32 = 193;
unsafe extern "C" {
#[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"]
pub fn cef_api_hash(

View File

@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
pub const CEF_API_VERSION_NEXT: i32 = 999998;
pub const CEF_API_VERSION: i32 = 999999;
pub const CEF_VERSION: &[u8; 42] = b"143.0.13+g30cb3bd+chromium-143.0.7499.170\0";
pub const CEF_VERSION: &[u8; 42] = b"143.0.14+gdd46a37+chromium-143.0.7499.193\0";
pub const CEF_VERSION_MAJOR: i32 = 143;
pub const CEF_VERSION_MINOR: i32 = 0;
pub const CEF_VERSION_PATCH: i32 = 13;
pub const CEF_VERSION_PATCH: i32 = 14;
pub const CHROME_VERSION_MAJOR: i32 = 143;
pub const CHROME_VERSION_MINOR: i32 = 0;
pub const CHROME_VERSION_BUILD: i32 = 7499;
pub const CHROME_VERSION_PATCH: i32 = 170;
pub const CHROME_VERSION_PATCH: i32 = 193;
pub type __uint16_t = ::std::os::raw::c_ushort;
pub type __uint_least16_t = __uint16_t;
pub type __pid_t = ::std::os::raw::c_int;