tag:github.com,2008:/stdexception/cefpython/commits/masterRecent Commits to cefpython:master2021-05-14T09:18:03Ztag:github.com,2008:Grit::Commit/5679f28cec18a57a56e298da2927aac8d8f83ad6
fix OnDownloadData decoding bug (#621)
2021-05-14T09:18:03Zreskayoihttps://github.com/reskayoi
<pre style='white-space:pre-wrap;width:81ex'>fix OnDownloadData decoding bug (#621)</pre>
tag:github.com,2008:Grit::Commit/80e6f3c9828fce40b103a4f51b8bc29d64c54b9c
Fix link
2021-04-21T11:50:04Zcztomczakhttps://github.com/cztomczak
<pre style='white-space:pre-wrap;width:81ex'>Fix link</pre>
tag:github.com,2008:Grit::Commit/431b9956db660d5552c31fb4a3a891f619ed84a8
Fix Kivy example on Windows (#613).
2021-04-13T08:42:46Zcztomczakhttps://github.com/cztomczak
<pre style='white-space:pre-wrap;width:81ex'>Fix Kivy example on Windows (#613).</pre>
tag:github.com,2008:Grit::Commit/d2c72528addad8ef41a2a460946f32fe425ed183
Update the sponsors sections in README.
2021-02-16T18:31:32Zcztomczakhttps://github.com/cztomczak
<pre style='white-space:pre-wrap;width:81ex'>Update the sponsors sections in README.</pre>
tag:github.com,2008:Grit::Commit/0e2503c4675d683d2b853267ee0183e4e7fb5726
Add JS bindings long integer test. Add comments on DPI awareness.
2021-02-16T18:18:02Zcztomczakhttps://github.com/cztomczak
<pre style='white-space:pre-wrap;width:81ex'>Add JS bindings long integer test. Add comments on DPI awareness.</pre>
tag:github.com,2008:Grit::Commit/06d3b8c8e8164ea1a51caf00591b7eaedcbfc5ac
Fix build_distrib.py script for Python 2.7 and Python 3.4 (latest pip
2021-02-15T22:26:45Zcztomczakhttps://github.com/cztomczak
<pre style='white-space:pre-wrap;width:81ex'>Fix build_distrib.py script for Python 2.7 and Python 3.4 (latest pip
versions are broken with these old Pythons).
Fix screenshot.py example sometimes failing.
When compiling for Python 3.4 you can encounter the the missing
"ammintrin.h" header file error. Just copy it from the VS 2019
include/ directory.
For Pythons 3.5 / 3.6 / 3.7 / 3.8 / 3.9 you can use the same VC++ 14.2
(VS 2019) compiler which is binary compatible with VC++ 14.1 (VS 2017)
and VC++ 14.0 (VS 2015).
Currently the subprocess.exe executable built by Python 3.4 (VC++ 10.0
compiler) gives the least amount of false-positives by AVs on
virustotal.com . For comparison: Py34 (1/69), Py27 (2/69),
Py39 (5/69). Results differ for 32bit and 64bit binaries.</pre>
tag:github.com,2008:Grit::Commit/3beaaf5dc39c80eea54a9bba6c4c35965764d628
Fix build_distrib.py on Python 3 (Issue #546).
2021-02-15T18:31:02Zcztomczakhttps://github.com/cztomczak
<pre style='white-space:pre-wrap;width:81ex'>Fix build_distrib.py on Python 3 (Issue #546).</pre>
tag:github.com,2008:Grit::Commit/92aa6236268620105be0b3d5ce60412a8b5dbf5b
Fix Python 3 error in build_distrib.py script (#546).
2021-02-15T18:01:48Zcztomczakhttps://github.com/cztomczak
<pre style='white-space:pre-wrap;width:81ex'>Fix Python 3 error in build_distrib.py script (#546).</pre>
tag:github.com,2008:Grit::Commit/d6deaf8e2b87266d7b5fc4052fc05b5622056b17
Support Python 3.8 and Python 3.9 (Issues #546 and #593).
2021-02-14T22:44:38Zcztomczakhttps://github.com/cztomczak
<pre style='white-space:pre-wrap;width:81ex'>Support Python 3.8 and Python 3.9 (Issues #546 and #593).</pre>
tag:github.com,2008:Grit::Commit/55e63607afdce5d122f3d78884200a5e3f84938d
Add support for Python 3.8 and Upgrade Cython (#594)
2021-02-14T20:03:24Zgmjosackhttps://github.com/gmjosack
<pre style='white-space:pre-wrap;width:81ex'>Add support for Python 3.8 and Upgrade Cython (#594)
Fixes: https://github.com/cztomczak/cefpython/issues/546
Had to include harfbuzz manually as newer Pango change this.
See:
https://github.com/eiskaltdcpp/eiskaltdcpp/issues/413
https://gitlab.gnome.org/GNOME/pango/-/issues/387
Also had to add `-Wno-deprecated-declarations` to get this to compile because
of the following errors that didn't seem to be coming from this code directly:
warning: ‘GTimeVal’ is deprecated: Use 'GDateTime' instead
warning: ‘GTypeDebugFlags’ is deprecated</pre>
tag:github.com,2008:Grit::Commit/8e36e82a21a95574fbc2cc329be4f2d5e82f6d00
update kivy example (#573)
2021-02-14T16:30:11Zhoba87https://github.com/hoba87
<pre style='white-space:pre-wrap;width:81ex'>update kivy example (#573)
* update old print syntax
* remove pygtk, gtk dependencies
* restore kivy pygtk dependency for linux, add platform dependent conditional statements
* kivy example macos keyboard working
* external pump message only for macos
* Update kivy_.py
Co-authored-by: Czarek Tomczak <[email protected]></pre>
tag:github.com,2008:Grit::Commit/686d528b3eebbe5b84a770f5d266aea8dd185721
Fix pyinstaller hook for pyinstaller >= 4.0
2021-02-14T16:21:13Zcztomczakhttps://github.com/cztomczak
<pre style='white-space:pre-wrap;width:81ex'>Fix pyinstaller hook for pyinstaller >= 4.0
Thanks to Brénainn Woodsend (https://github.com/bwoodsend) for the fix.
See also https://github.com/cztomczak/cefpython/pull/600 .</pre>
tag:github.com,2008:Grit::Commit/054ff3ca52106099d078f37b3f8986e5252c7733
Update int range detection for Python 3 (#603)
2021-02-14T16:09:52Zbryan-koroleski-fivestarshttps://github.com/bryan-koroleski-fivestars
<pre style='white-space:pre-wrap;width:81ex'>Update int range detection for Python 3 (#603)
* Update int range detection for Python 3
Python 3 unified ints and longs into a single int type. The long type
is still available in Cython as an alias to int.
* Update javascript_bindings.pyx
* Update process_message_utils.pyx
Co-authored-by: Czarek Tomczak <[email protected]></pre>
tag:github.com,2008:Grit::Commit/96f3b5ec1ef951a1959d378a5d4d87bf247b2c36
Fix pango library wrong include path (hb.h: No such file or directory…
2021-02-14T15:20:20Zmcejphttps://github.com/mcejp
<pre style='white-space:pre-wrap;width:81ex'>Fix pango library wrong include path (hb.h: No such file or directory) (#589)
* Fix Fedora 32 build error (hb.h: No such file or directory)
* Update client_handler/Makefile
* Update client_handler/Makefile
* Update cpp_utils/Makefile
* Update subprocess/Makefile
* Update subprocess/Makefile-libcefpythonapp
* Update tools/cython_setup.py
Co-authored-by: Czarek Tomczak <[email protected]></pre>
tag:github.com,2008:Grit::Commit/019033d2919a4fab84cb832ec5b76aad12e39c40
Fix the bug of loading shared libraries. (#561)
2021-02-14T14:44:22ZXianguang-Zhouhttps://github.com/Xianguang-Zhou
<pre style='white-space:pre-wrap;width:81ex'>Fix the bug of loading shared libraries. (#561)
* Prepend the package directory path to the "LD_LIBRARY_PATH" environment variable.
* Fix the bug of getting "LD_LIBRARY_PATH" environment variable.
* Fix loading shared libraries on Linux.
Co-authored-by: Czarek Tomczak <[email protected]></pre>
tag:github.com,2008:Grit::Commit/2fcf395f4e67e83e5c1dc06b3bfd6818d4e42602
Update README.md
2020-10-09T11:53:46Zcztomczakhttps://github.com/cztomczak
<pre style='white-space:pre-wrap;width:81ex'>Update README.md
Fix links.</pre>
tag:github.com,2008:Grit::Commit/3cc7606101f2b1b8191b4db3648c264349ca4628
Add keyboard handler snippet.
2020-08-19T09:14:04Zcztomczakhttps://github.com/cztomczak
<pre style='white-space:pre-wrap;width:81ex'>Add keyboard handler snippet.</pre>
tag:github.com,2008:Grit::Commit/0da13937e50f389cba25533959c2b760403fb80f
Fix Mac issues in Tkinter example (#309, #441)
2020-07-20T17:19:03Zcztomczakhttps://github.com/cztomczak
<pre style='white-space:pre-wrap;width:81ex'>Fix Mac issues in Tkinter example (#309, #441)
Still some issues on startup, see: https://github.com/cztomczak/cefpython/issues/583</pre>
tag:github.com,2008:Grit::Commit/28afa80a2f23fa2e6160926d0352b861466bf5a8
Pass proper parent window handle for DevTools window (#381).
2020-01-25T13:33:42Zcztomczakhttps://github.com/cztomczak
<pre style='white-space:pre-wrap;width:81ex'>Pass proper parent window handle for DevTools window (#381).
This still doesn't fix keyboard issues in wxpython.py example.</pre>
tag:github.com,2008:Grit::Commit/042579dc0d7e0010dca4d23f0ccbbbaf2e72700e
Allow for automatic conversion of string like objects to CEF strings.
2020-01-25T13:32:29Zcztomczakhttps://github.com/cztomczak
<pre style='white-space:pre-wrap;width:81ex'>Allow for automatic conversion of string like objects to CEF strings.
For example a QString passed to LoadUrl() method was causing error
and now it's handled fine.</pre>