summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--package.json2
-rw-r--r--py_modules/lsfg_vk/plugin.py4
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():