diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-08-25 16:18:56 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-08-25 16:18:56 -0400 |
| commit | d73ef3cc7d248d7eba8bc4979d604cf500f2d232 (patch) | |
| tree | 58265f25ff34658134377d5ebc0351d925888a24 | |
| parent | 189c7b3ad25ec1cfc0fce22047a567786371ddce (diff) | |
| download | decky-lsfg-vk-d73ef3cc7d248d7eba8bc4979d604cf500f2d232.tar.gz decky-lsfg-vk-d73ef3cc7d248d7eba8bc4979d604cf500f2d232.zip | |
initial rename work
| -rw-r--r-- | README.md | 8 | ||||
| -rw-r--r-- | package.json | 4 | ||||
| -rw-r--r-- | plugin.json | 4 | ||||
| -rw-r--r-- | py_modules/lsfg_vk/plugin.py | 14 | ||||
| -rw-r--r-- | src/components/PluginUpdateChecker.tsx | 2 | ||||
| -rwxr-xr-x | src/index.tsx | 8 |
6 files changed, 20 insertions, 20 deletions
@@ -1,9 +1,9 @@ -# Lossless Scaling for Steam Deck +# decky-lsfg-vk [](https://ko-fi.com/B0B71HZTAX) <p align="center"> - <img src="assets/decky-lossless-logo.png" alt="Lossless Scaling for Steam Deck Logo" width="200"/> + <img src="assets/decky-lossless-logo.png" alt="decky-lsfg-vk Logo" width="200"/> </p> > **Note:** @@ -18,12 +18,12 @@ A Decky plugin that streamlines the installation of **lsfg-vk** ([Lossless Scali **Note:** This plugin is currently in active development. While functional, some features may change before the official Decky Plugin Store release. 1. **Download the plugin** from the [latest release](https://github.com/xXJSONDeruloXx/decky-lossless-scaling-vk/releases) - - Download the "Lossless Scaling.zip" file to your Steam Deck + - Download the "decky-lsfg-vk.zip" file to your Steam Deck 2. **Install manually through Decky**: - In Game Mode, go to the settings cog in the top right of the Decky Loader tab - Enable "Developer Mode" - Go to "Developer" tab and select "Install Plugin from Zip" - - Select the downloaded "Lossless Scaling.zip" file + - Select the downloaded "decky-lsfg-vk.zip" file ## How to Use diff --git a/package.json b/package.json index c5b58ee..da103fa 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "decky-lossless-scaling-vk", + "name": "decky-lsfg-vk", "version": "0.10.5", "description": "Use Lossless Scaling on the Steam Deck using the lsfg-vk vulkan layer", "type": "module", @@ -10,7 +10,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/xXJSONDeruloXx/decky-lossless-scaling-vk.git" + "url": "git+https://github.com/xXJSONDeruloXx/decky-lsfg-vk.git" }, "keywords": [ "decky", diff --git a/plugin.json b/plugin.json index d8870c6..f8dd446 100644 --- a/plugin.json +++ b/plugin.json @@ -1,11 +1,11 @@ { - "name": "Lossless Scaling", + "name": "decky-lsfg-vk", "author": "Kurt Himebauch", "flags": ["debug", "_root"], "api_version": 1, "publish": { "tags": ["installer", "vulkan", "lsfg"], - "description": "Enable Lossless Scaling on the Steam Deck using lsfg-vk compatibility layer.", + "description": "Enable frame generation on the Steam Deck using lsfg-vk compatibility layer.", "image": "https://steamcommunity.com/sharedfiles/filedetails/?id=3522791434" } } diff --git a/py_modules/lsfg_vk/plugin.py b/py_modules/lsfg_vk/plugin.py index f7a8939..63385f4 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 @@ -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") diff --git a/src/components/PluginUpdateChecker.tsx b/src/components/PluginUpdateChecker.tsx index d427c18..9fa2afb 100644 --- a/src/components/PluginUpdateChecker.tsx +++ b/src/components/PluginUpdateChecker.tsx @@ -152,7 +152,7 @@ export const PluginUpdateChecker: React.FC<PluginUpdateCheckerProps> = () => { <Focusable> 1. Go to Decky Loader settings <br />2. Click "Developer" tab - <br />3. Click "Uninstall" next to "Lossless Scaling" + <br />3. Click "Uninstall" next to "decky-lsfg-vk" <br />4. Click "Install from ZIP" <br />5. Select the downloaded file <br />6. Restart Steam or reload plugins diff --git a/src/index.tsx b/src/index.tsx index 785ecf5..070e853 100755 --- a/src/index.tsx +++ b/src/index.tsx @@ -4,13 +4,13 @@ import { GiPlasticDuck } from "react-icons/gi"; import { Content } from "./components"; export default definePlugin(() => { - console.log("Lossless Scaling plugin initializing"); + console.log("decky-lsfg-vk plugin initializing"); return { // The name shown in various decky menus - name: "Lossless Scaling", + name: "decky-lsfg-vk", // The element displayed at the top of your plugin's menu - titleView: <div className={staticClasses.Title}>Lossless Scaling</div>, + titleView: <div className={staticClasses.Title}>decky-lsfg-vk</div>, // Always render to retain state when panel is toggled alwaysRender: true, // The content of your plugin's menu @@ -19,7 +19,7 @@ export default definePlugin(() => { icon: <GiPlasticDuck />, // The function triggered when your plugin unloads onDismount() { - console.log("Lossless Scaling unloading"); + console.log("decky-lsfg-vk unloading"); } }; }); |
