Tags · a13ssandr0/cefpython · GitHub
Skip to content

Tags: a13ssandr0/cefpython

Tags

v147.0.0-arm64

Toggle v147.0.0-arm64's commit message
Fix arm64 build: copy CEF's include/ into the prebuilt directory

CMakeLists.txt puts ${CEF_ROOT} on the include path specifically to
resolve CEF's platform-generated public headers not vendored in
src/include (cef_config.h, cef_api_versions.h, cef_pack_resources.h,
base/internal/cef_net_error_list.h, etc.) - see its comment on
target_include_directories(). build_cef_prebuilt_arm64.py assembled
bin/, lib/ and a copy of cef_version.h into the prebuilt dir, but never
copied the CEF distribution's include/ tree itself, so every compile
unit including cef_build.h failed immediately:
  fatal error: include/cef_config.h: No such file or directory

Verified against the actual CI failure log (build (3.11), run 30201666736):
CEF_ROOT resolved correctly and CMake configured fine - the wheel build
got to the very first client_handler compile step before hitting this.

v66.1

Toggle v66.1's commit message
Update the sponsors sections in README.

v49.0

Toggle v49.0's commit message
Add --no-cache-dir flag for pip install commands (cztomczak#460)

v49-upstream

Toggle v49-upstream's commit message
Update tools

v66.0

Toggle v66.0's commit message
CEF Python v66.0 release

v66-upstream

Toggle v66-upstream's commit message
Fix build errors (cztomczak#403)

Change cef.Request.Flags options.

v57.1

Toggle v57.1's commit message
Update make_installer.py tool

v58.0-win32

Toggle v58.0-win32's commit message
Remove Frame.GetProperty/SetProperty deprecated methods from API docs.

This methods are not implemented. I guess they are remainings from
CEF 1 which ran using single process mode and getting/setting properties
worked synchronously. But in CEF 3 which runs in multi-process mode
you can do this only asynchronusly, you can use already implemented
js<>py communication layer for that.

v57.0

Toggle v57.0's commit message
Update to Chromium v57 on Win (cztomczak#341) and fix PyQt5 example o…

…n Win (cztomczak#325).

Fix PyQt5 support on Windows in qt.py example (cztomczak#325).

Update automate.py to use --ninja-jobs also when building CEF projects.
Default jobs ninja uses is very CPU intensive and can cause much lag in OS.

v57-upstream

Toggle v57-upstream's commit message
Update to Chromium 57.0.2987.133 on Linux PART 2 (cztomczak#341)