Skip to content

Commit 2f075cf

Browse files
committed
Update to 145.0.28+g51162e8+chromium-145.0.7632.160
1 parent 45beed4 commit 2f075cf

555 files changed

Lines changed: 1447 additions & 442 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VL.CEF.Renderer/bin/runtimes/** filter=lfs diff=lfs merge=lfs -text

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ x86/
2727
[Aa][Rr][Mm]64/
2828
bld/
2929
[Bb]in/
30+
# Exception: keep VL.CEF.Renderer runtimes folder only
31+
!VL.CEF.Renderer/bin/
32+
VL.CEF.Renderer/bin/*
33+
!VL.CEF.Renderer/bin/runtimes/
34+
!VL.CEF.Renderer/bin/runtimes/**
3035
[Oo]bj/
3136
[Ll]og/
3237
[Ll]ogs/

Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<PackageOutputPath>$(MsBuildThisFileDirectory)bin\</PackageOutputPath>
77

88
<!-- Used VL version - watch out, newer versions have Stride update which causes unknown crash in asset compiler when running github action -->
9-
<VLVersion>2024.6.2</VLVersion>
10-
<VVVVVersion>6.7</VVVVVersion>
9+
<VLVersion>2025.7.1</VLVersion>
10+
<VVVVVersion>7.1-win-x64</VVVVVersion>
1111

1212
<!-- Version information -->
1313
<Year>$([System.DateTime]::Now.ToString('yyyy'))</Year>
14-
<Version>0.7.5</Version>
14+
<Version>0.8.0</Version>
1515

1616
<!-- Package properties -->
1717
<Authors>vvvv group</Authors>

VL.CEF.Renderer/VL.CEF.Renderer.csproj

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<OutputType>WinExe</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
6-
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
76
<SelfContained>false</SelfContained>
87
<OutputPath>bin</OutputPath>
98

@@ -13,14 +12,6 @@
1312
<!-- Disable pack warning about dlls being in wrong folder - this package delivers the whole renderer app -->
1413
<NoWarn>NU5128;NU5100</NoWarn>
1514
</PropertyGroup>
16-
17-
<!-- Copy CEF dlls and resources to build directory -->
18-
<ItemGroup>
19-
<None Include="$(SolutionDir)deps\cef\**" Exclude="$(SolutionDir)deps\cef\.git*;$(SolutionDir)deps\cef\*.md">
20-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
21-
<Visible>false</Visible>
22-
</None>
23-
</ItemGroup>
2415

2516
<ItemGroup>
2617
<ProjectReference Include="..\deps\cef_glue\CefGlue\CefGlue.csproj" PrivateAssets="all" />

VL.CEF.Renderer/WebRendererApp.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using System.IO;
55
using System.Linq;
66
using System.Reflection;
7+
using System.Runtime.InteropServices;
78
using System.Text;
89
using System.Threading;
910
using System.Threading.Tasks;
@@ -17,7 +18,9 @@ public class WebRendererApp : CefApp
1718
[STAThread]
1819
public static int Main(string[] args)
1920
{
20-
CefRuntime.Load();
21+
// libcef.dll is in runtimes/{arch}/native
22+
var libCefPath = Path.Combine(AppContext.BaseDirectory, "runtimes", RuntimeInformation.RuntimeIdentifier, "native");
23+
CefRuntime.Load(libCefPath);
2124

2225
var app = new WebRendererApp();
2326
var mainArgs = new CefMainArgs(args);
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:6f40da4746c818673e58eaab8b3a4fcd7f5cb3bd89c26ad0f46c1d656ac10552
3+
size 1758208
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:6e630ba2c7fd0bf2396362b7a6e051307d77c4fcb80a017f227fecfc2b0f3278
3+
size 1759744
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:9bd306927a717176c2ac13f6cca6f7693b21af3382b0932d21bdffafbbb98149
3+
size 713955
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:d0fda60d035b490e135c62b33b9b649aa75e2fc4968a3472cf252496564284c3
3+
size 1190024
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:b7a8608d08acdd778430d7b6d45d748abfa6cd15dde168b65089b8ed0f9f01ea
3+
size 1384448

0 commit comments

Comments
 (0)