summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxXJsonDeruloXx <danielhimebauch@gmail.com>2026-08-06 23:24:08 -0400
committerxXJsonDeruloXx <danielhimebauch@gmail.com>2026-08-06 23:24:08 -0400
commitcdac13abe80137ef5546b699200ea72fd045e149 (patch)
tree72a4ec30dfafbd9797a1d52958fd7f66ac9114f4
parenta52a7ba0ea7366f6f035594582c9bc1876ae65bd (diff)
downloaddecky-lsfg-vk-cdac13abe80137ef5546b699200ea72fd045e149.tar.gz
decky-lsfg-vk-cdac13abe80137ef5546b699200ea72fd045e149.zip
fix: use v1 layer image-quality backport
-rw-r--r--package.json6
-rw-r--r--src/components/FpsMultiplierControl.tsx3
2 files changed, 4 insertions, 5 deletions
diff --git a/package.json b/package.json
index 4e32940..db1a97a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "decky-lsfg-vk",
- "version": "0.12.8",
+ "version": "0.12.9",
"description": "Use Lossless Scaling on the Steam Deck using the lsfg-vk vulkan layer",
"type": "module",
"scripts": {
@@ -50,8 +50,8 @@
"remote_binary": [
{
"name": "lsfg-vk_noui.zip",
- "url": "https://github.com/xXJSONDeruloXx/lsfg-vk/releases/download/fp16-test-2/lsfg-vk_noui.zip",
- "sha256hash": "a406b3730144c2011e2c2acd3cf44f3ec6c048ee86099bc9c3ac90aa1515e5ec"
+ "url": "https://github.com/xXJSONDeruloXx/lsfg-vk/releases/download/v1.0.0-amd-robust-image-quality/lsfg-vk_noui.zip",
+ "sha256hash": "bdb023c5bfb97ab0e79e7f7c5778e31807b02150086821fcfe6ba29ad7a2a9ba"
},
{
"name": "org.freedesktop.Platform.VulkanLayer.lsfg_vk_23.08.flatpak",
diff --git a/src/components/FpsMultiplierControl.tsx b/src/components/FpsMultiplierControl.tsx
index 206643e..b9a0f80 100644
--- a/src/components/FpsMultiplierControl.tsx
+++ b/src/components/FpsMultiplierControl.tsx
@@ -1,7 +1,6 @@
import { PanelSectionRow, DialogButton, Focusable } from "@decky/ui";
import { ConfigurationData } from "../config/configSchema";
import { MULTIPLIER } from "../config/generatedConfigSchema";
-import t from '../i18n/i18n';
interface FpsMultiplierControlProps {
config: ConfigurationData;
@@ -50,7 +49,7 @@ export function FpsMultiplierControl({
textAlign: "center"
}}
>
- {config.multiplier < 2 ? t('MULTIPLIER_OFF', 'OFF') : `${config.multiplier}X`}
+ {`${config.multiplier}X`}
</div>
<DialogButton
style={{