summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-07-23 09:29:41 -0400
committerGitHub <noreply@github.com>2025-07-23 09:29:41 -0400
commitecc45ab275f8d06b8862afb9e12f9bbe071c46ce (patch)
treef71eebebfb60b1333a79df06df3b9cf088331b99
parentb0621d15c675b7b8c1615b0699cc85ea1430a728 (diff)
downloadDecky-Framegen-ecc45ab275f8d06b8862afb9e12f9bbe071c46ce.tar.gz
Decky-Framegen-ecc45ab275f8d06b8862afb9e12f9bbe071c46ce.zip
undo fsr4 patching auto > true (#121)
* comment out fsr4 enable as potential crash cause * bump ver
-rw-r--r--main.py4
-rw-r--r--package.json2
2 files changed, 3 insertions, 3 deletions
diff --git a/main.py b/main.py
index 05456bd..44d02a4 100644
--- a/main.py
+++ b/main.py
@@ -77,12 +77,12 @@ class Plugin:
updated_content = re.sub(r'FGType\s*=\s*auto', 'FGType=nukems', content)
# Replace Fsr4Update=auto with Fsr4Update=true
- updated_content = re.sub(r'Fsr4Update\s*=\s*auto', 'Fsr4Update=true', updated_content)
+ # updated_content = re.sub(r'Fsr4Update\s*=\s*auto', 'Fsr4Update=true', updated_content)
with open(ini_file, 'w') as f:
f.write(updated_content)
- decky.logger.info("Modified OptiScaler.ini to set FGType=nukems and Fsr4Update=true")
+ decky.logger.info("Modified OptiScaler.ini to set FGType=nukems")
return True
else:
decky.logger.warning(f"OptiScaler.ini not found at {ini_file}")
diff --git a/package.json b/package.json
index b614bc4..2f22876 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "decky-framegen",
- "version": "0.11.3",
+ "version": "0.11.5",
"description": "plugin to install OptiScaler bleeding-edge and enable upscaling and framegen in a large variety of games.",
"type": "module",
"scripts": {