Skip to content

Commit

Permalink
Update Changes.txt
Browse files Browse the repository at this point in the history
Some minor typos.
Add IEntryFactory code to 1.1 cmbx.
  • Loading branch information
jfreilly committed Dec 19, 2006
1 parent c38c6f4 commit 9d01a60
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 20 deletions.
10 changes: 5 additions & 5 deletions SharpZlib.build
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
-->

<target name="build"
description="Build the current source generating appropriate build artifacts">
description="Build the current source.">
<echo message="Building #ZipLib"/>
<csc
target="library"
Expand All @@ -35,7 +35,7 @@
</target>

<target name="build.cf"
description="Build for compact framework using version defined in build.cf property">
description="Build for compact framework. Version defined in build.cf property">
<echo message="Building #ZipLib for compact framework"/>
<csc
target="library"
Expand All @@ -57,7 +57,7 @@
</target>

<target name="preparerelease"
description="Prepeare for a relase by setting up versions etc.">
description="Prepare for a release.">
<script language="C#">
<code><![CDATA[
static StringCollection SearchDirectory(string directory, string filemask)
Expand Down Expand Up @@ -196,13 +196,13 @@
</target>

<target name="releasebuild"
description="Prepare and buils a release version">
description="Prepare and builds a release version">
<call target="preparerelease" />
<call target="build" />
</target>

<target name="clean"
description="Remove build artifacts">
description="Remove build artefacts">
<delete verbose="true" >
<fileset basedir=".">
<include name="bin/ICSharpCode.SharpZipLib.dll"/>
Expand Down
12 changes: 7 additions & 5 deletions doc/Changes.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
Changes since v0.85

+ BREAKING CHANGE: Zip name transform implementations and other classes no longer support non-relative paths.
+ Update to Compact Framework handling to cater for CF 2.0 as well as 1.0
+ GZipOutputStream header writing delayed allowing the class to be used with HTTP and IIS (via HttpResponse.Filter). This was supposed to be fixed in 0.6 but was ommited.
+ BREAKING CHANGE: Zip name transform implementations and other classes no longer directly support non-relative paths.
+ Update to Compact Framework handling to cater for CF 2.0 as well as 1.0 (minus encryption for 1.0)
+ Fix for Zip64 descriptor handling.
+ Zip64 handling altered to default to "Zip32" for compatability.
+ Add preliminary implementation for handlng of full unicode names.
+ Fix up encryption handling for ZipFile during updates.
+ ZIP-149 SVN Revision number incorporated in builds.
+ Fix for updating bug were comment is the only thing updated.
+ Add IEntryFactory interface and default implementation.
+ Add IEntryFactory interface and default implementation. Used in FastZip class currently.
+ ZIP-1216 GZipOutputStream header writing delayed allowing the class to be used with HTTP and IIS (via HttpResponse.Filter). This was supposed to be fixed in 0.6 but was ommited.
+ ZIP-149 SVN Revision number incorporated in builds.
+ ZIP-1245 CF Build support added

Changes since v0.84
+ Mod time written in gzip header corrected.
Expand Down
2 changes: 1 addition & 1 deletion samples/cs/CreateZipFile/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyVersion("0.85.1.269")]
[assembly: AssemblyVersion("0.85.1.270")]

[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("")]
Expand Down
2 changes: 1 addition & 1 deletion samples/cs/FastZip/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
// You can specify all values by your own or you can build default build and revision
// numbers with the '*' character (the default):

[assembly: AssemblyVersion("0.85.1.269")]
[assembly: AssemblyVersion("0.85.1.270")]

// The following attributes specify the key for the sign of your assembly. See the
// .NET Framework documentation for more information about signing.
Expand Down
2 changes: 1 addition & 1 deletion samples/cs/minibzip2/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyVersion("0.85.1.269")]
[assembly: AssemblyVersion("0.85.1.270")]

[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("")]
Expand Down
2 changes: 1 addition & 1 deletion samples/cs/minigzip/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyVersion("0.85.1.269")]
[assembly: AssemblyVersion("0.85.1.270")]

[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("")]
Expand Down
2 changes: 1 addition & 1 deletion samples/cs/sz/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
// You can specify all values by your own or you can build default build and revision
// numbers with the '*' character (the default):

[assembly: AssemblyVersion("0.85.1.269")]
[assembly: AssemblyVersion("0.85.1.270")]

// The following attributes specify the key for the sign of your assembly. See the
// .NET Framework documentation for more information about signing.
Expand Down
2 changes: 1 addition & 1 deletion samples/cs/tar/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
// You can specify all values by your own or you can build default build and revision
// numbers with the '*' character (the default):

[assembly: AssemblyVersion("0.85.1.269")]
[assembly: AssemblyVersion("0.85.1.270")]

// The following attributes specify the key for the sign of your assembly. See the
// .NET Framework documentation for more information about signing.
Expand Down
2 changes: 1 addition & 1 deletion samples/cs/zf/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("0.85.1.269")]
[assembly: AssemblyVersion("0.85.1.270")]

//
// In order to sign your assembly you must specify a key to use. Refer to the
Expand Down
2 changes: 1 addition & 1 deletion src/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyVersion("0.85.1.269")]
[assembly: AssemblyVersion("0.85.1.270")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
Expand Down
2 changes: 2 additions & 0 deletions src/ICSharpCode.SharpZLib.prjx
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@
<File name=".\Zip\ZipHelperStream.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
<File name=".\Zip\ZipExtraData.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
<File name=".\Core\StreamUtils.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
<File name=".\Zip\ZipEntryFactory.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
<File name=".\Zip\IEntryFactory.cs" subtype="Code" buildaction="Compile" dependson="" data="" />
</Contents>
<References />
<DeploymentInformation target="" script="" strategy="File" />
Expand Down
2 changes: 1 addition & 1 deletion src/Zip/IEntryFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
namespace ICSharpCode.SharpZipLib.Zip
{
/// <summary>
/// Defines factory mewthods for creating new <see cref="ZipEntry"></see> values.
/// Defines factory methods for creating new <see cref="ZipEntry"></see> values.
/// </summary>
public interface IEntryFactory
{
Expand Down
2 changes: 1 addition & 1 deletion tests/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
// You can specify all values by your own or you can build default build and revision
// numbers with the '*' character (the default):

[assembly: AssemblyVersion("0.85.1.269")]
[assembly: AssemblyVersion("0.85.1.270")]

// The following attributes specify the key for the sign of your assembly. See the
// .NET Framework documentation for more information about signing.
Expand Down

0 comments on commit 9d01a60

Please sign in to comment.