Skip to content

Tags: kevinctracy/CefSharp

Tags

v96.0.180

Toggle v96.0.180's commit message
Upgrade to CEF 96.0.18+gfe551e4+chromium-96.0.4664.110 / Chromium 96.…

…0.4664.110

v96.0.170

Toggle v96.0.170's commit message
BrowserSubProcess - Change SetProcessShutdownParameters priority to 0…

…x200

- Change to 0x200 which is low end of 'Application reserved "in between" shutdown range.'
- Remove logging as it wasn't working, must be too early to use the LOG(INFO) CEF macro

Test with a GetProcessShutdownParameters in debugger shows working e.g.

if (SetProcessShutdownParameters(0x200, SHUTDOWN_NORETRY))
{
	DWORD level = 0;
	DWORD flags = 0;
	GetProcessShutdownParameters(&level, &flags);
}

Issue cefsharp#3155

v96.0.142

Toggle v96.0.142's commit message
Core - Fix ExecuteScriptAsync infinite recursion

Resolves cefsharp#3914

v96.0.141

Toggle v96.0.141's commit message
WinForms - Improve hosting of popups using ChromiumHostControl

- Add IChromiumWebBrowserBase which is can be used for ChromiumWebBrowser instances and ChromiumHostControl
- Reduce code duplication for extensions methods
- Update WinForms Example

v96.0.140-pre

Toggle v96.0.140-pre's commit message
DevTools Client - Upgrade to 96.0.4664.55

v95.7.141

Toggle v95.7.141's commit message
WPF - OnWindowStateChanged only set browser to visible if IsVisible =…

… true

Previously all browser instances were set to visible when the window was restored from minimized state

v95.7.140-pre

Toggle v95.7.140-pre's commit message
DevTools Client - Upgrade to Chromium 95.0.4638.54

v94.4.110

Toggle v94.4.110's commit message
Nuget - VS2022 remove extra CefSharp.Core.Runtime.dll copy from bin f…

…older

VS2022 differs from previous versions in how the file paths appear to work. Use a filter to match based on filename + extension
rather than an exact file path match.

I've also updated the CefSharpAnyCPUExcludeCoreRuntimeBeforeGenerateApplicationManifest target to include a similar filter.
Leaving CefSharpExcludeCoreRuntimeBeforeGenerateApplicationManifest as is because it's only for VS2017

In VS2019:

C:\Projects\CefSharp.MinimalExample\packages\CefSharp.Common.94.4.50\buildTransitive\..\CefSharp\x86\CefSharp.Core.Runtime.dll;
C:\Projects\CefSharp.MinimalExample\packages\CefSharp.Common.94.4.50\buildTransitive\..\CefSharp\x86\CefSharp.Core.Runtime.pdb;
C:\Projects\CefSharp.MinimalExample\packages\CefSharp.Common.94.4.50\buildTransitive\..\CefSharp\x86\CefSharp.Core.Runtime.xml

In VS2022:
C:\Projects\CefSharp.MinimalExample\packages\CefSharp.Common.94.4.50\CefSharp\x86\CefSharp.Core.Runtime.dll;
C:\Projects\CefSharp.MinimalExample\packages\CefSharp.Common.94.4.50\CefSharp\x86\CefSharp.Core.Runtime.pdb;
C:\Projects\CefSharp.MinimalExample\packages\CefSharp.Common.94.4.50\CefSharp\x86\CefSharp.Core.Runtime.xml

Issue cefsharp#3854

v94.4.50

Toggle v94.4.50's commit message
GetSource/GetText - Copy string rather than using ptr

New Mojo IPC implementation uses shared memory rather than a string copy
Attempt to workaround the access violation that's been reported in a few isolated cases
by copying the string rather than using directly.
chromiumembedded/cef@ebee847

v94.4.20

Toggle v94.4.20's commit message
Core - Add ParseUrl to RefAssembly (cefsharp#3827)