mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 15:55:56 +01:00
Update to CEF 81.2.21
This commit is contained in:
parent
dce556683a
commit
823be24cd9
@ -3,10 +3,10 @@ CEF4Delphi is an open source project created by Salvador D
|
||||
|
||||
CEF4Delphi is based on DCEF3, made by Henri Gourvest. The original license of DCEF3 still applies to CEF4Delphi. Read the license terms in the first lines of any *.pas file.
|
||||
|
||||
CEF4Delphi uses CEF 81.2.19 which includes Chromium 81.0.4044.113.
|
||||
CEF4Delphi uses CEF 81.2.21 which includes Chromium 81.0.4044.113.
|
||||
The CEF binaries used by CEF4Delphi are available for download at spotify :
|
||||
* [32 bits](http://opensource.spotify.com/cefbuilds/cef_binary_81.2.19%2Bg3b56636%2Bchromium-81.0.4044.113_windows32.tar.bz2)
|
||||
* [64 bits](http://opensource.spotify.com/cefbuilds/cef_binary_81.2.19%2Bg3b56636%2Bchromium-81.0.4044.113_windows64.tar.bz2)
|
||||
* [32 bits](http://opensource.spotify.com/cefbuilds/cef_binary_81.2.21%2Bge864886%2Bchromium-81.0.4044.113_windows32.tar.bz2)
|
||||
* [64 bits](http://opensource.spotify.com/cefbuilds/cef_binary_81.2.21%2Bge864886%2Bchromium-81.0.4044.113_windows64.tar.bz2)
|
||||
|
||||
|
||||
CEF4Delphi was developed and tested on Delphi 10.3.3 and it has been tested in Delphi 7, Delphi XE, Delphi 10, Delphi 10.2 and Lazarus 2.0.8/FPC 3.0.4. CEF4Delphi includes VCL, FireMonkey (FMX) and Lazarus components.
|
||||
|
@ -62,7 +62,7 @@ uses
|
||||
const
|
||||
CEF_SUPPORTED_VERSION_MAJOR = 81;
|
||||
CEF_SUPPORTED_VERSION_MINOR = 2;
|
||||
CEF_SUPPORTED_VERSION_RELEASE = 19;
|
||||
CEF_SUPPORTED_VERSION_RELEASE = 21;
|
||||
CEF_SUPPORTED_VERSION_BUILD = 0;
|
||||
|
||||
CEF_CHROMEELF_VERSION_MAJOR = 81;
|
||||
|
@ -62,10 +62,10 @@ type
|
||||
Fpage_width : integer;
|
||||
Fpage_height : Integer;
|
||||
Fscale_factor : integer;
|
||||
Fmargin_top : double;
|
||||
Fmargin_right : double;
|
||||
Fmargin_bottom : double;
|
||||
Fmargin_left : double;
|
||||
Fmargin_top : integer;
|
||||
Fmargin_right : integer;
|
||||
Fmargin_bottom : integer;
|
||||
Fmargin_left : integer;
|
||||
Fmargin_type : TCefPdfPrintMarginType;
|
||||
Fheader_footer_enabled : boolean;
|
||||
Fselection_only : boolean;
|
||||
@ -79,10 +79,10 @@ type
|
||||
property page_width : integer read Fpage_width write Fpage_width default 0;
|
||||
property page_height : integer read Fpage_height write Fpage_height default 0;
|
||||
property scale_factor : integer read Fscale_factor write Fscale_factor default 0;
|
||||
property margin_top : double read Fmargin_top write Fmargin_top;
|
||||
property margin_right : double read Fmargin_right write Fmargin_right;
|
||||
property margin_bottom : double read Fmargin_bottom write Fmargin_bottom;
|
||||
property margin_left : double read Fmargin_left write Fmargin_left;
|
||||
property margin_top : integer read Fmargin_top write Fmargin_top;
|
||||
property margin_right : integer read Fmargin_right write Fmargin_right;
|
||||
property margin_bottom : integer read Fmargin_bottom write Fmargin_bottom;
|
||||
property margin_left : integer read Fmargin_left write Fmargin_left;
|
||||
property margin_type : TCefPdfPrintMarginType read Fmargin_type write Fmargin_type default PDF_PRINT_MARGIN_DEFAULT;
|
||||
property header_footer_enabled : boolean read Fheader_footer_enabled write Fheader_footer_enabled default False;
|
||||
property selection_only : boolean read Fselection_only write Fselection_only default False;
|
||||
|
@ -1283,10 +1283,10 @@ type
|
||||
page_width : Integer;
|
||||
page_height : Integer;
|
||||
scale_factor : Integer;
|
||||
margin_top : double;
|
||||
margin_right : double;
|
||||
margin_bottom : double;
|
||||
margin_left : double;
|
||||
margin_top : Integer;
|
||||
margin_right : Integer;
|
||||
margin_bottom : Integer;
|
||||
margin_left : Integer;
|
||||
margin_type : TCefPdfPrintMarginType;
|
||||
header_footer_enabled : Integer;
|
||||
selection_only : Integer;
|
||||
|
@ -2,9 +2,9 @@
|
||||
"UpdateLazPackages" : [
|
||||
{
|
||||
"ForceNotify" : true,
|
||||
"InternalVersion" : 121,
|
||||
"InternalVersion" : 122,
|
||||
"Name" : "cef4delphi_lazarus.lpk",
|
||||
"Version" : "81.2.19.0"
|
||||
"Version" : "81.2.21.0"
|
||||
}
|
||||
],
|
||||
"UpdatePackageData" : {
|
||||
|
Loading…
Reference in New Issue
Block a user