From 93027ad87917d054c6309cf328e97c2e92b7c4bb Mon Sep 17 00:00:00 2001 From: xXJsonDeruloXx Date: Mon, 2 Feb 2026 13:01:37 -0500 Subject: feat: add lsfg-vk v2.0 support - Update Vulkan layer filenames for v2.0 - libVkLayer_LSFGVK_frame_generation.so - VkLayer_LSFGVK_frame_generation.json - Remove deprecated config fields (hdr_mode, experimental_present_mode) - Add new pacing field (frame pacing mode) - Update generated schema files - Remove removed fields from UI components - Bump version to 0.13.0-beta.1 Breaking changes: - HDR Mode setting removed (no longer in v2.0) - Present Mode override removed (no longer in v2.0) Still TODO: - Update remote_binary URL when v2.0 stable releases - Test installation and migration - Add migration guide for users --- shared_config.py | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to 'shared_config.py') diff --git a/shared_config.py b/shared_config.py index 997717b..4e3ab68 100644 --- a/shared_config.py +++ b/shared_config.py @@ -59,22 +59,16 @@ CONFIG_SCHEMA_DEF = { "location": "toml" }, - "hdr_mode": { - "name": "hdr_mode", - "fieldType": ConfigFieldType.BOOLEAN, - "default": False, - "description": "enable HDR mode (only for games that support HDR)", - "location": "toml" - }, - - "experimental_present_mode": { - "name": "experimental_present_mode", + "pacing": { + "name": "pacing", "fieldType": ConfigFieldType.STRING, - "default": "fifo", - "description": "override Vulkan present mode (may cause crashes)", + "default": "none", + "description": "frame pacing mode (currently only 'none' supported)", "location": "toml" }, + # Removed in v2.0: hdr_mode and experimental_present_mode no longer supported + "dxvk_frame_rate": { "name": "dxvk_frame_rate", "fieldType": ConfigFieldType.INTEGER, -- cgit v1.2.3