From e843b0fee816f9aab2dd458429231e296f59c08a Mon Sep 17 00:00:00 2001 From: soulwax Date: Tue, 5 Mar 2024 00:55:33 +0100 Subject: [PATCH 1/2] Updated Premake and Vulkan to latest beta versions Upgraded Premake to version 5.0.0-beta2 and Vulkan SDK to version 1.3.275.0 ensuring compatibility with the latest features and improvements in both tools. These updates address potential stability and performance issues while offering access to more recent enhancements. This commit along with the updated versions was tested thoroughly. --- scripts/SetupPremake.py | 2 +- scripts/SetupVulkan.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/SetupPremake.py b/scripts/SetupPremake.py index 720b8a7a5..c3afcfaf7 100644 --- a/scripts/SetupPremake.py +++ b/scripts/SetupPremake.py @@ -5,7 +5,7 @@ import Utils class PremakeConfiguration: - premakeVersion = "5.0.0-beta1" + premakeVersion = "5.0.0-beta2" premakeZipUrls = f"https://github.com/premake/premake-core/releases/download/v{premakeVersion}/premake-{premakeVersion}-windows.zip" premakeLicenseUrl = "https://raw.githubusercontent.com/premake/premake-core/master/LICENSE.txt" premakeDirectory = "./vendor/premake/bin" diff --git a/scripts/SetupVulkan.py b/scripts/SetupVulkan.py index 2763d6dc4..c5f5cc757 100644 --- a/scripts/SetupVulkan.py +++ b/scripts/SetupVulkan.py @@ -10,7 +10,7 @@ class VulkanConfiguration: requiredVulkanVersion = "1.3." - installVulkanVersion = "1.3.216.0" + installVulkanVersion = "1.3.275.0" vulkanDirectory = "./Hazel/vendor/VulkanSDK" @classmethod From 7fa8f2cdaaccaed61fa05a2b8333944fa704f4b7 Mon Sep 17 00:00:00 2001 From: soulwax Date: Thu, 14 Nov 2024 04:29:35 +0100 Subject: [PATCH 2/2] Updated Premake and Vulkan versions Upgraded Premake to 5.0.0-beta3 and Vulkan SDK to 1.3.296.0 to leverage the latest features and improvements in build configuration and graphics development. This update ensures compatibility with recent advancements and stability enhancements, contributing to a more efficient and robust development environment. --- scripts/SetupPremake.py | 2 +- scripts/SetupVulkan.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/SetupPremake.py b/scripts/SetupPremake.py index c3afcfaf7..f43b84972 100644 --- a/scripts/SetupPremake.py +++ b/scripts/SetupPremake.py @@ -5,7 +5,7 @@ import Utils class PremakeConfiguration: - premakeVersion = "5.0.0-beta2" + premakeVersion = "5.0.0-beta3" premakeZipUrls = f"https://github.com/premake/premake-core/releases/download/v{premakeVersion}/premake-{premakeVersion}-windows.zip" premakeLicenseUrl = "https://raw.githubusercontent.com/premake/premake-core/master/LICENSE.txt" premakeDirectory = "./vendor/premake/bin" diff --git a/scripts/SetupVulkan.py b/scripts/SetupVulkan.py index c5f5cc757..694c031ac 100644 --- a/scripts/SetupVulkan.py +++ b/scripts/SetupVulkan.py @@ -10,7 +10,7 @@ class VulkanConfiguration: requiredVulkanVersion = "1.3." - installVulkanVersion = "1.3.275.0" + installVulkanVersion = "1.3.296.0" vulkanDirectory = "./Hazel/vendor/VulkanSDK" @classmethod