Skip to content

Commit

Permalink
Upgrade to 3.2526.1347
Browse files Browse the repository at this point in the history
Upgrade 45.0.0 references to 47.0.0
Remove BrowserSettings.Java as it's an NPAPI plugin and support was removed in version 45
  • Loading branch information
amaitland committed Oct 29, 2015
1 parent f2f9704 commit 0ecd64d
Show file tree
Hide file tree
Showing 19 changed files with 35 additions and 45 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(SolutionDir)\packages\cef.sdk.3.2454.1344\build\cef.sdk.props" Condition="Exists('$(SolutionDir)\packages\cef.sdk.3.2454.1344\build\cef.sdk.props')" />
<Import Project="$(SolutionDir)\packages\cef.sdk.3.2526.1347\build\cef.sdk.props" Condition="Exists('$(SolutionDir)\packages\cef.sdk.3.2526.1347\build\cef.sdk.props')" />
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
Expand Down Expand Up @@ -66,7 +66,7 @@
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros">
<NuGetPackageImportStamp>c3072048</NuGetPackageImportStamp>
<NuGetPackageImportStamp>0743bdeb</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>true</LinkIncremental>
Expand Down
2 changes: 1 addition & 1 deletion CefSharp.BrowserSubprocess.Core/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="cef.sdk" version="3.2454.1344" targetFramework="Native" />
<package id="cef.sdk" version="3.2526.1347" targetFramework="Native" />
</packages>
2 changes: 1 addition & 1 deletion CefSharp.BrowserSubprocess/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<assemblyIdentity version="45.0.0.0" name="CefSharp.BrowserSubprocess.app" />
<assemblyIdentity version="47.0.0.0" name="CefSharp.BrowserSubprocess.app" />
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
Expand Down
10 changes: 0 additions & 10 deletions CefSharp.Core/BrowserSettings.h
Original file line number Diff line number Diff line change
Expand Up @@ -178,16 +178,6 @@ namespace CefSharp
void set(CefState value) { _browserSettings->caret_browsing = (cef_state_t)value; }
}

/// <summary>
/// Controls whether the Java plugin will be loaded. Also configurable using
/// the "disable-java" command-line switch.
/// </summary>
property CefState Java
{
CefState get() { return (CefState)_browserSettings->java; }
void set(CefState value) { _browserSettings->java = (cef_state_t)value; }
}

/// <summary>
/// Controls whether any plugins will be loaded. Also configurable using the
/// "disable-plugins" command-line switch.
Expand Down
4 changes: 2 additions & 2 deletions CefSharp.Core/CefSharp.Core.vcxproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(SolutionDir)\packages\cef.sdk.3.2454.1344\build\cef.sdk.props" Condition="Exists('$(SolutionDir)\packages\cef.sdk.3.2454.1344\build\cef.sdk.props')" />
<Import Project="$(SolutionDir)\packages\cef.sdk.3.2526.1347\build\cef.sdk.props" Condition="Exists('$(SolutionDir)\packages\cef.sdk.3.2526.1347\build\cef.sdk.props')" />
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
Expand Down Expand Up @@ -66,7 +66,7 @@
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<_ProjectFileVersion>11.0.51106.1</_ProjectFileVersion>
<NuGetPackageImportStamp>530cad74</NuGetPackageImportStamp>
<NuGetPackageImportStamp>d31dc983</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<OutDir>bin\$(Configuration)\</OutDir>
Expand Down
2 changes: 1 addition & 1 deletion CefSharp.Core/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="cef.sdk" version="3.2454.1344" targetFramework="Native" />
<package id="cef.sdk" version="3.2526.1347" targetFramework="Native" />
</packages>
2 changes: 1 addition & 1 deletion CefSharp.Example/Resources/Home.html
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ <h3>State-of-the-art HTML5 and Javascript support</h3>
</p>
<h3>Support for both x86 and x64</h3>
<p>
Chromium 45 supports both x86 and x64, and so do we as of CefSharp 45.0.0 For the time being, it does not
Chromium 47 supports both x86 and x64, and so do we as of CefSharp 47.0.0 For the time being, it does not
"auto-detect" the platform being used (since this is quite complex), so you have to choose either one for
your project. This practically means that you will have to compile &amp; package separate
binaries/installers of your app for x86 and x64 respectively if you want/need to support both of them.
Expand Down
6 changes: 3 additions & 3 deletions CefSharp.OffScreen.Example/CefSharp.OffScreen.Example.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
<NuGetPackageImportStamp>d65372b2</NuGetPackageImportStamp>
<NuGetPackageImportStamp>9cb9fa5b</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -90,6 +90,6 @@
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\CefSharp.props" />
<Import Project="$(SolutionDir)\CefSharp.Native.props" />
<Import Project="..\packages\cef.redist.x64.3.2454.1344\build\cef.redist.x64.targets" Condition="Exists('..\packages\cef.redist.x64.3.2454.1344\build\cef.redist.x64.targets')" />
<Import Project="..\packages\cef.redist.x86.3.2454.1344\build\cef.redist.x86.targets" Condition="Exists('..\packages\cef.redist.x86.3.2454.1344\build\cef.redist.x86.targets')" />
<Import Project="..\packages\cef.redist.x64.3.2526.1347\build\cef.redist.x64.targets" Condition="Exists('..\packages\cef.redist.x64.3.2526.1347\build\cef.redist.x64.targets')" />
<Import Project="..\packages\cef.redist.x86.3.2526.1347\build\cef.redist.x86.targets" Condition="Exists('..\packages\cef.redist.x86.3.2526.1347\build\cef.redist.x86.targets')" />
</Project>
4 changes: 2 additions & 2 deletions CefSharp.OffScreen.Example/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="cef.redist.x64" version="3.2454.1344" targetFramework="net45" />
<package id="cef.redist.x86" version="3.2454.1344" targetFramework="net45" />
<package id="cef.redist.x64" version="3.2526.1347" targetFramework="net45" />
<package id="cef.redist.x86" version="3.2526.1347" targetFramework="net45" />
</packages>
6 changes: 3 additions & 3 deletions CefSharp.Test/CefSharp.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<OldToolsVersion>3.5</OldToolsVersion>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
<TargetFrameworkProfile />
<NuGetPackageImportStamp>721f2cb1</NuGetPackageImportStamp>
<NuGetPackageImportStamp>29bdd29e</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -138,6 +138,6 @@
-->
<Import Project="$(SolutionDir)\CefSharp.props" />
<Import Project="$(SolutionDir)\CefSharp.Native.props" />
<Import Project="..\packages\cef.redist.x64.3.2454.1344\build\cef.redist.x64.targets" Condition="Exists('..\packages\cef.redist.x64.3.2454.1344\build\cef.redist.x64.targets')" />
<Import Project="..\packages\cef.redist.x86.3.2454.1344\build\cef.redist.x86.targets" Condition="Exists('..\packages\cef.redist.x86.3.2454.1344\build\cef.redist.x86.targets')" />
<Import Project="..\packages\cef.redist.x64.3.2526.1347\build\cef.redist.x64.targets" Condition="Exists('..\packages\cef.redist.x64.3.2526.1347\build\cef.redist.x64.targets')" />
<Import Project="..\packages\cef.redist.x86.3.2526.1347\build\cef.redist.x86.targets" Condition="Exists('..\packages\cef.redist.x86.3.2526.1347\build\cef.redist.x86.targets')" />
</Project>
4 changes: 2 additions & 2 deletions CefSharp.Test/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<packages>
<package id="AutoFixture" version="3.18.7" targetFramework="net40" />
<package id="AutoFixture.Xunit" version="3.18.7" targetFramework="net40" />
<package id="cef.redist.x64" version="3.2454.1344" targetFramework="net40" />
<package id="cef.redist.x86" version="3.2454.1344" targetFramework="net40" />
<package id="cef.redist.x64" version="3.2526.1347" targetFramework="net40" />
<package id="cef.redist.x86" version="3.2526.1347" targetFramework="net40" />
<package id="xunit" version="1.9.2" targetFramework="net40" />
<package id="xunit.extensions" version="1.9.2" targetFramework="net40" />
</packages>
6 changes: 3 additions & 3 deletions CefSharp.WinForms.Example/CefSharp.WinForms.Example.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<OldToolsVersion>3.5</OldToolsVersion>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
<TargetFrameworkProfile />
<NuGetPackageImportStamp>c8a4335c</NuGetPackageImportStamp>
<NuGetPackageImportStamp>8167a32e</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<PlatformTarget>x64</PlatformTarget>
Expand Down Expand Up @@ -170,6 +170,6 @@
<Import Project="$(SolutionDir)\CefSharp.Native.props" />
<Import Project="..\packages\cef.redist.x64.3.2272.30\build\cef.redist.x64.targets" Condition="Exists('..\packages\cef.redist.x64.3.2272.30\build\cef.redist.x64.targets')" />
<Import Project="..\packages\cef.redist.x86.3.2272.30\build\cef.redist.x86.targets" Condition="Exists('..\packages\cef.redist.x86.3.2272.30\build\cef.redist.x86.targets')" />
<Import Project="..\packages\cef.redist.x64.3.2454.1344\build\cef.redist.x64.targets" Condition="Exists('..\packages\cef.redist.x64.3.2454.1344\build\cef.redist.x64.targets')" />
<Import Project="..\packages\cef.redist.x86.3.2454.1344\build\cef.redist.x86.targets" Condition="Exists('..\packages\cef.redist.x86.3.2454.1344\build\cef.redist.x86.targets')" />
<Import Project="..\packages\cef.redist.x64.3.2526.1347\build\cef.redist.x64.targets" Condition="Exists('..\packages\cef.redist.x64.3.2526.1347\build\cef.redist.x64.targets')" />
<Import Project="..\packages\cef.redist.x86.3.2526.1347\build\cef.redist.x86.targets" Condition="Exists('..\packages\cef.redist.x86.3.2526.1347\build\cef.redist.x86.targets')" />
</Project>
2 changes: 1 addition & 1 deletion CefSharp.WinForms.Example/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<assemblyIdentity version="45.0.0.0" name="CefSharp.WinForms.Example.app" />
<assemblyIdentity version="47.0.0.0" name="CefSharp.WinForms.Example.app" />

<dependency>
<dependentAssembly>
Expand Down
4 changes: 2 additions & 2 deletions CefSharp.WinForms.Example/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="cef.redist.x64" version="3.2454.1344" targetFramework="net45" />
<package id="cef.redist.x86" version="3.2454.1344" targetFramework="net45" />
<package id="cef.redist.x64" version="3.2526.1347" targetFramework="net45" />
<package id="cef.redist.x86" version="3.2526.1347" targetFramework="net45" />
</packages>
6 changes: 3 additions & 3 deletions CefSharp.Wpf.Example/CefSharp.Wpf.Example.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<OldToolsVersion>3.5</OldToolsVersion>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
<TargetFrameworkProfile />
<NuGetPackageImportStamp>f40f6e26</NuGetPackageImportStamp>
<NuGetPackageImportStamp>8e82bccc</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -195,6 +195,6 @@
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\CefSharp.props" />
<Import Project="$(SolutionDir)\CefSharp.Native.props" />
<Import Project="..\packages\cef.redist.x64.3.2454.1344\build\cef.redist.x64.targets" Condition="Exists('..\packages\cef.redist.x64.3.2454.1344\build\cef.redist.x64.targets')" />
<Import Project="..\packages\cef.redist.x86.3.2454.1344\build\cef.redist.x86.targets" Condition="Exists('..\packages\cef.redist.x86.3.2454.1344\build\cef.redist.x86.targets')" />
<Import Project="..\packages\cef.redist.x64.3.2526.1347\build\cef.redist.x64.targets" Condition="Exists('..\packages\cef.redist.x64.3.2526.1347\build\cef.redist.x64.targets')" />
<Import Project="..\packages\cef.redist.x86.3.2526.1347\build\cef.redist.x86.targets" Condition="Exists('..\packages\cef.redist.x86.3.2526.1347\build\cef.redist.x86.targets')" />
</Project>
2 changes: 1 addition & 1 deletion CefSharp.Wpf.Example/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<assemblyIdentity version="45.0.0.0" name="CefSharp.Wpf.Example.app" />
<assemblyIdentity version="47.0.0.0" name="CefSharp.Wpf.Example.app" />
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
Expand Down
4 changes: 2 additions & 2 deletions CefSharp.Wpf.Example/packages.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="cef.redist.x64" version="3.2454.1344" targetFramework="net45" />
<package id="cef.redist.x86" version="3.2454.1344" targetFramework="net45" />
<package id="cef.redist.x64" version="3.2526.1347" targetFramework="net45" />
<package id="cef.redist.x86" version="3.2526.1347" targetFramework="net45" />
<package id="CommonServiceLocator" version="1.3" targetFramework="net45" />
<package id="MvvmLightLibs" version="5.1.1.0" targetFramework="net45" />
</packages>
4 changes: 2 additions & 2 deletions CefSharp/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public static class AssemblyInfo
public const bool ComVisible = false;
public const string AssemblyCompany = "The CefSharp Authors";
public const string AssemblyProduct = "CefSharp";
public const string AssemblyVersion = "45.0.0";
public const string AssemblyFileVersion = "45.0.0.0";
public const string AssemblyVersion = "47.0.0";
public const string AssemblyFileVersion = "47.0.0.0";
public const string AssemblyCopyright = "Copyright © The CefSharp Authors 2010-2015";
public const string CefSharpCoreProject = "CefSharp.Core, PublicKey=" + PublicKey;
public const string CefSharpBrowserSubprocessProject = "CefSharp.BrowserSubprocess, PublicKey=" + PublicKey;
Expand Down
6 changes: 3 additions & 3 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ param(
[Parameter(Position = 0)]
[string] $Target = "vs2013",
[Parameter(Position = 1)]
[string] $Version = "45.0.0",
[string] $Version = "47.0.0",
[Parameter(Position = 2)]
[string] $AssemblyVersion = "45.0.0",
[string] $AssemblyVersion = "47.0.0",
[Parameter(Position = 3)]
[string] $RedistVersion = "3.2454.1344"
[string] $RedistVersion = "3.3.2526.1347"
)

$WorkingDir = split-path -parent $MyInvocation.MyCommand.Definition
Expand Down

2 comments on commit 0ecd64d

@shirotzu
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rename this
[string] $RedistVersion = "3.3.2526.1347"
To this
[string] $RedistVersion = "3.2526.1347"

@amaitland
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That was fixed a few weeks ago.

2f4dd4a

Please sign in to comment.