Skip to content

Commit 1c44b44

Browse files
committed
v.1.1.8 release
1 parent 5239c77 commit 1c44b44

File tree

9 files changed

+26
-13
lines changed

9 files changed

+26
-13
lines changed

Diff for: Ghostscript.NET.DisplayTest/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.1.7")]
36-
[assembly: AssemblyFileVersion("1.1.7")]
35+
[assembly: AssemblyVersion("1.1.8")]
36+
[assembly: AssemblyFileVersion("1.1.8")]

Diff for: Ghostscript.NET.Samples/Ghostscript.NET.Samples.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<WarningLevel>4</WarningLevel>
3535
</PropertyGroup>
3636
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
37-
<PlatformTarget>AnyCPU</PlatformTarget>
37+
<PlatformTarget>x86</PlatformTarget>
3838
<DebugType>pdbonly</DebugType>
3939
<Optimize>true</Optimize>
4040
<OutputPath>bin\Release\</OutputPath>

Diff for: Ghostscript.NET.Samples/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.1.7")]
36-
[assembly: AssemblyFileVersion("1.1.7")]
35+
[assembly: AssemblyVersion("1.1.8")]
36+
[assembly: AssemblyFileVersion("1.1.8")]

Diff for: Ghostscript.NET.Samples/Samples/RasterizerSample.cs

+7-3
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,14 @@ public void Start()
5858

5959
_rasterizer = new GhostscriptRasterizer();
6060

61-
//byte[] b = File.ReadAllBytes(inputPdfPath);
62-
//MemoryStream ms = new MemoryStream(b);
61+
/* MemoryStream usage sample
62+
63+
byte[] buffer = File.ReadAllBytes(inputPdfPath);
64+
MemoryStream ms = new MemoryStream(buffer);
6365
64-
//_rasterizer.Open(ms);
66+
_rasterizer.Open(ms);
67+
68+
*/
6569

6670
_rasterizer.Open(inputPdfPath, _lastInstalledVersion, false);
6771

Diff for: Ghostscript.NET.Viewer/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.1.7")]
36-
[assembly: AssemblyFileVersion("1.1.6")]
35+
[assembly: AssemblyVersion("1.1.8")]
36+
[assembly: AssemblyFileVersion("1.1.8")]

Diff for: Ghostscript.NET/Ghostscript.NET.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
<PlatformTarget>AnyCPU</PlatformTarget>
3434
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
3535
<Prefer32Bit>false</Prefer32Bit>
36+
<DocumentationFile>bin\Debug\Ghostscript.NET.XML</DocumentationFile>
3637
</PropertyGroup>
3738
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3839
<DebugType>pdbonly</DebugType>
@@ -44,6 +45,7 @@
4445
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
4546
<PlatformTarget>AnyCPU</PlatformTarget>
4647
<Prefer32Bit>false</Prefer32Bit>
48+
<DocumentationFile>bin\Release\Ghostscript.NET.xml</DocumentationFile>
4749
</PropertyGroup>
4850
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
4951
<DebugSymbols>true</DebugSymbols>
@@ -142,7 +144,6 @@
142144
<Compile Include="_native\wdm.h.cs" />
143145
</ItemGroup>
144146
<ItemGroup>
145-
<None Include="Ghostscript.NET.nupkg" />
146147
<None Include="Ghostscript.NET.snk" />
147148
</ItemGroup>
148149
<ItemGroup />

Diff for: Ghostscript.NET/Ghostscript.NET.nupkg

-41.4 KB
Binary file not shown.

Diff for: Ghostscript.NET/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
[assembly: Guid("5b1fe89e-e040-4b7a-9c05-478c1756b6e8")]
1717

1818

19-
[assembly: AssemblyVersion("1.1.7")]
20-
[assembly: AssemblyFileVersion("1.1.7")]
19+
[assembly: AssemblyVersion("1.1.8")]
20+
[assembly: AssemblyFileVersion("1.1.8")]

Diff for: VERSION-HISTORY

+8
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@
1212

1313
HISTORY of the Ghostscript.NET library
1414

15+
1.1.8. 2014-05-08
16+
-------------------------
17+
- fixed incompatibility problem with 'gsapi_set_arg_encoding' function in Ghostscript
18+
releases prior to 9.10. (this function was introduced in 9.10 release)
19+
- fixed older versions incompatibility problem with '-dMaxBitmap=1g' switch bugfix
20+
which in some cases turns on text antialiasing for Ghostscript 9.14
21+
- added better initialization checking
22+
1523
1.1.7. 2014-04-29
1624
-------------------------
1725
- implemented Ghostscript native library verification with a friendly error message

0 commit comments

Comments
 (0)