-
Notifications
You must be signed in to change notification settings - Fork 69
RDEV-8412 - Bump to CEF v134.3.9 #208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
| /// Callback interface for asynchronous handling of an unresponsive process. | ||
| /// | ||
| /*--cef(source=library)--*/ | ||
| class CefUnresponsiveProcessCallback : public virtual CefBaseRefCounted { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This may be relevant
2c1d33d to
adbe479
Compare
c814beb to
e05b25c
Compare
5129743 to
606f22c
Compare
d tentative Fix GPU issue Update BrowserCefApp.cs Revert "Update Program.cs" This reverts commit fd3d568. Update Program.cs Tentative GPU fix (2) Update BrowserView.axaml.cs
c3d9ed7 to
6c03af7
Compare
Tentative Fix GPU (Windows) d tentative Tentative GPU fix (2) Revert "Update Program.cs" This reverts commit fd3d568.
🎉 Snyk checks have passed. No issues have been found so far.✅ security/snyk check is complete. No issues have been found. (View Details) ✅ license/snyk check is complete. No issues have been found. (View Details) ✅ code/snyk check is complete. No issues have been found. (View Details) |
|
The crash you see on Windows is not actually related to the network service. The problem is that the .pak files are not copied to the In case you are wondering how to debug this issue, here is what I did:
Hope this helps! |
|
The minimal fix is --- a/CefGlue.Common/build/CefGlue.Common.targets
+++ b/CefGlue.Common/build/CefGlue.Common.targets
@@ -73,10 +73,11 @@
Relies on ResolvePackageAssets MSBuild target to identify resources deployed from that specific package. -->
<Target Name="ResolveCEFAssets" Condition="$([MSBuild]::IsOSPlatform('Windows')) and '$(CefGlueTargetPlatform)' != ''" AfterTargets="ResolvePackageAssets">
<ItemGroup Condition="'$(CefGlueTargetPlatform)' == 'win-x64' OR '$(CefGlueTargetPlatform)' == 'win-arm64'">
- <CefRuntimeFiles Include="@(RuntimeTargetsCopyLocalItems->WithMetadataValue('NuGetPackageId', 'chromiumembeddedframework.runtime.$(CefGlueTargetPlatform)'))" />
+ <CefRuntimeFiles Include="@(CefRedist64)" Condition="'$(CefGlueTargetPlatform)' == 'win-x64'" />
+ <CefRuntimeFiles Include="@(CefRedistArm64)" Condition="'$(CefGlueTargetPlatform)' == 'win-arm64'" />
<None Include="@(CefRuntimeFiles)">
<Visible>false</Visible>
- <Link>$(OutputDirectory)%(FileName)%(Extension)</Link>
+ <Link>$(OutputDirectory)%(RecursiveDir)%(FileName)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<PublishState>Included</PublishState> |
|
I'm thinking of "gluing" CEFGlue into my project, and wondering how it's coming with the upgrading to a recent version of CEF? |
Description
GPU issues from CEF M121) ✔️
Found a solution here.
macOS vulkan issues ✔️
This issue seems related with that Avalonia Sample App.
The fix was to start to use Avalonia
ReactiveUIframework.Remove Alloy Runtime (Removed on CEF M128) ❌
Following: chromiumembedded/cef#3685
However, there are still issues directly related to this. Have the bellow crash. Still trying to figure it out.
Found this post, reporting the same symptom.
Could replicate this issue by shifting to
Chrome Runtime. Was able to replicate the issue inCEF M126Upgrading to CEF M133: ✔️
Follow the main guidelines from this (link)
Current State Window
Current State macOS ✅