diff options
| author | XxJSONDeruloxX <danielhimebauch@gmail.com> | 2026-04-19 12:25:10 -0400 |
|---|---|---|
| committer | XxJSONDeruloxX <danielhimebauch@gmail.com> | 2026-04-19 12:25:10 -0400 |
| commit | fdcfd1035aeee76da7efca00fd1aca1898d48ef1 (patch) | |
| tree | abfa77ed5bdf3c21dba6408e4d71a76037793346 | |
| parent | 2371546f12cdac39a484e4d9c53a4b9165b0de0a (diff) | |
| download | Decky-Framegen-fdcfd1035aeee76da7efca00fd1aca1898d48ef1.tar.gz Decky-Framegen-fdcfd1035aeee76da7efca00fd1aca1898d48ef1.zip | |
fix: correct OptiScaler 0.9.0-final download URL and sha256
The release tag is v0.9.0, not v0.9. The previous commit (7fb070e)
updated the sha256 to match the 9-byte 404 response body returned by
the /v0.9/ URL rather than the actual archive, so the Decky CLI was
validating a 'Not Found' stub and bundling it. This caused a
completely non-functional plugin that silently failed to extract
OptiScaler at install time.
Fix:
- URL: .../v0.9/... -> .../v0.9.0/...
- hash: 0019dfc4... (sha256 of 404 body) -> a988ce2c... (sha256 of real archive)
| -rw-r--r-- | package.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json index 97167c8..1075322 100644 --- a/package.json +++ b/package.json @@ -53,8 +53,8 @@ "remote_binary": [ { - "sha256hash": "0019dfc4b32d63c1392aa264aed2253c1e0c2fb09216f8e2cc269bbfb8bb49b5", - "url": "https://github.com/optiscaler/OptiScaler/releases/download/v0.9/Optiscaler_0.9.0-final.20260401._AF.7z", + "sha256hash": "a988ce2c0a86bba58a6313659d1ed2ab78f994dbdfab246394a2e4293ac68010", + "url": "https://github.com/optiscaler/OptiScaler/releases/download/v0.9.0/Optiscaler_0.9.0-final.20260401._AF.7z", "name": "Optiscaler_0.9.0-final.20260401._AF.7z" }, { |
