Page 1 of 1

Libcef.dll version mismatch

Posted: Tue Aug 13, 2024 11:59 am
by Alexeich
Hello.
I've builded chromium binaries for the 6478 branch to support video codec, but suddenly when running my cef4delphi app I get an error:

Code: Select all

expected libcef.dll version is 126.2.18.0, but found 126.2.19.0.
So I modify expected version in the uCEFVersion.inc file and now it looks like working well, and the h.264 video too :)
Could you please tell me, may I get some unexpected errors later or these libcef.dll versions are interchangeable?

Re: Libcef.dll version mismatch

Posted: Tue Aug 13, 2024 2:46 pm
by salvadordf
Hi,

CEF releases that only have a different third version number are completely compatible.
CEF 126.2.18 is compatible with CEF 126.2.19

In case you're interested, this is what's new in CEF 126.2.19 :
Pin depot_tools version for out-of-support branch
https://bitbucket.org/chromiumembedded/cef/commits/a5d51ba9db7ee74a523dc247bd09ec91ba4d7446

As you can see in the Spotify web page, there's no package for CEF 126.2.19.
That version was not created and CEF 127.1.0 was released instead.
That's why CEF4Delphi doesn't have a version for CEF 126.2.19.

Re: Libcef.dll version mismatch

Posted: Tue Aug 13, 2024 3:39 pm
by Alexeich
Thank you very much, understood my fixes are legitimate)