Skip to content

Commit 9cecffe

Browse files
committed
Fix update CEF headers. Log versions at startup.
1 parent 8ceda28 commit 9cecffe

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

cef/include/cef_version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@
3535
#ifndef CEF_INCLUDE_CEF_VERSION_H_
3636
#define CEF_INCLUDE_CEF_VERSION_H_
3737

38-
#define CEF_VERSION "130.1.10+g3470f6a+chromium-130.0.6723.92"
38+
#define CEF_VERSION "130.1.15+g34b05bb+chromium-130.0.6723.92"
3939
#define CEF_VERSION_MAJOR 130
4040
#define CEF_VERSION_MINOR 1
41-
#define CEF_VERSION_PATCH 10
42-
#define CEF_COMMIT_NUMBER 3080
43-
#define CEF_COMMIT_HASH "3470f6ade45b8f1c41faf22c678ecdfd868bf64d"
41+
#define CEF_VERSION_PATCH 15
42+
#define CEF_COMMIT_NUMBER 3085
43+
#define CEF_COMMIT_HASH "34b05bb54165dd8581c3fcd3c6a72390dceb8943"
4444
#define COPYRIGHT_YEAR 2024
4545

4646
#define CHROME_VERSION_MAJOR 130

main.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include "resource.h"
1414

1515
#include "include/cef_sandbox_win.h"
16+
#include "include/cef_version.h"
1617

1718
#include "main_window.h"
1819
#include "logging.h"
@@ -28,6 +29,7 @@
2829
// #include "php_server.h"
2930
#include "cef/app.h"
3031
#include "random.h"
32+
#include "version.h"
3133

3234
SingleInstanceApplication g_singleInstanceApplication;
3335
wchar_t* g_singleInstanceApplicationGuid = 0;
@@ -287,7 +289,9 @@ int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
287289
}
288290

289291
LOGGER_INFO << "--------------------------------------------------------";
290-
LOGGER_INFO << "Started application";
292+
LOGGER_INFO << "Starting application";
293+
LOGGER_INFO << "PHP Desktop version: " << GetPhpDesktopVersion();
294+
LOGGER_INFO << "Chromium version: CEF " << CEF_VERSION;
291295

292296
if (log_file.length())
293297
LOGGER_INFO << "Logging to: " << log_file;

0 commit comments

Comments
 (0)