summaryrefslogtreecommitdiff
path: root/py_modules/lsfg_vk/plugin.py
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-08-25 16:37:05 -0400
committerGitHub <noreply@github.com>2025-08-25 16:37:05 -0400
commit3f6fdd9f0e565b72402032a5381567fd5f7e9793 (patch)
treeff0a045d3058a76e72bcf73d91effc26264cb327 /py_modules/lsfg_vk/plugin.py
parent189c7b3ad25ec1cfc0fce22047a567786371ddce (diff)
parent026e58d6966aa8596c791455bffa54cd04c025ef (diff)
downloaddecky-lsfg-vk-3f6fdd9f0e565b72402032a5381567fd5f7e9793.tar.gz
decky-lsfg-vk-3f6fdd9f0e565b72402032a5381567fd5f7e9793.zip
Merge pull request #161 from xXJSONDeruloXx/rebrandv0.10.6
initial rename work
Diffstat (limited to 'py_modules/lsfg_vk/plugin.py')
-rw-r--r--py_modules/lsfg_vk/plugin.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/py_modules/lsfg_vk/plugin.py b/py_modules/lsfg_vk/plugin.py
index f7a8939..c1ffdf6 100644
--- a/py_modules/lsfg_vk/plugin.py
+++ b/py_modules/lsfg_vk/plugin.py
@@ -2,7 +2,7 @@
Main plugin class for the lsfg-vk Decky Loader plugin.
This plugin provides services for installing and managing the lsfg-vk
-Vulkan layer for Lossless Scaling frame generation on Steam Deck.
+Vulkan layer for frame generation on Steam Deck.
"""
import os
@@ -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():
@@ -592,7 +592,7 @@ class Plugin:
Any initialization code should go here.
"""
import decky
- decky.logger.info("Lossless Scaling VK plugin loaded")
+ decky.logger.info("decky-lsfg-vk plugin loaded")
async def _unload(self):
"""
@@ -602,7 +602,7 @@ class Plugin:
Any cleanup code should go here.
"""
import decky
- decky.logger.info("Lossless Scaling VK plugin unloaded")
+ decky.logger.info("decky-lsfg-vk plugin unloaded")
async def _uninstall(self):
"""
@@ -612,12 +612,12 @@ class Plugin:
It automatically cleans up any lsfg-vk files that were installed.
"""
import decky
- decky.logger.info("Lossless Scaling VK plugin uninstalled - starting cleanup")
+ decky.logger.info("decky-lsfg-vk plugin uninstalled - starting cleanup")
# Clean up lsfg-vk files when the plugin is uninstalled
self.installation_service.cleanup_on_uninstall()
- decky.logger.info("Lossless Scaling VK plugin uninstall cleanup completed")
+ decky.logger.info("decky-lsfg-vk plugin uninstall cleanup completed")
async def _migration(self):
"""
@@ -627,7 +627,7 @@ class Plugin:
Currently migrates logs, settings, and runtime data from old locations.
"""
import decky
- decky.logger.info("Running Lossless Scaling VK plugin migrations")
+ decky.logger.info("Running decky-lsfg-vk plugin migrations")
# Migrate logs from old location
# ~/.config/decky-lossless-scaling-vk/lossless-scaling-vk.log -> decky.DECKY_LOG_DIR/lossless-scaling-vk.log
@@ -648,4 +648,4 @@ class Plugin:
os.path.join(decky.DECKY_HOME, "lossless-scaling-vk"),
os.path.join(decky.DECKY_USER_HOME, ".local", "share", "decky-lossless-scaling-vk"))
- decky.logger.info("Lossless Scaling VK plugin migrations completed")
+ decky.logger.info("decky-lsfg-vk plugin migrations completed")