mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-03 21:23:38 +00:00
[PR #853] [MERGED] Added Explode and (un)Reduce #1283
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/adamhathcock/sharpcompress/pull/853
Author: @gjefferyes
Created: 6/25/2024
Status: ✅ Merged
Merged: 7/24/2024
Merged by: @adamhathcock
Base:
master← Head:master📝 Commits (4)
061273bAdded Export and (un)Reduce to sharpCompress9c257faMerge branch 'master' into master84fb99cMerge branch 'adamhathcock:master' into master3545693Added Tests and supporting Files.📊 Changes
13 files changed (+1350 additions, -9 deletions)
View changed files
📝
src/SharpCompress/Common/CompressionType.cs(+6 -1)📝
src/SharpCompress/Common/Zip/ZipCompressionMethod.cs(+5 -0)📝
src/SharpCompress/Common/Zip/ZipEntry.cs(+5 -0)📝
src/SharpCompress/Common/Zip/ZipFilePart.cs(+27 -0)➕
src/SharpCompress/Compressors/Explode/ExplodeStream.cs(+746 -0)➕
src/SharpCompress/Compressors/Explode/HuftTree.cs(+269 -0)➕
src/SharpCompress/Compressors/Reduce/ReduceStream.cs(+249 -0)📝
tests/SharpCompress.Test/Zip/ZipArchiveTests.cs(+43 -8)➕
tests/TestArchives/Archives/Zip.implode.zip(+0 -0)➕
tests/TestArchives/Archives/Zip.reduce1.zip(+0 -0)➕
tests/TestArchives/Archives/Zip.reduce2.zip(+0 -0)➕
tests/TestArchives/Archives/Zip.reduce3.zip(+0 -0)➕
tests/TestArchives/Archives/Zip.reduce4.zip(+0 -0)📄 Description
I added decompression streams for Explode (Zip Type 6) and (un)Reduce (zip Type 2,3,4,5)
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.