October 26, 2018, CEF 3.3497.1841.g7f37a0a / Chromium 69.0.3497.100
Visual C++ 2015
is now required, see Breaking Changes
below for more information
#2341 Crash on method OnBeforeCommandLineProcessing() when there is Switch parameters without value [@amaitland]
#2432 Memory leak when using CefSharp.BindObjectAsync().
#2492 Browser stop redrawing on resize.
#2515 Resizing iframe stop capturing mouse wheel
#2523 Rename IJsDialogHandler.OnJSBeforeUnload to OnBeforeUnloadDialog [@amaitland]
Notes
Chromium
has removed support forWindows XP
,Windows Vista
,Windows Server 2003
andWindows Server 2008
. See https://chrome.googleblog.com/2015/11/updates-to-chrome-platform-support.htmlMP3
audio is now supported by default.- Due to licensing issues default builds do not support proprietary codecs like
H264/AAC
, sites likeNetflix/Twitter/Instagram/Facebook
won't play video/audio. See #1479 for more info. CEF
has switched from using breakpad to crashpad for error reporting see https://bitbucket.org/chromiumembedded/cef/wiki/CrashReporting.md for details, make sure you setExternalHandler=CefSharp.BrowserSubprocess.exe
- Anyone new to
CefSharp
should read the General Usage Guide - This project uses
GitLink
for better debugging, see #1680 - The
chrome_elf.dll
is now required, it's used for crashpad (crash reporting). SharedBufferArray
should be disabled in this release, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer and https://bitbucket.org/chromiumembedded/cef/issues/2360/sharedarraybuffer-enabled-so-cef-3112-3282WPF/OffScreen
thePDF viewer
crashes when you hover over the controls has been resolved see https://bitbucket.org/chromiumembedded/cef/issues/2488/cef-crashes-in-osr-when-opening-pdf-for for further detailsCefSettings
was moved fromCefSharp
namespace, there are now specific versions inWpf
,WinForms
andOffScreen
namespaces, add the relevant namespace prefix or using statement, see #2477 for details.Cef.Initialize()
(the paramaterless version) was removed. You only need to explicitly callCef.Initialze
when you need to specify custom settings. See #2477
Known Issues
WinForms
when running onWindows 10 Anniversary
pressing certain key combinations freezes the browser see #1822 The issue has been reportedupstream
, there are workarounds listed in #1822- Registered JavaScript objects get lost when navigating to another domain (#1203), see #2247 for details on the new implementation.
WinForms
version in certain scenarios fails to load theUrl
passed into theChromiumWebBrowser
constructor, see #2234 (comment) for workaround.WPF/Offscreen
rendering stops redrawing on resize seeupstream
issue https://bitbucket.org/chromiumembedded/cef/issues/2370/cefrenderhandler-onpaint-stops-receiving- See https://github.com/cefsharp/CefSharp/issues?q=is%3Aissue+is%3Aopen+label%3Aknown-issue for other known issues
Breaking Changes