mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-03 21:23:38 +00:00
[PR #245] [MERGED] Lzip #926
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/245
Author: @adamhathcock
Created: 5/30/2017
Status: ✅ Merged
Merged: 5/31/2017
Merged by: @adamhathcock
Base:
master← Head:lzip📝 Commits (10+)
f09b31eFirst pass. Writing isn't implemented on stream. Tests are busted.b879449LZipReader works...no file name :(f85ae05LZipWriter works7984b32Writing tests are actually correct now. LZipStream correctly writes trailer now. lzip command line tool likes it.e1b121bAdd recommendation blurbb2863a4Update notes for formats9e6b5cbMerge branch 'master' into lzip2952bddLZip isn't an archive format42ca995Attempting to fix and implement crc3210cc8fdLZip writing test passes📊 Changes
16 files changed (+274 additions, -56 deletions)
View changed files
📝
FORMATS.md(+20 -2)📝
README.md(+10 -0)📝
src/SharpCompress/Archives/ArchiveFactory.cs(+2 -1)📝
src/SharpCompress/Compressors/Deflate/CRC32.cs(+3 -3)📝
src/SharpCompress/Compressors/LZMA/LZipStream.cs(+75 -28)📝
src/SharpCompress/Compressors/LZMA/LzmaStream.cs(+1 -4)➕
src/SharpCompress/Crypto/Crc32Stream.cs(+106 -0)📝
src/SharpCompress/IO/CountingWritableSubStream.cs(+1 -0)📝
src/SharpCompress/Readers/ReaderFactory.cs(+1 -1)📝
src/SharpCompress/SharpCompress.csproj(+0 -3)📝
src/SharpCompress/Writers/Tar/TarWriter.cs(+22 -4)📝
tests/SharpCompress.Test/ADCTest.cs(+26 -0)📝
tests/SharpCompress.Test/SharpCompress.Test.csproj(+1 -6)📝
tests/SharpCompress.Test/Tar/TarWriterTests.cs(+6 -0)📝
tests/SharpCompress.Test/WriterTests.cs(+0 -4)➕
tests/TestArchives/Archives/Tar.noEmptyDirs.tar.lz(+0 -0)📄 Description
Covers https://github.com/adamhathcock/sharpcompress/issues/241
No CRC validation or writing. Maybe is a problem. Need to test with other applications
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.