mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-03 21:23:38 +00:00
[PR #247] [MERGED] XZ Format #922
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/247
Author: @adamhathcock
Created: 5/30/2017
Status: ✅ Merged
Merged: 5/31/2017
Merged by: @adamhathcock
Base:
master← Head:xz📝 Commits (7)
5ed686dStarted integrated XZ format from https://github.com/sambott/XZ.NETfa32cb4Add readme line as it was copy/pasted317d308Merge branch 'master' into xzc3a9b34Tar used with XZ42424f0Merge branch 'master' into xzea62eb8update formatsb6a8a5dMerge branch 'master' into xz📊 Changes
23 files changed (+906 additions, -11 deletions)
View changed files
📝
FORMATS.md(+15 -9)📝
README.md(+2 -0)📝
src/SharpCompress/Common/CompressionType.cs(+1 -0)➕
src/SharpCompress/Compressors/Xz/BinaryUtils.cs(+52 -0)➕
src/SharpCompress/Compressors/Xz/CheckType.cs(+10 -0)➕
src/SharpCompress/Compressors/Xz/Crc32.cs(+60 -0)➕
src/SharpCompress/Compressors/Xz/Crc64.cs(+57 -0)➕
src/SharpCompress/Compressors/Xz/Filters/BlockFilter.cs(+53 -0)➕
src/SharpCompress/Compressors/Xz/Filters/Lzma2Filter.cs(+54 -0)➕
src/SharpCompress/Compressors/Xz/MultiByteIntegers.cs(+32 -0)➕
src/SharpCompress/Compressors/Xz/ReadOnlyStream.cs(+44 -0)➕
src/SharpCompress/Compressors/Xz/XZBlock.cs(+165 -0)➕
src/SharpCompress/Compressors/Xz/XZFooter.cs(+49 -0)➕
src/SharpCompress/Compressors/Xz/XZHeader.cs(+55 -0)➕
src/SharpCompress/Compressors/Xz/XZIndex.cs(+73 -0)➕
src/SharpCompress/Compressors/Xz/XZIndexMarkerReachedException.cs(+8 -0)➕
src/SharpCompress/Compressors/Xz/XZIndexRecord.cs(+22 -0)➕
src/SharpCompress/Compressors/Xz/XZReadOnlyStream.cs(+14 -0)➕
src/SharpCompress/Compressors/Xz/XZStream.cs(+116 -0)📝
src/SharpCompress/Readers/ReaderFactory.cs(+13 -2)...and 3 more files
📄 Description
Addresses https://github.com/adamhathcock/sharpcompress/issues/94
Compression bits here. Going for read-only support.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.