Skip to content

Commit 5cc4131

Browse files
committed
[RELEASE] iText 7 Core - 7.0.8
https://github.com/itext/itext7/releases/tag/7.0.8 * release/7.0.8: [RELEASE] 7.0.8-SNAPSHOT -> 7.0.8 Add missing copyright headers Fix processing the end of an inline image. Port PdfFormField from develop Remove limitation on font-size writing in PdfCanvas Add test for PdfExplicitRemoteGoToDestination Fix inconsistency between containsKey and getAsArray Fix overflow renderer's height property processing. Add some new tests. Fix precision issue occured while image processing. Add a test. Add classes for correct creation of explicit destinations Fetch justifation of formfield from parent Fix case mismatch with .NET in woff2 tests Add RetryOnFailure Consider word's prefix while splitting with hyphenation. Add some new tests. [RELEASE] 7.0.7-SNAPSHOT -> 7.0.8-SNAPSHOT Add missing layout dependency on hyph. Add a new form field test. Do not consider flushed pages while regenerating field's value. Fix offset issue. Consider word bounds while word splitting. Add new hyphenation tests.
2 parents 0070b69 + 3800aca commit 5cc4131

File tree

1,085 files changed

+2852
-1586
lines changed

Some content is hidden

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

1,085 files changed

+2852
-1586
lines changed

barcodes/pom.xml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
54
<parent>
65
<groupId>com.itextpdf</groupId>
76
<artifactId>root</artifactId>
8-
<version>7.0.7</version>
7+
<version>7.0.8</version>
98
</parent>
10-
119
<artifactId>barcodes</artifactId>
12-
1310
<name>iText 7 - barcodes</name>
1411
<url>http://itextpdf.com/</url>
15-
1612
<dependencies>
1713
<dependency>
1814
<groupId>com.itextpdf</groupId>
@@ -26,7 +22,6 @@
2622
<scope>test</scope>
2723
</dependency>
2824
</dependencies>
29-
3025
<build>
3126
<plugins>
3227
<plugin>

barcodes/src/main/java/com/itextpdf/barcodes/Barcode128.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
33
This file is part of the iText (R) project.
4-
Copyright (c) 1998-2017 iText Group NV
4+
Copyright (c) 1998-2018 iText Group NV
55
Authors: Bruno Lowagie, Paulo Soares, et al.
66
77
This program is free software; you can redistribute it and/or modify

barcodes/src/main/java/com/itextpdf/barcodes/Barcode1D.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
33
This file is part of the iText (R) project.
4-
Copyright (c) 1998-2017 iText Group NV
4+
Copyright (c) 1998-2018 iText Group NV
55
Authors: Bruno Lowagie, Paulo Soares, et al.
66
77
This program is free software; you can redistribute it and/or modify

barcodes/src/main/java/com/itextpdf/barcodes/Barcode2D.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
33
This file is part of the iText (R) project.
4-
Copyright (c) 1998-2017 iText Group NV
4+
Copyright (c) 1998-2018 iText Group NV
55
Authors: Bruno Lowagie, Paulo Soares, et al.
66
77
This program is free software; you can redistribute it and/or modify

barcodes/src/main/java/com/itextpdf/barcodes/Barcode39.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
33
This file is part of the iText (R) project.
4-
Copyright (c) 1998-2017 iText Group NV
4+
Copyright (c) 1998-2018 iText Group NV
55
Authors: Bruno Lowagie, Paulo Soares, et al.
66
77
This program is free software; you can redistribute it and/or modify

barcodes/src/main/java/com/itextpdf/barcodes/BarcodeCodabar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
33
This file is part of the iText (R) project.
4-
Copyright (c) 1998-2017 iText Group NV
4+
Copyright (c) 1998-2018 iText Group NV
55
Authors: Bruno Lowagie, Paulo Soares, et al.
66
77
This program is free software; you can redistribute it and/or modify

barcodes/src/main/java/com/itextpdf/barcodes/BarcodeDataMatrix.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
33
This file is part of the iText (R) project.
4-
Copyright (c) 1998-2017 iText Group NV
4+
Copyright (c) 1998-2018 iText Group NV
55
Authors: Bruno Lowagie, Paulo Soares, et al.
66
77
This program is free software; you can redistribute it and/or modify

barcodes/src/main/java/com/itextpdf/barcodes/BarcodeEAN.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
33
This file is part of the iText (R) project.
4-
Copyright (c) 1998-2017 iText Group NV
4+
Copyright (c) 1998-2018 iText Group NV
55
Authors: Bruno Lowagie, Paulo Soares, et al.
66
77
This program is free software; you can redistribute it and/or modify

barcodes/src/main/java/com/itextpdf/barcodes/BarcodeEANSUPP.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
33
This file is part of the iText (R) project.
4-
Copyright (c) 1998-2017 iText Group NV
4+
Copyright (c) 1998-2018 iText Group NV
55
Authors: Bruno Lowagie, Paulo Soares, et al.
66
77
This program is free software; you can redistribute it and/or modify

barcodes/src/main/java/com/itextpdf/barcodes/BarcodeInter25.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
33
This file is part of the iText (R) project.
4-
Copyright (c) 1998-2017 iText Group NV
4+
Copyright (c) 1998-2018 iText Group NV
55
Authors: Bruno Lowagie, Paulo Soares, et al.
66
77
This program is free software; you can redistribute it and/or modify

0 commit comments

Comments
 (0)