From 16eee88ad5696e855dbb05993e6a4393ae137bc1 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 25 Aug 2025 16:23:18 -0400 Subject: update url in dl new ver logic, bump version number --- package.json | 2 +- py_modules/lsfg_vk/plugin.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index da103fa..c881134 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "decky-lsfg-vk", - "version": "0.10.5", + "version": "0.10.6", "description": "Use Lossless Scaling on the Steam Deck using the lsfg-vk vulkan layer", "type": "module", "scripts": { diff --git a/py_modules/lsfg_vk/plugin.py b/py_modules/lsfg_vk/plugin.py index 63385f4..c1ffdf6 100644 --- a/py_modules/lsfg_vk/plugin.py +++ b/py_modules/lsfg_vk/plugin.py @@ -338,7 +338,7 @@ class Plugin: decky.logger.warning(f"Failed to read package.json: {e}") # Fetch most recent release from GitHub (including pre-releases) - api_url = "https://api.github.com/repos/xXJSONDeruloXx/decky-lossless-scaling-vk/releases" + api_url = "https://api.github.com/repos/xXJSONDeruloXx/decky-lsfg-vk/releases" try: # Create SSL context that doesn't verify certificates @@ -414,7 +414,7 @@ class Plugin: # Create download path downloads_dir = Path.home() / "Downloads" downloads_dir.mkdir(exist_ok=True) - download_path = downloads_dir / "decky-lossless-scaling-vk.zip" + download_path = downloads_dir / "decky-lsfg-vk.zip" # Remove existing file if it exists if download_path.exists(): -- cgit v1.2.3