diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-02-08 18:49:37 -0500 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-02-08 18:49:37 -0500 |
| commit | 2ad099fb1c6e951bf151284c987e7d3208410a7f (patch) | |
| tree | ef07033d82ecbca910225f2e17ec2b9cd734c44a | |
| parent | 11e86aa9da41e3f19eded2eec3f046f08dd1c3da (diff) | |
| download | Decky-Framegen-2ad099fb1c6e951bf151284c987e7d3208410a7f.tar.gz Decky-Framegen-2ad099fb1c6e951bf151284c987e7d3208410a7f.zip | |
feat: add xess back in, fix script and path check
| -rw-r--r-- | defaults/assets/assets.zip | bin | 18741969 -> 0 bytes | |||
| -rwxr-xr-x | defaults/assets/prepare.sh | 6 | ||||
| -rw-r--r-- | libxess.dll | bin | 0 -> 67095056 bytes | |||
| -rw-r--r-- | main.py | 2 | ||||
| -rw-r--r-- | package.json | 5 |
5 files changed, 9 insertions, 4 deletions
diff --git a/defaults/assets/assets.zip b/defaults/assets/assets.zip Binary files differdeleted file mode 100644 index 4866710..0000000 --- a/defaults/assets/assets.zip +++ /dev/null diff --git a/defaults/assets/prepare.sh b/defaults/assets/prepare.sh index f41dfe7..e09abee 100755 --- a/defaults/assets/prepare.sh +++ b/defaults/assets/prepare.sh @@ -4,7 +4,7 @@ set -x # Enable debugging exec > >(tee -i /tmp/prepare.log) 2>&1 # Log output and errors mod_path="$HOME/fgmod" -# bin_path="$(dirname "$(realpath "$0")")/../bin" +bin_path="$(dirname "$(realpath "$0")")/../bin" assets_path="$(dirname "$(realpath "$0")")" standalone=1 @@ -16,8 +16,8 @@ fi mkdir -p "$mod_path" cd "$mod_path" || exit 1 -# Copy required files from bin directory into the current directory -cp "$assets_path/assets.zip" . +# Copy all files from bin directory into the current directory +cp "$bin_path"/* . # Unzip assets.zip so that all files are in the modpath root, then remove the zip file unzip -j -o assets.zip && rm assets.zip diff --git a/libxess.dll b/libxess.dll Binary files differnew file mode 100644 index 0000000..50b9a94 --- /dev/null +++ b/libxess.dll @@ -88,7 +88,7 @@ class Plugin: "amd_fidelityfx_dx12.dll", "dlss-enabler-upscaler.dll", "fakenvapi.ini", "_nvngx.dll", "amd_fidelityfx_vk.dll", "dlssg_to_fsr3_amd_is_better-3.0.dll", "fgmod", "nvngx.dll", "d3dcompiler_47.dll", "dlssg_to_fsr3_amd_is_better.dll", "fgmod-uninstaller.sh", "nvngx.ini", - "dlss-enabler.dll", "dxgi.dll" + "dlss-enabler.dll", "dxgi.dll", "libxess.dll" ] if path.exists(): diff --git a/package.json b/package.json index 5b65784..acb54d4 100644 --- a/package.json +++ b/package.json @@ -115,6 +115,11 @@ "name": "dxgi.dll", "url": "https://github.com/xXJSONDeruloXx/Decky-Framegen/releases/download/troubleshoot-binaries/dxgi.dll", "sha256hash": "9ae73670c5dbb80f40d98176cb4426992f0cb0b9d0143b1d8083838d03b7d6fc" + }, + { + "name": "libxess.dll", + "url": "https://github.com/xXJSONDeruloXx/Decky-Framegen/releases/download/troubleshoot-binaries/libxess.dll", + "sha256hash": "703ab8debc05ae209f6e4622cc06edf9f95a241f7ce68ee75c8955564d36ad70" } ] } |
