Skip to content

Commit b1f1e76

Browse files
committed
Upgrade to 3.2785.1474
Former-commit-id: 98179e9685c7a4db15f2c281c36f8ee043b01e20
1 parent 0b7aa92 commit b1f1e76

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

NuGet/cef.sdk.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<CefSdkVer>cef.sdk.3.2785.1466</CefSdkVer>
4+
<CefSdkVer>cef.sdk.3.2785.1478</CefSdkVer>
55
</PropertyGroup>
66
</Project>

build.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ $Cef32vcx = Join-Path (Join-Path $Cef32 'libcef_dll_wrapper') 'libcef_dll_wrappe
1616
$Cef64 = Join-Path $WorkingDir 'cef_binary_3.y.z_windows64'
1717
$Cef64vcx = Join-Path (Join-Path $Cef64 'libcef_dll_wrapper') 'libcef_dll_wrapper.vcxproj'
1818

19-
$CefVersion = "3.2785.1466.g80e473e"
19+
$CefVersion = "3.2785.1478.gaab5543"
2020
# Take the cef version and strip the commit hash
2121
$CefPackageVersion = $CefVersion.SubString(0, $CefVersion.LastIndexOf('.'))
2222

@@ -392,7 +392,7 @@ function DownloadCefBinaryAndUnzip()
392392

393393
$LocalFile = Join-Path $WorkingDir $Cef32FileName
394394

395-
if(-not (Test-Path $Cef32FileName))
395+
if(-not (Test-Path $LocalFile))
396396
{
397397
Write-Diagnostic "Download $Cef32FileName this will take a while as files are approx 200mb each"
398398
$Client.DownloadFile($CefBuildServerUrl + $Cef32FileName, $LocalFile);
@@ -417,7 +417,7 @@ function DownloadCefBinaryAndUnzip()
417417

418418
$LocalFile = Join-Path $WorkingDir $Cef64FileName
419419

420-
if(-not (Test-Path $Cef64FileName))
420+
if(-not (Test-Path $LocalFile))
421421
{
422422

423423
Write-Diagnostic "Download $Cef64FileName this will take a while as files are approx 200mb each"

0 commit comments

Comments
 (0)