diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-11 10:38:55 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-11 10:38:55 -0400 |
| commit | 80456c51dd329941d26fdd58e0c7136b35409d5e (patch) | |
| tree | 8a3ae024377745f72c872fc43c8a357651cd97c2 | |
| parent | 62934498723fa1592759589874eba35cb38e809d (diff) | |
| download | decky-lsfg-vk-80456c51dd329941d26fdd58e0c7136b35409d5e.tar.gz decky-lsfg-vk-80456c51dd329941d26fdd58e0c7136b35409d5e.zip | |
update names and text
| -rw-r--r-- | main.py | 8 | ||||
| -rwxr-xr-x | src/index.tsx | 8 |
2 files changed, 8 insertions, 8 deletions
@@ -174,18 +174,18 @@ class Plugin: # Asyncio-compatible long-running code, executed in a task when the plugin is loaded async def _main(self): - decky.logger.info("lsfg-vk Installer loaded!") + decky.logger.info("Lossless Scaling loaded!") # Function called first during the unload process, utilize this to handle your plugin being stopped, but not # completely removed async def _unload(self): - decky.logger.info("lsfg-vk Installer unloading") + decky.logger.info("Lossless Scaling unloading") pass # Function called after `_unload` during uninstall, utilize this to clean up processes and other remnants of your # plugin that may remain on the system async def _uninstall(self): - decky.logger.info("lsfg-vk Installer uninstalled - starting cleanup") + decky.logger.info("Lossless Scaling uninstalled - starting cleanup") # Clean up lsfg-vk files when the plugin is uninstalled try: @@ -233,7 +233,7 @@ class Plugin: import traceback decky.logger.error(f"Traceback: {traceback.format_exc()}") - decky.logger.info("lsfg-vk Installer uninstall cleanup completed") + decky.logger.info("Lossless Scaling uninstall cleanup completed") pass # Migrations that should be performed before entering `_main()`. diff --git a/src/index.tsx b/src/index.tsx index 7f6b957..8465426 100755 --- a/src/index.tsx +++ b/src/index.tsx @@ -205,7 +205,7 @@ function Content() { <br /> • LSFG_MULTIPLIER=2-4 - FPS multiplier (start with 2) <br /> - • LSFG_FLOW_SCALE=1.0 - Flow scale (optional, for performance) + • LSFG_FLOW_SCALE=0.1-1.0 - Flow scale (optional, for performance) </div> </div> </PanelSectionRow> @@ -214,20 +214,20 @@ function Content() { }; export default definePlugin(() => { - console.log("lsfg-vk Installer plugin initializing") + console.log("Lossless Scaling plugin initializing") return { // The name shown in various decky menus name: "Lossless Scaling", // The element displayed at the top of your plugin's menu - titleView: <div className={staticClasses.Title}>lsfg-vk Installer</div>, + titleView: <div className={staticClasses.Title}>Lossless Scaling</div>, // The content of your plugin's menu content: <Content />, // The icon displayed in the plugin list icon: <GiPlasticDuck />, // The function triggered when your plugin unloads onDismount() { - console.log("lsfg-vk Installer unloading") + console.log("Lossless Scaling unloading") }, }; }); |
