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 diff --git a/src/SharpCompress/Archive/Rar/RarArchive.cs b/src/SharpCompress/Archive/Rar/RarArchive.cs index ea075057..5004a943 100644 --- a/src/SharpCompress/Archive/Rar/RarArchive.cs +++ b/src/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