Skip to content

Commit 3aef486

Browse files
committed
[RELEASE] iText 7 Core - 7.1.10
https://github.com/itext/itext7-dotnet/releases/tag/7.1.10 * release/7.1.10: [RELEASE] 7.1.10-SNAPSHOT -> 7.1.10 Fix link to RUPS: it should point to RUPS 7 instead of RUPS 5 Update port-hash Remove obsolete todo from PdfFormFieldTest Update .nuspec to list git repo information Unignore DirectoryTableOrder002Test, FontFaceTest methods Improve compression tests Update Core nuspec description Add setting a modidied flag for indirect arrays Add test for the bug in processing preserveAspectRatio for markers Add check that PdfAPage can be flushed Update port-hash Add missing copyright headers Refactor SvgLogMessageConstant Add markers support Fix woff2 converting method Add missing copyright headers Add tests demonstrating problems with annotation relationship incorrectly transferred during copying Update years in copyrights Add documentation to PdfReader#setMemorySavingMode() Use a version placeholder in doxyfile Update port-hash Avoid using Assert.assertSame for enums and primitive types Marked cleanup constants as deprecated Use double type for better precision in local calculations in SVG and SXP Update port-hash Add PdfCanvasInlineImagesTest and InlineImageExtractionTest Support reading only one page Fix javadocs of CompareTool Add -Test postfix to a test Change in Jenkinsfile to upload the artifacts for branches different from develop and master to branch artifacts repo Change PdfFormField regeneration methods Add missing copyright headers Add setting of the 'modified' flag when modifying acroform Add missing copyright headers Add FloatImageTest and FloatBlockTest classes(from samples-internal repo) Update port-hash. Update Bouncy Castle version Add test on the viewBox x, y values Add test on preserveAspectRatio for element with x,y offset Do not trim leading spaces in single line and multiline text fields Update test search wildcard expression so that all the files are picked up Add test category Deprecate IdelOutputStream. Create InitClass method. Add checks that Pdf Document has been completely read to the PdfReader. Add missing copyright headers Add tests on "overflow" attribute in svg Change HashMap to LinkedHashMap. Add test. Make the LogListener save the previous Log adapter state Update port-hash Add addPngImageIndexedColorspaceTest Move tests from samples-internal repo Filter JAVA_TOOL_OPTIONS warning in stderr output of veraPDF validator Reformat VeraPdfValidator class Explicitly specify veraPDF process output encoding Update veraPDF dependency to version 1.14.8 Fix up veraPDF report path generation Avoid reading page dictionaries in ParentTreeHandler.registerMcr() Make PdfDocument#tryInitTagStructure protected Add tests on FormXobject in tagged pdf Restructure mcr storage in ParentTreeHandler Improve pdf encryption documentation. Fix HasUnsupportedCriticalExtension() method in the SignUtils class. Add test Update port-hash after release [RELEASE] Update dependency versions Add missing copyright headers Add tests replaced from samples-internal repo Set default stroke width to 1 px Remove old ticket references Add missing copyright headers Move Xfdf message constants to XfdfException class Minor fixes in javadocs Resolve layout javadoc warnings
2 parents 38a9a13 + fce6b4b commit 3aef486

File tree

2,340 files changed

+12118
-4506
lines changed

Some content is hidden

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

2,340 files changed

+12118
-4506
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,4 @@ port-hash text eol=lf
5959
*.wmf binary
6060
*.woff binary
6161
*.woff2 binary
62+
*.dat binary

Jenkinsfile

+24
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,30 @@ pipeline {
8888
}
8989
}
9090
}
91+
stage('Branch Artifactory Deploy') {
92+
options {
93+
timeout(time: 5, unit: 'MINUTES')
94+
}
95+
when {
96+
not {
97+
anyOf {
98+
branch "master"
99+
branch "develop"
100+
}
101+
}
102+
}
103+
steps {
104+
script {
105+
if (env.GIT_URL) {
106+
getAndConfigureJFrogCLI()
107+
repoName = ("${env.GIT_URL}" =~ /(.*\/)(.*)(\.git)/)[ 0 ][ 2 ]
108+
findFiles(glob: '*.nupkg').each { item ->
109+
sh "./jfrog rt u \"${item.path}\" branch-artifacts/${env.BRANCH_NAME}/${repoName}/dotnet/ --recursive=false --build-name ${env.BRANCH_NAME} --build-number ${env.BUILD_NUMBER} --props \"vcs.revision=${env.GIT_COMMIT};repo.name=${repoName}\""
110+
}
111+
}
112+
}
113+
}
114+
}
91115
stage('Archive Artifacts') {
92116
options {
93117
timeout(time: 5, unit: 'MINUTES')

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ Contact [sales] for more info.
5757
[nuget]: https://www.nuget.org/packages/itext7
5858
[sales]: https://itextpdf.com/sales
5959
[gratis]: https://en.wikipedia.org/wiki/Gratis_versus_libre
60-
[rups]: https://github.com/itext/rups
60+
[rups]: https://github.com/itext/i7j-rups
6161
[pdfhtml]: https://github.com/itext/i7n-pdfhtml
6262
[pdfsweep]: https://github.com/itext/i7n-pdfsweep

doxyfile

+1-1
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 = "iText 7 7.1.8 API"
35+
PROJECT_NAME = "iText 7 7.1.10 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.barcodes.tests/Properties/AssemblyInfo.cs

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22
using System.Runtime.InteropServices;
33

44
[assembly: AssemblyTitle("iText.Barcodes.Tests")]
5-
[assembly: AssemblyDescription ("")]
6-
[assembly: AssemblyConfiguration ("")]
7-
[assembly: AssemblyCompany ("iText Group NV")]
8-
[assembly: AssemblyProduct ("iText")]
9-
[assembly: AssemblyCopyright ("Copyright (c) 1998-2019 iText Group NV")]
5+
[assembly: AssemblyDescription("")]
6+
[assembly: AssemblyConfiguration("")]
7+
[assembly: AssemblyCompany("iText Group NV")]
8+
[assembly: AssemblyProduct("iText")]
9+
[assembly: AssemblyCopyright("Copyright (c) 1998-2020 iText Group NV")]
1010
[assembly: AssemblyTrademark("")]
1111
[assembly: AssemblyCulture("")]
1212

1313
[assembly: ComVisible(false)]
1414

1515
[assembly: Guid("d015a3aa-613c-45d9-b908-7d47c4b613af")]
1616

17-
[assembly: AssemblyVersion("7.1.9.0")]
18-
[assembly: AssemblyFileVersion("7.1.9.0")]
19-
[assembly: AssemblyInformationalVersion("7.1.9")]
17+
[assembly: AssemblyVersion("7.1.10.0")]
18+
[assembly: AssemblyFileVersion("7.1.10.0")]
19+
[assembly: AssemblyInformationalVersion("7.1.10")]
2020

2121
#if !NETSTANDARD1_6
2222
[assembly: NUnit.Framework.Timeout(300000)]

itext.tests/itext.barcodes.tests/itext/barcodes/Barcode128Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/Barcode39Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodeCodabarTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodeDataMatrixTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodeEANTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodeInter25Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodeMSITest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodeMultiThreadingTest.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/*
1+
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify
@@ -69,4 +69,4 @@ private static void DoWork() {
6969
Assert.AreEqual(BarcodeDataMatrix.DM_NO_ERROR, result);
7070
}
7171
}
72-
}
72+
}

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodePDF417Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodePostnetTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodeQRCodeTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.forms.tests/Properties/AssemblyInfo.cs

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22
using System.Runtime.InteropServices;
33

44
[assembly: AssemblyTitle("iText.Forms.Tests")]
5-
[assembly: AssemblyDescription ("")]
6-
[assembly: AssemblyConfiguration ("")]
7-
[assembly: AssemblyCompany ("iText Group NV")]
8-
[assembly: AssemblyProduct ("iText")]
9-
[assembly: AssemblyCopyright ("Copyright (c) 1998-2019 iText Group NV")]
5+
[assembly: AssemblyDescription("")]
6+
[assembly: AssemblyConfiguration("")]
7+
[assembly: AssemblyCompany("iText Group NV")]
8+
[assembly: AssemblyProduct("iText")]
9+
[assembly: AssemblyCopyright("Copyright (c) 1998-2020 iText Group NV")]
1010
[assembly: AssemblyTrademark("")]
1111
[assembly: AssemblyCulture("")]
1212

1313
[assembly: ComVisible(false)]
1414

1515
[assembly: Guid("6fe2f714-6b3e-4b20-8c70-28bfce084ed2")]
1616

17-
[assembly: AssemblyVersion("7.1.9.0")]
18-
[assembly: AssemblyFileVersion("7.1.9.0")]
19-
[assembly: AssemblyInformationalVersion("7.1.9")]
17+
[assembly: AssemblyVersion("7.1.10.0")]
18+
[assembly: AssemblyFileVersion("7.1.10.0")]
19+
[assembly: AssemblyInformationalVersion("7.1.10")]
2020

2121
#if !NETSTANDARD1_6
2222
[assembly: NUnit.Framework.Timeout(300000)]

itext.tests/itext.forms.tests/itext/forms/FlatteningRotatedTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.forms.tests/itext/forms/FlatteningTest.cs

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify
@@ -60,11 +60,10 @@ public static void BeforeClass() {
6060
}
6161

6262
[NUnit.Framework.Test]
63-
public virtual void FormFlatteningTestWithAPWithoutSubtype() {
64-
String filename = "job_application_filled";
65-
String src = sourceFolder + filename + ".pdf";
66-
String dest = destinationFolder + filename + "_flattened.pdf";
67-
String cmp = sourceFolder + "cmp_" + filename + "_flattened.pdf";
63+
public virtual void FlatteningFormFieldNoSubtypeInAPTest() {
64+
String src = sourceFolder + "formFieldNoSubtypeInAPTest.pdf";
65+
String dest = destinationFolder + "flatteningFormFieldNoSubtypeInAPTest.pdf";
66+
String cmp = sourceFolder + "cmp_flatteningFormFieldNoSubtypeInAPTest.pdf";
6867
PdfDocument doc = new PdfDocument(new PdfReader(src), new PdfWriter(dest));
6968
PdfAcroForm.GetAcroForm(doc, false).FlattenFields();
7069
doc.Close();

itext.tests/itext.forms.tests/itext/forms/FlatteningWithNullKidElementTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.forms.tests/itext/forms/FormFieldAppendTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.forms.tests/itext/forms/FormFieldFlatteningTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.forms.tests/itext/forms/FormFieldsTaggingTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2019 iText Group NV
3+
Copyright (c) 1998-2020 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

0 commit comments

Comments
 (0)