From 3e8fd111be96f10f83b7fd8b2da410c58e054f4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CPaulo?= Date: Fri, 9 Jun 2023 03:09:46 -0300 Subject: [PATCH 1/3] upgrade to version 114 --- CMakeLists.txt | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f84d2c4..e786514 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ project("MyApp") # CEF configuration set_property(GLOBAL PROPERTY OS_FOLDERS ON) -set(CEF_VERSION "111.2.7+gebf5d6a+chromium-111.0.5563.148") +set(CEF_VERSION "114.2.10+g398e3c3+chromium-114.0.5735.110") # Determine the platform if(NOT DEFINED CEF_PLATFORM) diff --git a/README.md b/README.md index 4be4633..9d19d2c 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ You can download a compiled version for your system on releases page or actions You can change CEF_VERSION variable inside CMakeLists.txt. -Example of valid version: `111.2.7+gebf5d6a+chromium-111.0.5563.148`. +Example of valid version: `114.2.10+g398e3c3+chromium-114.0.5735.110`. Visit https://cef-builds.spotifycdn.com/index.html for the list of supported platforms and versions. From 6c7271ca0e30a1334c8f648fd8d1e14c3999e953 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CPaulo?= Date: Fri, 9 Jun 2023 03:17:40 -0300 Subject: [PATCH 2/3] upgrade to version 114 --- app/src/shared/windows/Entrypoint.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/src/shared/windows/Entrypoint.cpp b/app/src/shared/windows/Entrypoint.cpp index f3fd7b2..43a2b37 100644 --- a/app/src/shared/windows/Entrypoint.cpp +++ b/app/src/shared/windows/Entrypoint.cpp @@ -17,11 +17,6 @@ namespace shared // entry point function for all processes int APIENTRY wWinMain(HINSTANCE hInstance) { -// enable High-DPI support on Windows 7 or newer on version less than 112 -#if CEF_VERSION_MAJOR < 112 - CefEnableHighDPISupport(); -#endif - void *sandboxInfo = nullptr; #if defined(CEF_USE_SANDBOX) From c0ba2e5475d762fe630fc4788f7e91aacbeb7d17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CPaulo?= Date: Fri, 9 Jun 2023 03:36:12 -0300 Subject: [PATCH 3/3] upgrade to version 114 --- .github/workflows/windows.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index a149d69..238ec0e 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -17,7 +17,7 @@ jobs: config: - { name: "Windows 32", - os: "windows-2019", + os: "windows-2022", target: "windows", cef_platform: "windows32", vs_arch: "Win32", @@ -26,7 +26,7 @@ jobs: } - { name: "Windows 64", - os: "windows-2019", + os: "windows-2022", target: "windows", cef_platform: "windows64", vs_arch: "x64", @@ -35,7 +35,7 @@ jobs: } - { name: "Windows ARM 64", - os: "windows-2019", + os: "windows-2022", target: "windows", cef_platform: "windowsarm64", vs_arch: "ARM64",