From 11605dad507924574de4181cb90057aa9aedde8a Mon Sep 17 00:00:00 2001 From: Stardream Date: Sat, 21 Mar 2026 10:34:41 +1000 Subject: [PATCH] feat(zip): place images inside Scans/ folder in archive Files are now stored as Scans/ instead of being placed directly in the ZIP root, producing a cleaner folder structure on extraction. Bump version to 2.9.4. Co-Authored-By: Claude Sonnet 4.6 --- js/VGMdb_Album_Downloader.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/VGMdb_Album_Downloader.js b/js/VGMdb_Album_Downloader.js index bc14ccc..e23985b 100644 --- a/js/VGMdb_Album_Downloader.js +++ b/js/VGMdb_Album_Downloader.js @@ -1,7 +1,7 @@ // ==UserScript== // @name VGMdb Album Downloader // @namespace https://vgmdb.net/ -// @version 2.9.3 +// @version 2.9.4 // @description 支持 单张下载 & zip 打包 & 实时进度显示 & 图片重命名 // @match https://vgmdb.net/album/* // @grant GM_xmlhttpRequest @@ -191,7 +191,7 @@ }); }); await new Promise(res => setTimeout(res, 400)); - zipFiles.push({ name: filename, lastModified: new Date(), input: blob }); + zipFiles.push({ name: `Scans/${filename}`, lastModified: new Date(), input: blob }); log(T.added(filename)); } else { GM_download({