From 6e0f4ecbc97c4fb00a2ea73496b80c8223271f28 Mon Sep 17 00:00:00 2001 From: Roy van Kaathoven Date: Tue, 27 Oct 2015 18:52:06 +0100 Subject: [PATCH 1/2] Add password when opening RarReader --- SharpCompress/Archive/Rar/RarArchive.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SharpCompress/Archive/Rar/RarArchive.cs b/SharpCompress/Archive/Rar/RarArchive.cs index 46fe783d..f7f88b39 100644 --- a/SharpCompress/Archive/Rar/RarArchive.cs +++ b/SharpCompress/Archive/Rar/RarArchive.cs @@ -64,7 +64,7 @@ namespace SharpCompress.Archive.Rar { var stream = Volumes.First().Stream; stream.Position = 0; - return RarReader.Open(stream); + return RarReader.Open(stream, Password); } public override bool IsSolid From 7abf2ed58bdd69e014f8621db5bdc7b67c6a48f5 Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Sun, 3 Jan 2016 11:15:36 +0000 Subject: [PATCH 2/2] Update README --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 78125194..d3a2e211 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ SharpCompress ============= -Github mirror of http://sharpcompress.codeplex.com - SharpCompress is a compression library for .NET/Mono/Silverlight/WP7 that can unrar, un7zip, unzip, untar unbzip2 and ungzip with forward-only reading and file random access APIs. Write support for zip/tar/bzip2/gzip are implemented. The major feature is support for non-seekable streams so large files can be processed on the fly (i.e. download stream). @@ -21,6 +19,12 @@ TODOs (always lots): * Zip64 * Multi-volume Zip support. +In-Progress: +============== +- RAR5 support +- DNX/NET Core support +- xproj targeting + Version 0.11.1: ============== - Added Cancel on IReader