Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support zip archives not starting at zero offset #346

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Commits on May 28, 2024

  1. Support zip archives not starting at zero offset

    Zip archives are usually read from the back to the front, making it
    possible to append them to other files (e.g. executables) in order to
    provide some kind of embedded filesystem.
    
    This PR makes it possible to read, write, and update such zip files
    without affecting the existing functionality.
    LemonBoy committed May 28, 2024
    Configuration menu
    Copy the full SHA
    359276e View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2024

  1. Use updated miniz version

    The new miniz version correctly computes the archive starting offset.
    LemonBoy committed Jun 13, 2024
    Configuration menu
    Copy the full SHA
    7c578e3 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2024

  1. Fix compilation errors

    Use the correct mkdir signature on Windows vs other platforms.
    Remove CHMOD macro, it was simply wrapping the chmod libc call.
    LemonBoy committed Jun 14, 2024
    Configuration menu
    Copy the full SHA
    b5f6453 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2024

  1. Address some fixes

    kuba-- committed Jun 29, 2024
    Configuration menu
    Copy the full SHA
    cfbb0f8 View commit details
    Browse the repository at this point in the history