diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2026-09-05 17:57:36 -0400 |
|---|---|---|
| committer | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2026-09-05 17:57:36 -0400 |
| commit | ed605b881998d76717073af4459fb54189edada8 (patch) | |
| tree | 2e19f0d66f839f6151ab47bf29985781a5b9dc8e /py_modules | |
| parent | f5994d1da763d5e10572fd10cc3e0089c9112924 (diff) | |
| download | decky-lsfg-vk-ed605b881998d76717073af4459fb54189edada8.tar.gz decky-lsfg-vk-ed605b881998d76717073af4459fb54189edada8.zip | |
chore: clean v2 migration code
Diffstat (limited to 'py_modules')
| -rw-r--r-- | py_modules/lsfg_vk/plugin.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/py_modules/lsfg_vk/plugin.py b/py_modules/lsfg_vk/plugin.py index fc2d378..a9eb6a6 100644 --- a/py_modules/lsfg_vk/plugin.py +++ b/py_modules/lsfg_vk/plugin.py @@ -6,7 +6,6 @@ Vulkan layer for frame generation on Steam Deck. """ import os -import subprocess import hashlib from typing import Dict, Any from pathlib import Path @@ -37,7 +36,7 @@ class Plugin: self.flatpak_service = FlatpakService() async def install_lsfg_vk(self) -> Dict[str, Any]: - """Install lsfg-vk by extracting the zip file to ~/.local + """Install the bundled lsfg-vk runtime to ~/.local Returns: InstallationResponse dict with success status and message/error @@ -362,7 +361,7 @@ class Plugin: """Install lsfg-vk Flatpak runtime extension Args: - version: Runtime version to install ("23.08" or "24.08") + version: Runtime version to install ("24.08" or "25.08") Returns: BaseResponse dict with success status and message/error @@ -373,7 +372,7 @@ class Plugin: """Uninstall lsfg-vk Flatpak runtime extension Args: - version: Runtime version to uninstall ("23.08" or "24.08") + version: Runtime version to uninstall ("24.08" or "25.08") Returns: BaseResponse dict with success status and message/error |
