fixed mp4decrypt and changed version

This commit is contained in:
stratuma 2024-06-20 19:07:00 +02:00
parent d38ef1685c
commit 9617ff089a
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
Crunchyroll <br /> Crunchyroll <br />
Downloader Downloader
</div> </div>
<div class="text-sm mt-1 text-gray-200"> v1.1.9 </div> <div class="text-sm mt-1 text-gray-200"> v1.2.0 </div>
<div class="absolute right-0 bottom-0 text-xs text-gray-200"> Made by Stratum </div> <div class="absolute right-0 bottom-0 text-xs text-gray-200"> Made by Stratum </div>
</div> </div>
</template> </template>

View File

@ -2,7 +2,7 @@
"name": "crunchyroll-downloader", "name": "crunchyroll-downloader",
"author": "Stratum", "author": "Stratum",
"description": "Crunchyroll Downloader", "description": "Crunchyroll Downloader",
"version": "1.1.9", "version": "1.2.0",
"private": true, "private": true,
"main": ".output/src/electron/background.js", "main": ".output/src/electron/background.js",
"repository": "https://github.com/stratuma/Crunchyroll-Downloader-v4.0", "repository": "https://github.com/stratuma/Crunchyroll-Downloader-v4.0",

View File

@ -14,7 +14,7 @@ export function getMP4DecryptPath() {
return mp4Decrypt return mp4Decrypt
} else { } else {
const mp4Decrypt = path.join(decryptPath, 'mp4decrypt.exe').replace(/\\/g, '\\\\').replace(/ /g, '\\ ') const mp4Decrypt = `"${path.join(decryptPath, 'mp4decrypt.exe')}"`
return mp4Decrypt return mp4Decrypt
} }