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", 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. 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)