Skip to content

Commit

Permalink
Upgrade to 102.0.90
Browse files Browse the repository at this point in the history
  • Loading branch information
amaitland committed Jun 6, 2022
1 parent cb4d5dd commit f99ede6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CefSharp.Wpf.HwndHost/CefSharp.Wpf.HwndHost.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RootNamespace>CefSharp.Wpf.HwndHost</RootNamespace>
<CefSharpAnyCpuSupport>true</CefSharpAnyCpuSupport>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>101.0.180</Version>
<Version>102.0.90</Version>
<Authors>The CefSharp Authors</Authors>
<Description>The CefSharp Chromium-based browser component. The CefSharp.Wpf.HwndHost.ChromiumWebBrowser control is a drop in replacement for the CefSharp.Wpf.ChromiumWebBrowser that's rougly equivilent to hosting the WinForms version in WPF.</Description>
<Copyright>Copyright © The CefSharp Authors</Copyright>
Expand All @@ -23,11 +23,11 @@
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
<PackageReference Include="CefSharp.Common" Version="101.0.180"/>
<PackageReference Include="CefSharp.Common" Version="102.0.90"/>
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' != 'net462'">
<PackageReference Include="CefSharp.Common.NETCore" Version="101.0.180"/>
<PackageReference Include="CefSharp.Common.NETCore" Version="102.0.90"/>
</ItemGroup>

<ItemGroup>
Expand Down
7 changes: 7 additions & 0 deletions CefSharp.Wpf.HwndHost/ChromiumWebBrowser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -928,6 +928,8 @@ private void InternalDispose(bool disposing)
ResourceRequestHandlerFactory = null;
RenderProcessMessageHandler = null;

this.DisposeDevToolsContext();

browser = null;
BrowserCore = null;

Expand Down Expand Up @@ -1644,6 +1646,11 @@ public IJavascriptObjectRepository JavascriptObjectRepository
/// <inheritdoc />
public IBrowser BrowserCore { get; private set; }

/// <summary>
/// Used by CefSharp.Puppeteer to associate a single DevToolsContext with a ChromiumWebBrowser instance.
/// </summary>
IDisposable IWebBrowserInternal.DevToolsContext { get; set; }

/// <summary>
/// Returns the current IBrowser Instance
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
image: Visual Studio 2019

version: 101.0.180-CI{build}
version: 102.0.90-CI{build}

clone_depth: 10

Expand Down

0 comments on commit f99ede6

Please sign in to comment.