[PR #905] [MERGED] ARC decompression methods 3 and 4 added #1333

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

📋 Pull Request Information

Original PR: https://github.com/adamhathcock/sharpcompress/pull/905
Author: @TwanVanDongen
Created: 3/11/2025
Status: Merged
Merged: 3/12/2025
Merged by: @adamhathcock

Base: masterHead: master


📝 Commits (6)

📊 Changes

10 files changed (+363 additions, -15 deletions)

View changed files

📝 src/SharpCompress/Common/Arc/ArcEntryHeader.cs (+5 -12)
📝 src/SharpCompress/Common/Arc/ArcFilePart.cs (+27 -1)
📝 src/SharpCompress/Common/CompressionType.cs (+2 -0)
src/SharpCompress/Compressors/RLE90/RunLength90Stream.cs (+100 -0)
src/SharpCompress/Compressors/Squeezed/BitReader.cs (+36 -0)
src/SharpCompress/Compressors/Squeezed/RLE.cs (+52 -0)
src/SharpCompress/Compressors/Squeezed/SqueezedStream.cs (+113 -0)
📝 src/SharpCompress/IO/ReadOnlySubStream.cs (+2 -2)
📝 tests/SharpCompress.Test/Arc/ArcReaderTests.cs (+26 -0)
tests/TestArchives/Archives/Arc.squeezed.arc (+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/905 **Author:** [@TwanVanDongen](https://github.com/TwanVanDongen) **Created:** 3/11/2025 **Status:** ✅ Merged **Merged:** 3/12/2025 **Merged by:** [@adamhathcock](https://github.com/adamhathcock) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (6) - [`eaf466c`](https://github.com/adamhathcock/sharpcompress/commit/eaf466c5c3ddde637b8dc83282aecf92393ca6dc) Implementation of squeezed and packed compression algorithms for .ARC archive format - [`f36486d`](https://github.com/adamhathcock/sharpcompress/commit/f36486d0063967cb046504d1606e13b0a0ab0114) Merge branch 'master' of https://github.com/TwanVanDongen/sharpcompress - [`c5ddef6`](https://github.com/adamhathcock/sharpcompress/commit/c5ddef6ef7f4d5488324ffd5dc07c19dc9165bb6) An exception occurred in ReadOnlySubStream when attempting to set the position to the same value. - [`131c171`](https://github.com/adamhathcock/sharpcompress/commit/131c171d3e0ad7088cfd97ae88a49068cc1a0dc3) Merge branch 'master' of https://github.com/TwanVanDongen/sharpcompress - [`88d85ce`](https://github.com/adamhathcock/sharpcompress/commit/88d85ce6ace62a8101bb61773094aefb9dd4c7b4) Extra line removed for csharpier - [`de0f5c0`](https://github.com/adamhathcock/sharpcompress/commit/de0f5c0fcb65fa63a1536f73d8392bc3d9121af2) Merge branch 'master' of https://github.com/TwanVanDongen/sharpcompress ### 📊 Changes **10 files changed** (+363 additions, -15 deletions) <details> <summary>View changed files</summary> 📝 `src/SharpCompress/Common/Arc/ArcEntryHeader.cs` (+5 -12) 📝 `src/SharpCompress/Common/Arc/ArcFilePart.cs` (+27 -1) 📝 `src/SharpCompress/Common/CompressionType.cs` (+2 -0) ➕ `src/SharpCompress/Compressors/RLE90/RunLength90Stream.cs` (+100 -0) ➕ `src/SharpCompress/Compressors/Squeezed/BitReader.cs` (+36 -0) ➕ `src/SharpCompress/Compressors/Squeezed/RLE.cs` (+52 -0) ➕ `src/SharpCompress/Compressors/Squeezed/SqueezedStream.cs` (+113 -0) 📝 `src/SharpCompress/IO/ReadOnlySubStream.cs` (+2 -2) 📝 `tests/SharpCompress.Test/Arc/ArcReaderTests.cs` (+26 -0) ➕ `tests/TestArchives/Archives/Arc.squeezed.arc` (+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:20:03 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/sharpcompress#1333