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
*[v66+ RequestHandler.GetCookieManager not getting called in some cases](#v66-requesthandlergetcookiemanager-not-getting-called-in-some-cases)
52
52
*[v66+ Changes to Mac apps that integrate into existing message loop (Qt, wxPython)](#v66-changes-to-mac-apps-that-integrate-into-existing-message-loop-qt-wxpython)
53
+
*[v66.1+ Navigation urls passed to CreateBrowserSync or LoadUrl methods need to be encoded by app code](#v661-navigation-urls-passed-to-createbrowsersync-or-loadurl-methods-need-to-be-encoded-by-app-code)
53
54
*[v67+ Do not call the 'WindowUtils.OnSize' function](#v67-do-not-call-the-windowutilsonsize-function)
54
55
55
56
@@ -487,12 +488,21 @@ tested of how this change affects performance.
487
488
488
489
See Issue [#442](../../../issues/442) for more details on the issues.
489
490
491
+
## v66.1+ Navigation urls passed to CreateBrowserSync or LoadUrl methods need to be encoded by app code
492
+
493
+
[Issue #384](../../../issues/384) fixes problems with browser failing to load
494
+
urls containing certain characters by not encoding the url anymore. From now
495
+
on it is required for the app code to encode the url properly. You can use
496
+
the `pathlib.PurePath.as_uri` in Python 3 or `urllib.pathname2url` in
497
+
Python 2 (`urllib.request.pathname2url` in Python 3) depending on your case.
498
+
499
+
The `cef.GetNavigateUrl` function was removed from the cefpython3 module.
500
+
490
501
491
502
## v67+ Do not call the 'WindowUtils.OnSize' function
492
503
493
504
This function can sometimes cause app hanging during window resize.
494
505
Call instead the new `WindowUtils`.[UpdateBrowserSize](../api/WindowUtils.md#updatebrowsersize)
495
506
function. Except when you use the `pywin32.py` example, in such case
496
507
`WindowUtils.OnSize` must be called.
497
-
See [Issue #464](../../../issues/464) for more details.
498
-
508
+
See [Issue #464](../../../issues/464) for more details.
0 commit comments