[Scummvm-git-logs] scummvm-web master -> ec2e54fe06d13c7b562a79ed1334607c6df3957a

lephilousophe noreply at scummvm.org
Wed May 14 06:01:24 UTC 2025


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-web' repo located at https://api.github.com/repos/scummvm/scummvm-web .

Summary:
ec2e54fe06 DUMPER-COMPANION: Force generate DOS comaptible zip files


Commit: ec2e54fe06d13c7b562a79ed1334607c6df3957a
    https://github.com/scummvm/scummvm-web/commit/ec2e54fe06d13c7b562a79ed1334607c6df3957a
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2025-05-14T07:35:59+02:00

Commit Message:
DUMPER-COMPANION: Force generate DOS comaptible zip files

This workarounds bugs in zip.js and make sure the folder have proper
rights.
In addition, this guarantees proper support with old Zip
implementations.

Changed paths:
    dumper-companion/src/Dumper.tsx


diff --git a/dumper-companion/src/Dumper.tsx b/dumper-companion/src/Dumper.tsx
index 0037e78b..4dd24526 100644
--- a/dumper-companion/src/Dumper.tsx
+++ b/dumper-companion/src/Dumper.tsx
@@ -152,6 +152,7 @@ export default class Dumper extends Component<Props, State> {
                 volume.dumpToZip(zipFS.root, this.state.lang, !this.state.unicode, this.state.forceMacBinary, this.log.bind(this));
                 const blob = await zipFS.exportBlob({
                     level: 0,
+                    msDosCompatible: true,
                     onprogress: (index, max) => {
                         const percent = Math.floor(index / max * 100);
                         this.updateDumpPercent(percent);




More information about the Scummvm-git-logs mailing list