Skip to content

Commit 394a1c6

Browse files
committed
[RELEASE] iText 7 pdfOCR 3.0.0
2 parents 34d0ba6 + 9f19a69 commit 394a1c6

File tree

111 files changed

+362
-378
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+362
-378
lines changed

doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8
3232
# title of most generated pages and in a few other places.
3333
# The default value is: My Project.
3434

35-
PROJECT_NAME = "pdfOCR 2.0.2 API"
35+
PROJECT_NAME = "pdfOCR 3.0.0 API"
3636

3737
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
3838
# could be handy for archiving the generated documentation or if some version

itext.tests/itext.pdfocr.api.tests/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
[assembly: AssemblyTitle("iText.Pdfocr.Api.Tests")]
66
[assembly: AssemblyDescription("")]
77
[assembly: AssemblyConfiguration("")]
8-
[assembly: AssemblyCompany("iText Group NV")]
8+
[assembly: AssemblyCompany("Apryse Group NV")]
99
[assembly: AssemblyProduct("iText")]
10-
[assembly: AssemblyCopyright ("Copyright (c) 1998-2022 iText Group NV")]
10+
[assembly: AssemblyCopyright ("Copyright (c) 1998-2023 Apryse Group NV")]
1111
[assembly: AssemblyTrademark("")]
1212
[assembly: AssemblyCulture("")]
1313

1414
[assembly: ComVisible(false)]
1515

1616
[assembly: Guid("d6a6ea97-1f23-448f-b700-eff62971d234")]
1717

18-
[assembly: AssemblyVersion("2.0.2.0")]
19-
[assembly: AssemblyFileVersion("2.0.2.0")]
20-
[assembly: AssemblyInformationalVersion("2.0.2")]
18+
[assembly: AssemblyVersion("3.0.0.0")]
19+
[assembly: AssemblyFileVersion("3.0.0.0")]
20+
[assembly: AssemblyInformationalVersion("3.0.0")]

itext.tests/itext.pdfocr.api.tests/itext.pdfocr.api.tests.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
33
<PropertyGroup>
44
<RootNamespace>itext.pdfocr.api.tests</RootNamespace>
@@ -25,7 +25,9 @@
2525
</ItemGroup>
2626
<ItemGroup>
2727
<ProjectReference Include="..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.csproj')" />
28-
<PackageReference Include="itext7.pdftest" Version="7.2.4" Condition="!Exists('..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.csproj')" />
28+
<PackageReference Include="itext7.pdftest" Version="8.0.0" Condition="!Exists('..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.csproj')" />
29+
<ProjectReference Include="..\..\..\itextcore\itext\itext.bouncy-castle-adapter\itext.bouncy-castle-adapter.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.bouncy-castle-adapter\itext.bouncy-castle-adapter.csproj')" />
30+
<PackageReference Include="itext7.bouncy-castle-adapter" Version="8.0.0" Condition="!Exists('..\..\..\itextcore\itext\itext.bouncy-castle-adapter\itext.bouncy-castle-adapter.csproj')" />
2931
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.0" />
3032
<PackageReference Include="NUnit" Version="3.12.0" />
3133
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1">

itext.tests/itext.pdfocr.api.tests/itext/pdfocr/ApiTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2022 iText Group NV
4-
Authors: iText Software.
3+
Copyright (c) 1998-2023 Apryse Group NV
4+
Authors: Apryse Software.
55
66
This program is offered under a commercial and under the AGPL license.
77
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
@@ -37,7 +37,7 @@ You should have received a copy of the GNU Affero General Public License
3737
using iText.Test.Attributes;
3838

3939
namespace iText.Pdfocr {
40-
[NUnit.Framework.Category("Integration test")]
40+
[NUnit.Framework.Category("IntegrationTest")]
4141
public class ApiTest : ExtendedITextTest {
4242
public static readonly String DESTINATION_FOLDER = NUnit.Framework.TestContext.CurrentContext.TestDirectory
4343
+ "/test/itext/pdfocr";

itext.tests/itext.pdfocr.api.tests/itext/pdfocr/OcrPdfCreatorEventHelperTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2022 iText Group NV
4-
Authors: iText Software.
3+
Copyright (c) 1998-2023 Apryse Group NV
4+
Authors: Apryse Software.
55
66
This program is offered under a commercial and under the AGPL license.
77
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
@@ -33,7 +33,7 @@ You should have received a copy of the GNU Affero General Public License
3333
using iText.Test;
3434

3535
namespace iText.Pdfocr {
36-
[NUnit.Framework.Category("Unit test")]
36+
[NUnit.Framework.Category("UnitTest")]
3737
public class OcrPdfCreatorEventHelperTest : ExtendedITextTest {
3838
private static readonly ProductData DUMMY_PRODUCT_DATA = new ProductData("test-product", "inner_product",
3939
"1.0.0", 1900, 2100);

itext.tests/itext.pdfocr.api.tests/itext/pdfocr/OcrProcessContextTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2022 iText Group NV
4-
Authors: iText Software.
3+
Copyright (c) 1998-2023 Apryse Group NV
4+
Authors: Apryse Software.
55
66
This program is offered under a commercial and under the AGPL license.
77
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
@@ -26,7 +26,7 @@ You should have received a copy of the GNU Affero General Public License
2626
using iText.Test;
2727

2828
namespace iText.Pdfocr {
29-
[NUnit.Framework.Category("Unit test")]
29+
[NUnit.Framework.Category("UnitTest")]
3030
public class OcrProcessContextTest : ExtendedITextTest {
3131
[NUnit.Framework.Test]
3232
public virtual void SetOcrEventHelperTest() {

itext.tests/itext.pdfocr.api.tests/itext/pdfocr/PdfA3uTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2022 iText Group NV
4-
Authors: iText Software.
3+
Copyright (c) 1998-2023 Apryse Group NV
4+
Authors: Apryse Software.
55
66
This program is offered under a commercial and under the AGPL license.
77
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
@@ -36,7 +36,7 @@ You should have received a copy of the GNU Affero General Public License
3636
using iText.Test.Attributes;
3737

3838
namespace iText.Pdfocr {
39-
[NUnit.Framework.Category("Integration test")]
39+
[NUnit.Framework.Category("IntegrationTest")]
4040
public class PdfA3uTest : ExtendedITextTest {
4141
[NUnit.Framework.Test]
4242
public virtual void TestPdfA3uWithNullIntent() {

itext.tests/itext.pdfocr.api.tests/itext/pdfocr/PdfCreatorUtilTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2022 iText Group NV
4-
Authors: iText Software.
3+
Copyright (c) 1998-2023 Apryse Group NV
4+
Authors: Apryse Software.
55
66
This program is offered under a commercial and under the AGPL license.
77
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
@@ -31,7 +31,7 @@ You should have received a copy of the GNU Affero General Public License
3131
using iText.Test.Attributes;
3232

3333
namespace iText.Pdfocr {
34-
[NUnit.Framework.Category("Unit test")]
34+
[NUnit.Framework.Category("UnitTest")]
3535
public class PdfCreatorUtilTest : ExtendedITextTest {
3636
[NUnit.Framework.Test]
3737
public virtual void GetImageDataFromValidSinglePagedTiffTest() {

itext.tests/itext.pdfocr.api.tests/itext/pdfocr/PdfFontTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2022 iText Group NV
4-
Authors: iText Software.
3+
Copyright (c) 1998-2023 Apryse Group NV
4+
Authors: Apryse Software.
55
66
This program is offered under a commercial and under the AGPL license.
77
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
@@ -34,7 +34,7 @@ You should have received a copy of the GNU Affero General Public License
3434
using iText.Test.Attributes;
3535

3636
namespace iText.Pdfocr {
37-
[NUnit.Framework.Category("Integration test")]
37+
[NUnit.Framework.Category("IntegrationTest")]
3838
public class PdfFontTest : ExtendedITextTest {
3939
[NUnit.Framework.Test]
4040
public virtual void TestFontColor() {

itext.tests/itext.pdfocr.api.tests/itext/pdfocr/PdfInputImageTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2022 iText Group NV
4-
Authors: iText Software.
3+
Copyright (c) 1998-2023 Apryse Group NV
4+
Authors: Apryse Software.
55
66
This program is offered under a commercial and under the AGPL license.
77
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
@@ -29,7 +29,7 @@ You should have received a copy of the GNU Affero General Public License
2929
using iText.Test.Attributes;
3030

3131
namespace iText.Pdfocr {
32-
[NUnit.Framework.Category("Integration test")]
32+
[NUnit.Framework.Category("IntegrationTest")]
3333
public class PdfInputImageTest : ExtendedITextTest {
3434
[LogMessage(PdfOcrLogMessageConstant.CANNOT_READ_INPUT_IMAGE)]
3535
[NUnit.Framework.Test]

0 commit comments

Comments
 (0)