1
0
Fork 0
mirror of https://github.com/marcrobledo/RomPatcher.js.git synced 2025-08-06 16:50:54 +00:00

fixed MD5 hashing with >512MB files, ignore txt, readmes,etc files in zips, multiple predefined patches is now a dropdown, allowing user to choose and change patch without having to refresh the app

This commit is contained in:
Marc Robledo 2021-09-20 08:47:26 +02:00
parent bcc714f179
commit 458d7297e4
7 changed files with 366 additions and 251 deletions

View file

@ -29,7 +29,7 @@ caches.keys().then(function(cacheNames){
});
var PRECACHE_ID='rom-patcher-js';
var PRECACHE_VERSION='v12';
var PRECACHE_VERSION='v14';
var PRECACHE_URLS=[
'/RomPatcher.js/','/RomPatcher.js/index.html',
'/RomPatcher.js/manifest.json',
@ -48,7 +48,6 @@ var PRECACHE_URLS=[
'/RomPatcher.js/js/zip.js/zip.js',
'/RomPatcher.js/js/zip.js/z-worker.js',
'/RomPatcher.js/js/zip.js/inflate.js',
'/RomPatcher.js/js/formats/zip.js',
'/RomPatcher.js/js/formats/ips.js',
'/RomPatcher.js/js/formats/ups.js',
'/RomPatcher.js/js/formats/aps.js',
@ -56,7 +55,8 @@ var PRECACHE_URLS=[
'/RomPatcher.js/js/formats/rup.js',
'/RomPatcher.js/js/formats/ppf.js',
'/RomPatcher.js/js/formats/pmsr.js',
'/RomPatcher.js/js/formats/vcdiff.js'
'/RomPatcher.js/js/formats/vcdiff.js',
'/RomPatcher.js/js/formats/zip.js'
];