You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Migration-guide.md
+13-4
Original file line number
Diff line number
Diff line change
@@ -33,12 +33,13 @@ Table of contents:
33
33
*[v54+ GTK 3 example doesn't work anymore on Linux](#v54-gtk-3-example-doesnt-work-anymore-on-linux)
34
34
*[v54+ libcef.so library is stripped from symbols on Linux](#v54-libcefso-library-is-stripped-from-symbols-on-linux)
35
35
*[v55+ HTTPS cache problems on pages with certificate errors](#v55-https-cache-problems-on-pages-with-certificate-errors)
36
-
*[v55.3+ Handlers' callbacks and other interfaces](#v553-handlers-callbacks-and-other-interfaces)
36
+
*[v55.3+ Handlers' callbacks and other interfaces are now called using keyword args](#v553-handlers-callbacks-and-other-interfaces-are-now-called-using-keyword-args)
37
37
*[v56+ MacOS 10.9+ required to run](#v56-macos-109-required-to-run)
38
38
*[v57.1+ High DPI support on Windows](#v571-high-dpi-support-on-windows)
39
39
*[v66+ Linux patch that fixed HTTPS cache problems on pages with certificate errors was disabled](#v66-linux-patch-that-fixed-https-cache-problems-on-pages-with-certificate-errors-was-disabled)
40
-
*[v66+ DisplayHandler.OnConsoleMessage has new param 'level'](#v66-displayhandleronconsolemessage-has-new-param-level)
40
+
*[v66+ DisplayHandler.OnConsoleMessage has a new param 'level'](#v66-displayhandleronconsolemessage-has-a-new-param-level)
41
41
*[v66+ LifespanHandler.OnBeforePopup is now called on UI thread](#v66-lifespanhandleronbeforepopup-is-now-called-on-ui-thread)
42
+
*[V66+ RequestHandler.OnBeforeBrowse has a new param 'user_gesture'](#v66-requesthandleronbeforebrowse-has-a-new-param-user_gesture)
42
43
43
44
44
45
@@ -212,6 +213,8 @@ API ref: Request.[GetHeaderMap](../api/Request.md#getheadermap)
212
213
213
214
## v54+ GTK 3 example doesn't work anymore on Linux
214
215
216
+
Update: GTK 3 example is back working in v57+.
217
+
215
218
Currently GTK 3 example is broken on Linux. You can either
216
219
downgrade to an old cefpython v53 (available on GitHub release
217
220
page) or use GTK 2 example. For more details on the problem see
@@ -236,7 +239,7 @@ cefpython starts using CEF prebuilt binaries from Spotify.
236
239
See Issue [#125](../../../issues/125) for more details.
237
240
238
241
239
-
## v55.3+ Handlers' callbacks and other interfaces
242
+
## v55.3+ Handlers' callbacks and other interfaces are now called using keyword args
240
243
241
244
Since v55.3 all handlers' callbacks and other interfaces such as
242
245
CookieVisitor, StringVisitor and WebRequestClient, are now called
@@ -308,7 +311,7 @@ If you need this feature then you can build from sources and apply
308
311
the patch yourself. See Issue [#125](../../../issues/125) for more details.
309
312
310
313
311
-
## v66+ DisplayHandler.OnConsoleMessage has new param 'level'
314
+
## v66+ DisplayHandler.OnConsoleMessage has a new param 'level'
312
315
313
316
The DisplayHandler.[OnConsoleMessage](../api/DisplayHandler.md#onconsolemessage)
314
317
callback has a new param `level`.
@@ -320,3 +323,9 @@ The LifespanHandler.[OnBeforePopup](../api/LifespanHandler.md#onbeforepopup)
320
323
callback is now called on UI thread. Previously it was called on
321
324
IO thread.
322
325
326
+
327
+
## V66+ RequestHandler.OnBeforeBrowse has a new param 'user_gesture'
328
+
329
+
The RequestHandler.[OnBeforeBrowse](../api/RequestHandler.md#onbeforebrowse)
0 commit comments