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

Add zip64 #211

Merged
merged 6 commits into from
Mar 13, 2017
Merged

Add zip64 #211

merged 6 commits into from
Mar 13, 2017

Commits on Mar 9, 2017

  1. Configuration menu
    Copy the full SHA
    cd3cbd2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1263c0d View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2017

  1. Fixed an error in the zip64 central end of header: the signature + le…

    …ngth (12 bytes) are not included in the reported length.
    kenkendk committed Mar 10, 2017
    Configuration menu
    Copy the full SHA
    d7f4c0e View commit details
    Browse the repository at this point in the history
  2. Changed the logic to throw exceptions when sizes exceed the zip archi…

    …ve limits, and zip64 is not enabled.
    
    This changes the logic, such that archives larger than 4GiB are still automatically written correct (only the central header is special).
    Archives with individual streams larger than 4 GiB must set the zip64 flag, either on the archive or the individual streams.
    kenkendk committed Mar 10, 2017
    Configuration menu
    Copy the full SHA
    85280f6 View commit details
    Browse the repository at this point in the history
  3. Added a test suite to verify zip64 write support is working, and can …

    …be read in both Archive and Stream mode
    kenkendk committed Mar 10, 2017
    Configuration menu
    Copy the full SHA
    2894711 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2017

  1. Fixed compiling the unittest

    kenkendk committed Mar 11, 2017
    Configuration menu
    Copy the full SHA
    726b9c8 View commit details
    Browse the repository at this point in the history