[PR #807] [MERGED] Support for decompressing Zip Shrink (Method:1) #1246

Open
opened 2026-01-29 22:19:38 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/adamhathcock/sharpcompress/pull/807
Author: @TwanVanDongen
Created: 1/27/2024
Status: Merged
Merged: 1/29/2024
Merged by: @adamhathcock

Base: masterHead: master


📝 Commits (3)

📊 Changes

9 files changed (+633 additions, -1 deletions)

View changed files

📝 src/SharpCompress/Common/CompressionType.cs (+2 -1)
📝 src/SharpCompress/Common/Zip/ZipCompressionMethod.cs (+1 -0)
📝 src/SharpCompress/Common/Zip/ZipEntry.cs (+4 -0)
📝 src/SharpCompress/Common/Zip/ZipFilePart.cs (+11 -0)
src/SharpCompress/Compressors/Shrink/BitStream.cs (+85 -0)
src/SharpCompress/Compressors/Shrink/HwUnshrink.cs (+433 -0)
src/SharpCompress/Compressors/Shrink/ShrinkStream.cs (+89 -0)
📝 tests/SharpCompress.Test/Zip/ZipArchiveTests.cs (+8 -0)
tests/TestArchives/Archives/Zip.shrink.zip (+0 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/adamhathcock/sharpcompress/pull/807 **Author:** [@TwanVanDongen](https://github.com/TwanVanDongen) **Created:** 1/27/2024 **Status:** ✅ Merged **Merged:** 1/29/2024 **Merged by:** [@adamhathcock](https://github.com/adamhathcock) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (3) - [`225aaab`](https://github.com/adamhathcock/sharpcompress/commit/225aaab4f4cd62b94277aed73c5fed507afb6c1a) Support for decompressing Zip Shrink (method:1) added - [`fe13d29`](https://github.com/adamhathcock/sharpcompress/commit/fe13d29549735a605b8b7a6e561050c6e000a56b) Merge branch 'master' of https://github.com/TwanVanDongen/sharpcompress - [`c057ffb`](https://github.com/adamhathcock/sharpcompress/commit/c057ffb153bedace076b102efc6586d60ba26bf2) Refrormatted using CSharpier ### 📊 Changes **9 files changed** (+633 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `src/SharpCompress/Common/CompressionType.cs` (+2 -1) 📝 `src/SharpCompress/Common/Zip/ZipCompressionMethod.cs` (+1 -0) 📝 `src/SharpCompress/Common/Zip/ZipEntry.cs` (+4 -0) 📝 `src/SharpCompress/Common/Zip/ZipFilePart.cs` (+11 -0) ➕ `src/SharpCompress/Compressors/Shrink/BitStream.cs` (+85 -0) ➕ `src/SharpCompress/Compressors/Shrink/HwUnshrink.cs` (+433 -0) ➕ `src/SharpCompress/Compressors/Shrink/ShrinkStream.cs` (+89 -0) 📝 `tests/SharpCompress.Test/Zip/ZipArchiveTests.cs` (+8 -0) ➕ `tests/TestArchives/Archives/Zip.shrink.zip` (+0 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 22:19:38 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/sharpcompress#1246