From 91ed288cdaeb3e01c0ef8f7ebd2527c6bb126359 Mon Sep 17 00:00:00 2001 From: UE4SS Date: Mon, 29 Jul 2024 14:16:57 +0200 Subject: [PATCH] unlock glaze version --- .github/workflows/experimental.yml | 6 ------ UE4SS/xmake.lua | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/experimental.yml b/.github/workflows/experimental.yml index a4e965c1f..73b7ef0c0 100644 --- a/.github/workflows/experimental.yml +++ b/.github/workflows/experimental.yml @@ -48,12 +48,6 @@ jobs: - name: Build run: | xmake f -m "Game__Shipping__Win64" -y -vD - $log_file = 'C:\Users\runneradmin\AppData\Local\.xmake\cache\packages\2407\g\glaze\v2.9.0\installdir.failed\logs\install.txt' - if (Test-Path $log_file) { - Get-Content $log_file | Write-Output - } else { - Write-Output "Log file not found: $log_file" - } xmake build - name: Check and Print Glaze Log diff --git a/UE4SS/xmake.lua b/UE4SS/xmake.lua index 683826050..0ceba931a 100644 --- a/UE4SS/xmake.lua +++ b/UE4SS/xmake.lua @@ -5,7 +5,7 @@ add_requires("ImGuiTextEdit v1.0", { debug = is_mode_debug(), configs = {runtime add_requires("IconFontCppHeaders v1.0", { debug = is_mode_debug(), configs = {runtimes = get_mode_runtimes()}}) add_requires("glfw 3.3.9", { debug = is_mode_debug() , configs = {runtimes = get_mode_runtimes()}}) add_requires("opengl", { debug = is_mode_debug(), configs = {runtimes = get_mode_runtimes()} }) -add_requires("glaze 2.9.0", { debug = is_mode_debug(), configs = {runtimes = get_mode_runtimes()} }) +add_requires("glaze", { debug = is_mode_debug(), configs = {runtimes = get_mode_runtimes()} }) add_requires("fmt 10.2.1", { debug = is_mode_debug(), configs = {runtimes = get_mode_runtimes()} }) option("ue4ssBetaIsStarted")