[PR #759] [MERGED] Feature/748 #1209

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

📋 Pull Request Information

Original PR: https://github.com/adamhathcock/sharpcompress/pull/759
Author: @Erior
Created: 9/11/2023
Status: Merged
Merged: 9/14/2023
Merged by: @adamhathcock

Base: masterHead: feature/748


📝 Commits (3)

📊 Changes

15 files changed (+350 additions, -0 deletions)

View changed files

src/SharpCompress/Compressors/Filters/BCJFilterARM.cs (+49 -0)
src/SharpCompress/Compressors/Filters/BCJFilterARMT.cs (+47 -0)
src/SharpCompress/Compressors/Filters/BCJFilterIA64.cs (+107 -0)
src/SharpCompress/Compressors/Filters/BCJFilterPPC.cs (+48 -0)
src/SharpCompress/Compressors/Filters/BCJFilterSPARC.cs (+58 -0)
📝 src/SharpCompress/Compressors/LZMA/Registry.cs (+15 -0)
📝 tests/SharpCompress.Test/SevenZip/SevenZipArchiveTests.cs (+26 -0)
tests/TestArchives/Archives/7Zip.ARM.7z (+0 -0)
tests/TestArchives/Archives/7Zip.ARMT.7z (+0 -0)
tests/TestArchives/Archives/7Zip.BCJ.7z (+0 -0)
tests/TestArchives/Archives/7Zip.BCJ2.7z (+0 -0)
tests/TestArchives/Archives/7Zip.Filters.7z (+0 -0)
tests/TestArchives/Archives/7Zip.IA64.7z (+0 -0)
tests/TestArchives/Archives/7Zip.PPC.7z (+0 -0)
tests/TestArchives/Archives/7Zip.SPARC.7z (+0 -0)

📄 Description

#748
Adding Filters
This raises another issue, we have refactoring work regarding 7z and Xz where they have overlapping implementations BCJ etc.
But should be handle in another pull


🔄 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/759 **Author:** [@Erior](https://github.com/Erior) **Created:** 9/11/2023 **Status:** ✅ Merged **Merged:** 9/14/2023 **Merged by:** [@adamhathcock](https://github.com/adamhathcock) **Base:** `master` ← **Head:** `feature/748` --- ### 📝 Commits (3) - [`6a859ac`](https://github.com/adamhathcock/sharpcompress/commit/6a859ac65d4486942af2c388d4d68faa8e740738) Adding Filters to 7z - [`0f19735`](https://github.com/adamhathcock/sharpcompress/commit/0f19735d3386bec32ea8e4217cbc11298d7956f5) Cleanup - [`6a14893`](https://github.com/adamhathcock/sharpcompress/commit/6a14893a23aa1acbd0919ffaddcfa50cc18a60f4) Merge branch 'master' into feature/748 ### 📊 Changes **15 files changed** (+350 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `src/SharpCompress/Compressors/Filters/BCJFilterARM.cs` (+49 -0) ➕ `src/SharpCompress/Compressors/Filters/BCJFilterARMT.cs` (+47 -0) ➕ `src/SharpCompress/Compressors/Filters/BCJFilterIA64.cs` (+107 -0) ➕ `src/SharpCompress/Compressors/Filters/BCJFilterPPC.cs` (+48 -0) ➕ `src/SharpCompress/Compressors/Filters/BCJFilterSPARC.cs` (+58 -0) 📝 `src/SharpCompress/Compressors/LZMA/Registry.cs` (+15 -0) 📝 `tests/SharpCompress.Test/SevenZip/SevenZipArchiveTests.cs` (+26 -0) ➕ `tests/TestArchives/Archives/7Zip.ARM.7z` (+0 -0) ➕ `tests/TestArchives/Archives/7Zip.ARMT.7z` (+0 -0) ➕ `tests/TestArchives/Archives/7Zip.BCJ.7z` (+0 -0) ➕ `tests/TestArchives/Archives/7Zip.BCJ2.7z` (+0 -0) ➕ `tests/TestArchives/Archives/7Zip.Filters.7z` (+0 -0) ➕ `tests/TestArchives/Archives/7Zip.IA64.7z` (+0 -0) ➕ `tests/TestArchives/Archives/7Zip.PPC.7z` (+0 -0) ➕ `tests/TestArchives/Archives/7Zip.SPARC.7z` (+0 -0) </details> ### 📄 Description #748 Adding Filters This raises another issue, we have refactoring work regarding 7z and Xz where they have overlapping implementations BCJ etc. But should be handle in another pull --- <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:30 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/sharpcompress#1209