Merge branch 'master' into dnx

Conflicts:
	src/SharpCompress/Archive/Rar/RarArchive.cs
This commit is contained in:
Adam Hathcock
2016-01-03 11:19:04 +00:00
2 changed files with 7 additions and 3 deletions

View File

@@ -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

View File

@@ -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