Skip to content

Commit 998a2c0

Browse files
committed
Update some summary comments and the changes text file.
1 parent 930f537 commit 998a2c0

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

doc/Changes.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ Changes since 0.85.1
55
+ FastZip revamped to handle file attributes on extract + other fixes
66
+ Null ref in path filter fixed.
77
+ Extra data handling fixes
8-
+ Non ascii zip password handling fix
98
+ Revamped build and conditional compilation handling
10-
+ Fix for zip compression problem at low levels
119
+ Many bug fixes for Zip64.
1210
+ Minor improvements to C# samples.
11+
+ ZIP-1341 Non ascii zip password handling fix.
12+
+ ZIP-355 Fix for zip compression problem at low levels
1313

1414
Changes since v0.85
1515

src/Zip/ZipFile.cs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3421,19 +3421,19 @@ public override int Read(byte[] buffer, int offset, int count)
34213421
/// <summary>
34223422
/// Provides a static way to obtain a source of data for an entry.
34233423
/// </summary>
3424-
/// <remarks>The </remarks>
34253424
public interface IStaticDataSource
34263425
{
34273426
/// <summary>
3428-
/// Get a data source.
3427+
/// Get a source of data by creating a new stream.
34293428
/// </summary>
34303429
/// <returns>Returns a <see cref="Stream"/> to use for compression input.</returns>
3430+
/// <remarks>Ideally a new stream is created and opened to achieve this, to avoid locking problems.</remarks>
34313431
Stream GetSource();
34323432
}
34333433

34343434
/// <summary>
3435-
/// Represents a source of data that dynamically provide multiple <see cref="Stream">data sources</see>
3436-
/// based on the parameters passed.
3435+
/// Represents a source of data that can dynamically provide
3436+
/// multiple <see cref="Stream">data sources</see> based on the parameters passed.
34373437
/// </summary>
34383438
public interface IDynamicDataSource
34393439
{
@@ -3443,11 +3443,12 @@ public interface IDynamicDataSource
34433443
/// <param name="entry">The <see cref="ZipEntry"/> to get a source for.</param>
34443444
/// <param name="name">The name for data if known.</param>
34453445
/// <returns>Returns a <see cref="Stream"/> to use for compression input.</returns>
3446+
/// <remarks>Ideally a new stream is created and opened to achieve this, to avoid locking problems.</remarks>
34463447
Stream GetSource(ZipEntry entry, string name);
34473448
}
34483449

34493450
/// <summary>
3450-
/// Default implementation of a <see cref="IStaticDataSource"/>
3451+
/// Default implementation of a <see cref="IStaticDataSource"/> for use with files stored on disk.
34513452
/// </summary>
34523453
class StaticDiskDataSource : IStaticDataSource
34533454
{
@@ -3479,7 +3480,7 @@ public Stream GetSource()
34793480

34803481

34813482
/// <summary>
3482-
/// Default implementation of <see cref="IDynamicDataSource"/>
3483+
/// Default implementation of <see cref="IDynamicDataSource"/> for files stored on disk.
34833484
/// </summary>
34843485
class DynamicDiskDataSource : IDynamicDataSource
34853486
{

0 commit comments

Comments
 (0)