-
-
Notifications
You must be signed in to change notification settings - Fork 576
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Making necessary changes to make it work with CEF branch 2171.
This is PHP Desktop Chrome 39.0 Release Candidate. ShowDevTools code have been simplified, as CEF now exposes ShowDevTools method. Chrome 39 supports High DPI natively and it's doing it correctly using page zooming.
- Loading branch information
Showing
7 changed files
with
75 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
Chromium Embedded Framework (CEF) Standard Binary Distribution for Windows | ||
------------------------------------------------------------------------------- | ||
|
||
Date: January 13, 2014 | ||
Date: November 03, 2014 | ||
|
||
CEF Version: 3.1650.1562 | ||
CEF URL: http://chromiumembedded.googlecode.com/svn/branches/1650/cef3@1562 | ||
CEF Version: 3.2171.1902 | ||
CEF URL: https://[email protected]/chromiumembedded/branches-2171-cef3.git | ||
@1902 | ||
|
||
Chromium Verison: 31.0.1650.57 | ||
Chromium URL: http://src.chromium.org/svn/branches/1650/src@235101 | ||
Chromium Verison: 39.0.2171.36 | ||
Chromium URL: https://chromium.googlesource.com/chromium/src.git | ||
@438546a6d26d33f457aa7cbbbfcd2f762c4a1611 | ||
|
||
This distribution contains all components necessary to build and distribute an | ||
application using CEF on the Windows platform. Please see the LICENSING | ||
|
@@ -18,7 +20,12 @@ CONTENTS | |
-------- | ||
|
||
cefclient Contains the cefclient sample application configured to build | ||
using the files in this distribution. | ||
using the files in this distribution. This application demonstrates | ||
a wide range of CEF functionalities. | ||
|
||
cefsimple Contains the cefsimple sample application configured to build | ||
using the files in this distribution. This application demonstrates | ||
the minimal functionality required to create a browser window. | ||
|
||
Debug Contains libcef.dll, libcef.lib and other components required to | ||
build and run the debug version of CEF-based applications. By | ||
|
@@ -44,18 +51,23 @@ Resources Contains resources required by libcef.dll. By default these files | |
USAGE | ||
----- | ||
|
||
Visual Studio 2012 and Visual Studio 2010: | ||
Open the cefclient2010.sln solution in Visual Studio and build. | ||
Building using CMake: | ||
CMake can be used to generate project files in many different formats. See | ||
usage instructions at the top of the CMakeLists.txt file. | ||
|
||
Building using the pre-existing Visual Studio solution (DEPRECATED): | ||
Visual Studio 2013 and newer: | ||
Open the cefclient2010.sln solution in Visual Studio and build. | ||
|
||
Visual Studio 2008: | ||
Open the cefclient2008.sln solution in Visual Studio and build. | ||
Visual Studio 2008: | ||
Open the cefclient2008.sln solution in Visual Studio and build. | ||
|
||
Visual Studio 2005: | ||
1. Open the cefclient.vcproj and libcef_dll_wrapper.vcproj files in a text | ||
editor. Change Version="9.00" to Version="8.00". | ||
2. Open the cefclient2005.sln file in a text editor. Change "Version 9.00" to | ||
"Version 8.00". | ||
3. Open the cefclient2005.sln solution in Visual Studio and build. | ||
Visual Studio 2005: | ||
1. Open the cefclient.vcproj and libcef_dll_wrapper.vcproj files in a text | ||
editor. Change Version="9.00" to Version="8.00". | ||
2. Open the cefclient2005.sln file in a text editor. Change "Version 9.00" | ||
to "Version 8.00". | ||
3. Open the cefclient2005.sln solution in Visual Studio and build. | ||
|
||
Please visit the CEF Website for additional usage information. | ||
|
||
|
@@ -76,7 +88,7 @@ Required components: | |
libcef.dll | ||
|
||
* Unicode support | ||
icudt.dll | ||
icudtl.dat | ||
|
||
Optional components: | ||
|
||
|
@@ -91,6 +103,8 @@ Optional components: | |
|
||
* Other resources | ||
cef.pak | ||
cef_100_percent.pak | ||
cef_200_percent.pak | ||
devtools_resources.pak | ||
Note: Contains WebKit image and inspector resources. Pack file loading can be | ||
disabled completely using CefSettings.pack_loading_disabled. The resources | ||
|
@@ -100,6 +114,10 @@ Optional components: | |
ffmpegsumo.dll | ||
Note: Without this component HTML5 audio and video will not function. | ||
|
||
* PDF support | ||
pdf.dll | ||
Note: Without this component printing will not function. | ||
|
||
* Angle and Direct3D support | ||
d3dcompiler_43.dll (required for Windows XP) | ||
d3dcompiler_46.dll (required for Windows Vista and newer) | ||
|
@@ -108,6 +126,11 @@ Optional components: | |
Note: Without these components HTML5 accelerated content like 2D canvas, 3D | ||
CSS and WebGL will not function. | ||
|
||
* Windows Vista 64-bit sandbox support (32-bit distributions only) | ||
wow_helper.exe | ||
Note: Without this component the 32-bit build of CEF will not run on 64-bit | ||
Vista machines with the sandbox enabled. | ||
|
||
|
||
LICENSING | ||
--------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters