diff --git a/README.md b/README.md index ec82aee4..616b1600 100644 --- a/README.md +++ b/README.md @@ -3,15 +3,15 @@ CEF4Delphi is an open source project created by Salvador Díaz Fau to embed Chro CEF4Delphi is based on DCEF3 and fpCEF3. The original license of those projects still applies to CEF4Delphi. Read the license terms in the LICENSE.md file. -CEF4Delphi uses CEF 115.3.15 which includes Chromium 115.0.5790.173. +CEF4Delphi uses CEF 116.0.13 which includes Chromium 116.0.5845.97. The CEF binaries used by CEF4Delphi are available for download at Spotify : -* [Windows 32 bits](https://cef-builds.spotifycdn.com/cef_binary_115.3.15%2Bg21130e0%2Bchromium-115.0.5790.173_windows32.tar.bz2) -* [Windows 64 bits](https://cef-builds.spotifycdn.com/cef_binary_115.3.15%2Bg21130e0%2Bchromium-115.0.5790.173_windows64.tar.bz2) -* [Linux x86 64 bits](https://cef-builds.spotifycdn.com/cef_binary_115.3.15%2Bg21130e0%2Bchromium-115.0.5790.173_linux64.tar.bz2) -* [Linux ARM 32 bits](https://cef-builds.spotifycdn.com/cef_binary_115.3.15%2Bg21130e0%2Bchromium-115.0.5790.173_linuxarm.tar.bz2) -* [Linux ARM 64 bits](https://cef-builds.spotifycdn.com/cef_binary_115.3.15%2Bg21130e0%2Bchromium-115.0.5790.173_linuxarm64.tar.bz2) -* [MacOS x86 64 bits](https://cef-builds.spotifycdn.com/cef_binary_115.3.15%2Bg21130e0%2Bchromium-115.0.5790.173_macosx64.tar.bz2) +* [Windows 32 bits](https://cef-builds.spotifycdn.com/cef_binary_116.0.13%2Bg557a56f%2Bchromium-116.0.5845.97_windows32.tar.bz2) +* [Windows 64 bits](https://cef-builds.spotifycdn.com/cef_binary_116.0.13%2Bg557a56f%2Bchromium-116.0.5845.97_windows64.tar.bz2) +* [Linux x86 64 bits](https://cef-builds.spotifycdn.com/cef_binary_116.0.13%2Bg557a56f%2Bchromium-116.0.5845.97_linux64.tar.bz2) +* [Linux ARM 32 bits](https://cef-builds.spotifycdn.com/cef_binary_116.0.13%2Bg557a56f%2Bchromium-116.0.5845.97_linuxarm.tar.bz2) +* [Linux ARM 64 bits](https://cef-builds.spotifycdn.com/cef_binary_116.0.13%2Bg557a56f%2Bchromium-116.0.5845.97_linuxarm64.tar.bz2) +* [MacOS x86 64 bits](https://cef-builds.spotifycdn.com/cef_binary_116.0.13%2Bg557a56f%2Bchromium-116.0.5845.97_macosx64.tar.bz2) CEF4Delphi was developed and tested on Delphi 11.3 and it has been tested in Delphi 7, Delphi XE, Delphi 10, Delphi 10.2, Delphi 10.3, Delphi 10.4 and Lazarus 2.2.6/FPC 3.2.2. CEF4Delphi includes VCL, FireMonkey (FMX) and Lazarus components. diff --git a/docs/cef4delphi.chm b/docs/cef4delphi.chm index ddc1f558..9bd30b63 100644 Binary files a/docs/cef4delphi.chm and b/docs/cef4delphi.chm differ diff --git a/packages/cef4delphi_lazarus.lpk b/packages/cef4delphi_lazarus.lpk index 1e39857d..c04817ac 100644 --- a/packages/cef4delphi_lazarus.lpk +++ b/packages/cef4delphi_lazarus.lpk @@ -21,7 +21,7 @@ - + diff --git a/source/uCEFConstants.pas b/source/uCEFConstants.pas index b71d91ab..5c9f37e4 100644 --- a/source/uCEFConstants.pas +++ b/source/uCEFConstants.pas @@ -2058,16 +2058,17 @@ const CEF_PERMISSION_TYPE_GEOLOCATION = 1 shl 8; CEF_PERMISSION_TYPE_IDLE_DETECTION = 1 shl 9; CEF_PERMISSION_TYPE_MIC_STREAM = 1 shl 10; - CEF_PERMISSION_TYPE_MIDI_SYSEX = 1 shl 11; - CEF_PERMISSION_TYPE_MULTIPLE_DOWNLOADS = 1 shl 12; - CEF_PERMISSION_TYPE_NOTIFICATIONS = 1 shl 13; - CEF_PERMISSION_TYPE_PROTECTED_MEDIA_IDENTIFIER = 1 shl 14; - CEF_PERMISSION_TYPE_REGISTER_PROTOCOL_HANDLER = 1 shl 15; - CEF_PERMISSION_TYPE_SECURITY_ATTESTATION = 1 shl 16; - CEF_PERMISSION_TYPE_STORAGE_ACCESS = 1 shl 17; - CEF_PERMISSION_TYPE_U2F_API_REQUEST = 1 shl 18; - CEF_PERMISSION_TYPE_VR_SESSION = 1 shl 19; - CEF_PERMISSION_TYPE_WINDOW_MANAGEMENT = 1 shl 20; + CEF_PERMISSION_TYPE_MIDI = 1 shl 11; + CEF_PERMISSION_TYPE_MIDI_SYSEX = 1 shl 12; + CEF_PERMISSION_TYPE_MULTIPLE_DOWNLOADS = 1 shl 13; + CEF_PERMISSION_TYPE_NOTIFICATIONS = 1 shl 14; + CEF_PERMISSION_TYPE_PROTECTED_MEDIA_IDENTIFIER = 1 shl 15; + CEF_PERMISSION_TYPE_REGISTER_PROTOCOL_HANDLER = 1 shl 16; + CEF_PERMISSION_TYPE_SECURITY_ATTESTATION = 1 shl 17; + CEF_PERMISSION_TYPE_STORAGE_ACCESS = 1 shl 18; + CEF_PERMISSION_TYPE_U2F_API_REQUEST = 1 shl 19; + CEF_PERMISSION_TYPE_VR_SESSION = 1 shl 20; + CEF_PERMISSION_TYPE_WINDOW_MANAGEMENT = 1 shl 21; /// /// Platform API hash. diff --git a/source/uCEFTypes.pas b/source/uCEFTypes.pas index 3f723a48..75c85465 100644 --- a/source/uCEFTypes.pas +++ b/source/uCEFTypes.pas @@ -223,21 +223,21 @@ type {$IFDEF MSWINDOWS} /// - /// Native Window handle + /// Native Window handle. /// /// /// CEF source file: /include/internal/cef_types_win.h (cef_window_handle_t) /// TCefWindowHandle = type HWND; /// - /// Native Cursor handle + /// Native Cursor handle. /// /// /// CEF source file: /include/internal/cef_types_win.h (cef_cursor_handle_t) /// TCefCursorHandle = type HCURSOR; /// - /// Native event handle + /// Native event handle. /// /// /// CEF source file: /include/internal/cef_types_win.h (cef_event_handle_t) @@ -248,21 +248,21 @@ type {$IFDEF MACOSX} {$IFDEF FPC} /// - /// Native Window handle + /// Native Window handle. /// /// /// CEF source file: /include/internal/cef_types_mac.h (cef_window_handle_t) /// TCefWindowHandle = type PtrUInt; /// - /// Native Cursor handle + /// Native Cursor handle. /// /// /// CEF source file: /include/internal/cef_types_mac.h (cef_cursor_handle_t) /// TCefCursorHandle = type PtrUInt; /// - /// Native event handle + /// Native event handle. /// /// /// CEF source file: /include/internal/cef_types_mac.h (cef_event_handle_t) @@ -270,21 +270,21 @@ type TCefEventHandle = type PtrUInt; {$ELSE} /// - /// Native Window handle + /// Native Window handle. /// /// /// CEF source file: /include/internal/cef_types_mac.h (cef_window_handle_t) /// TCefWindowHandle = type Pointer; /// - /// Native Cursor handle + /// Native Cursor handle. /// /// /// CEF source file: /include/internal/cef_types_mac.h (cef_cursor_handle_t) /// TCefCursorHandle = type Pointer; /// - /// Native event handle + /// Native event handle. /// /// /// CEF source file: /include/internal/cef_types_mac.h (cef_event_handle_t) @@ -296,14 +296,14 @@ type {$IFDEF LINUX} {$IFDEF FPC} /// - /// Native Window handle + /// Native Window handle. /// /// /// CEF source file: /include/internal/cef_types_linux.h (cef_window_handle_t) /// TCefWindowHandle = type culong; /// - /// Native Cursor handle + /// Native Cursor handle. /// /// /// CEF source file: /include/internal/cef_types_linux.h (cef_cursor_handle_t) @@ -311,14 +311,14 @@ type TCefCursorHandle = type culong; {$ELSE} /// - /// Native Window handle + /// Native Window handle. /// /// /// CEF source file: /include/internal/cef_types_linux.h (cef_window_handle_t) /// TCefWindowHandle = type LongWord; /// - /// Native Cursor handle + /// Native Cursor handle. /// /// /// CEF source file: /include/internal/cef_types_linux.h (cef_cursor_handle_t) @@ -326,7 +326,7 @@ type TCefCursorHandle = type LongWord; {$ENDIF} /// - /// Native event handle + /// Native event handle. /// /// /// CEF source file: /include/internal/cef_types_linux.h (cef_event_handle_t) @@ -884,18 +884,18 @@ type end; /// - /// Action taken after the TChromium.Onclose event - /// cbaCancel : stop closing the browser - /// cbaClose : continue closing the browser - /// cbaDelay : stop closing the browser momentarily. Used when the application + /// Action taken after the TChromium.Onclose event. + /// cbaCancel : stop closing the browser. + /// cbaClose : continue closing the browser. + /// cbaDelay : stop closing the browser momentarily. Used when the application /// needs to execute some custom processes before closing the /// browser. This is usually needed to destroy a TCEFWindowParent - /// in the main thread before closing the browser. + /// in the main thread before closing the browser. /// TCefCloseBrowserAction = (cbaClose, cbaDelay, cbaCancel); /// - /// Sub-process types of Chromium + /// Sub-process types of Chromium. /// TCefProcessType = (ptBrowser, ptRenderer, ptZygote, ptGPU, ptUtility, ptBroker, ptCrashpad, ptOther); @@ -905,12 +905,12 @@ type TCefCookiePref = (cpDefault, cpAllow, cpBlock); /// - /// Used by TCefBrowserNavigationTask to navigate in the right CEF thread + /// Used by TCefBrowserNavigationTask to navigate in the right CEF thread. /// TCefBrowserNavigation = (bnBack, bnForward, bnReload, bnReloadIgnoreCache, bnStopLoad); /// - /// Status of TCefAplicationCore + /// Status of TCefAplicationCore. /// TCefAplicationStatus = (asLoading, asLoaded, @@ -930,7 +930,7 @@ type TCefProxyScheme = (psHTTP, psSOCKS4, psSOCKS5); /// - /// Storage types used by the Storage.clearDataForOrigin DevTools method in TChromiumCore.ClearDataForOrigin + /// Storage types used by the Storage.clearDataForOrigin DevTools method in TChromiumCore.ClearDataForOrigin. /// TCefClearDataStorageTypes = (cdstAppCache, cdstCookies, @@ -997,7 +997,7 @@ type ); /// - /// Values used by the battery saver mode state preference + /// Values used by the battery saver mode state preference. /// /// /// components/performance_manager/public/user_tuning/prefs.h @@ -1008,13 +1008,13 @@ type bsmsEnabledOnBattery = 2, bsmsEnabled = 3, /// - /// Custom value used to update the preferences only when there's a non-default value + /// Custom value used to update the preferences only when there's a non-default value. /// bsmsDefault = 4 ); /// - /// Values used by the high efficiency mode state preference + /// Values used by the high efficiency mode state preference. /// /// /// components/performance_manager/public/user_tuning/prefs.h @@ -1024,18 +1024,18 @@ type kEnabled = 1, kEnabledOnTimer = 2, /// - /// Custom value used to update the preferences only when there's a non-default value + /// Custom value used to update the preferences only when there's a non-default value. /// kDefault = 3 ); /// - /// Used by TCEFFileDialogInfo + /// Used by TCEFFileDialogInfo. /// TCEFDialogType = (dtOpen, dtOpenMultiple, dtOpenFolder, dtSave); /// - /// Used by TCefMediaSinkInfo and TCefMediaSourceInfo + /// Used by TCefMediaSinkInfo and TCefMediaSourceInfo. /// TCefMediaType = (mtCast, mtDial, mtUnknown); @@ -1683,7 +1683,8 @@ type CEF_TEXT_INPUT_MODE_EMAIL, CEF_TEXT_INPUT_MODE_NUMERIC, CEF_TEXT_INPUT_MODE_DECIMAL, - CEF_TEXT_INPUT_MODE_SEARCH // CEF_TEXT_INPUT_MODE_MAX = CEF_TEXT_INPUT_MODE_SEARCH + CEF_TEXT_INPUT_MODE_SEARCH + {* CEF_TEXT_INPUT_MODE_MAX = CEF_TEXT_INPUT_MODE_SEARCH *} ); /// @@ -1800,9 +1801,9 @@ type /// Front Height L, Front Height R, Rear Height L, Rear Height R /// Will be represented as six channels (5.1) due to eight channel limit /// kMaxConcurrentChannels - /// CEF_CHANNEL_LAYOUT_MAX = CEF_CHANNEL_LAYOUT_5_1_4_DOWNMIX /// CEF_CHANNEL_LAYOUT_5_1_4_DOWNMIX = 33 + {* CEF_CHANNEL_LAYOUT_MAX = CEF_CHANNEL_LAYOUT_5_1_4_DOWNMIX *} ); /// @@ -2664,10 +2665,9 @@ type CEF_CPAIT_VIRTUAL_CARD_MANUAL_FALLBACK, CEF_CPAIT_ZOOM, CEF_CPAIT_SAVE_IBAN, - /// - /// CEF_CPAIT_MAX_VALUE = CEF_CPAIT_MANDATORY_REAUTH - /// - CEF_CPAIT_MANDATORY_REAUTH + CEF_CPAIT_MANDATORY_REAUTH, + CEF_CPAIT_PRICE_INSIGHTS + {* CEF_CPAIT_MAX_VALUE = CEF_CPAIT_PRICE_INSIGHTS *} ); /// @@ -2681,14 +2681,12 @@ type CEF_CTBT_CAST, CEF_CTBT_DOWNLOAD, CEF_CTBT_SEND_TAB_TO_SELF, - /// - /// CEF_CTBT_MAX_VALUE = CEF_CTBT_SIDE_PANEL - /// CEF_CTBT_SIDE_PANEL + {* CEF_CTBT_MAX_VALUE = CEF_CTBT_SIDE_PANEL *} ); /// - /// Touch handle state + /// Touch handle state. /// /// /// CEF source file: /include/internal/cef_time.h (cef_touch_handle_state_t) diff --git a/source/uCEFVersion.inc b/source/uCEFVersion.inc index 3bf56483..7e6ade30 100644 --- a/source/uCEFVersion.inc +++ b/source/uCEFVersion.inc @@ -1,9 +1,9 @@ - CEF_SUPPORTED_VERSION_MAJOR = 115; - CEF_SUPPORTED_VERSION_MINOR = 3; - CEF_SUPPORTED_VERSION_RELEASE = 15; + CEF_SUPPORTED_VERSION_MAJOR = 116; + CEF_SUPPORTED_VERSION_MINOR = 0; + CEF_SUPPORTED_VERSION_RELEASE = 13; CEF_SUPPORTED_VERSION_BUILD = 0; CEF_CHROMEELF_VERSION_MAJOR = CEF_SUPPORTED_VERSION_MAJOR; CEF_CHROMEELF_VERSION_MINOR = 0; - CEF_CHROMEELF_VERSION_RELEASE = 5790; - CEF_CHROMEELF_VERSION_BUILD = 173; + CEF_CHROMEELF_VERSION_RELEASE = 5845; + CEF_CHROMEELF_VERSION_BUILD = 97; diff --git a/update_CEF4Delphi.json b/update_CEF4Delphi.json index 83cbfccd..d92f2454 100644 --- a/update_CEF4Delphi.json +++ b/update_CEF4Delphi.json @@ -2,9 +2,9 @@ "UpdateLazPackages" : [ { "ForceNotify" : true, - "InternalVersion" : 506, + "InternalVersion" : 507, "Name" : "cef4delphi_lazarus.lpk", - "Version" : "115.3.15" + "Version" : "116.0.13" } ], "UpdatePackageData" : {