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
+17-2Lines changed: 17 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,8 @@ Table of contents:
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
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
+
*[v66+ RequestHandler.OnBeforeBrowse has a new param 'user_gesture'](#v66-requesthandleronbeforebrowse-has-a-new-param-user_gesture)
@@ -324,8 +325,22 @@ callback is now called on UI thread. Previously it was called on
324
325
IO thread.
325
326
326
327
327
-
## V66+ RequestHandler.OnBeforeBrowse has a new param 'user_gesture'
328
+
## v66+ RequestHandler.OnBeforeBrowse has a new param 'user_gesture'
328
329
329
330
The RequestHandler.[OnBeforeBrowse](../api/RequestHandler.md#onbeforebrowse)
330
331
callback has a new param `user_gesture`.
331
332
333
+
334
+
## v66+ Window transparency changes
335
+
336
+
1. OSR windows (off-screen rendering, also known as windowless) are now
337
+
transparent by default. You can control its transperency with
338
+
ApplicationSettings.[background_color](../api/ApplicationSettings.md#background_color) and BrowserSettings.[background_color](../api/BrowserSettings.md#background_color) options.
339
+
The WindowInfo.`SetTransparentPainting` method is now deprecated. Calling
340
+
it with True will do nothing, and calling it with False **will result
341
+
in exception**.
342
+
343
+
2. It is now possible to have
344
+
transparent windows also in **windowed mode**. This seems to be working
345
+
only on Linux (got it working on Fedora with just a change in window setting).
0 commit comments