mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-03 21:23:38 +00:00
[PR #183] [CLOSED] Adds support for Apple DART's RLE, corrects comments and copyright messages. #883
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/183
Author: @claunia
Created: 9/30/2016
Status: ❌ Closed
Base:
master← Head:master📝 Commits (5)
a420299Added decompressor for Apple DART's RLE algorithm.9e4dbc4Corrected comments on ADC algorithm.8f02446Corrected copyright messages.4e7ef54Added ADC and DART's RLE to formats list.6a1ba48Update FORMATS.md📊 Changes
8 files changed (+301 additions, -7 deletions)
View changed files
📝
FORMATS.md(+3 -1)📝
src/SharpCompress/Compressors/ADC/ADCBase.cs(+2 -2)📝
src/SharpCompress/Compressors/ADC/ADCStream.cs(+2 -2)➕
src/SharpCompress/Compressors/DART/RLEStream.cs(+235 -0)📝
test/SharpCompress.Test/ADCTest.cs(+2 -2)➕
test/SharpCompress.Test/DARTTest.cs(+57 -0)➕
test/TestArchives/Archives/dart_rle_compressed.bin(+0 -0)➕
test/TestArchives/Archives/dart_rle_decompressed.bin(+0 -0)📄 Description
This adds support for Apple DART's RLE algorithm.
I've put it in its separate folder because DART implements another algorithm, a variation of LZH differently enough that no known implementation decodes it correctly.
Or maybe we should move DART's RLE/LZH, ADC, and in the future, KenCode, to a folder called "Apple"???
I also corrected the comments that contained incorrect copyright messages and filenames, and the Formats documentation.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.