Skip to content

Commit

Permalink
Release 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seanox committed Aug 11, 2022
1 parent 8994c9b commit 088deb1
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
4.2.0 2022xxxx
4.2.0 20220811
BF: Review: Optimizations
BF: Generator: Correction when parsing structures
Structures deeper 65535 levels no longer cause an exception.
Expand Down
17 changes: 10 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,28 +76,31 @@ Java 11 or higher


# Downloads
https://mvnrepository.com/artifact/com.seanox/seanox-pdf-service/4.1.2
https://mvnrepository.com/artifact/com.seanox/seanox-pdf-service/4.2.0
https://mvnrepository.com/artifact/com.seanox/seanox-pdf-service
```xml
<dependency>
<groupId>com.seanox</groupId>
<artifactId>seanox-pdf-service</artifactId>
<version>4.1.2</version>
<version>4.2.0</version>
</dependency>
```

[Seanox PDF-Tools 4.1.2](https://github.com/seanox/pdf-service/releases/download/4.1.2/seanox-pdf-tools-4.1.2.jar)
[Seanox PDF-Tools 4.2.0](https://github.com/seanox/pdf-service/releases/download/4.2.0/seanox-pdf-tools-4.2.0.jar)


# Manuals
- [Introduction](https://github.com/seanox/pdf-service/blob/master/manual/Introduction.md)


# Changes (Change Log)
## 4.1.2 20220713 (summary of the current version)
BF: Build: Optimization of the release info process
BF: Maven: Update of dependencies
BF: Template: Correction for handling unexpected data type in data map
## 4.2.0 20220811 (summary of the current version)
BF: Review: Optimizations
BF: Generator: Correction when parsing structures
CR: Change from wording segment, which is now called structure
CR: Generator: Added placeholder syntax for disposable structures
CR: Generator: Added structures for single values
CR: Generator: Placeholder identifier conventions optimized

[Read more](https://raw.githubusercontent.com/seanox/pdf-service/master/CHANGES)

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>com.seanox</groupId>
<artifactId>seanox-pdf-service</artifactId>
<version>4.1.2</version>
<version>4.2.0</version>
<packaging>jar</packaging>
<name>pdf-service</name>
<description>PDF service for generating/rendering PDFs based on Open HTML to PDF</description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/seanox/pdf/Compare.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class Compare {
public static void main(final String... options)
throws Exception {

System.out.println("Seanox PDF Comparator [Version 4.1.2 20220713]");
System.out.println("Seanox PDF Comparator [Version 4.2.0 20220811]");
System.out.println("Copyright (C) 2022 Seanox Software Solutions");
System.out.println();

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/seanox/pdf/Designer.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class Designer {
public static void main(final String... options)
throws Exception {

System.out.println("Seanox PDF Design Deamon [Version 4.1.2 20220713]");
System.out.println("Seanox PDF Design Deamon [Version 4.2.0 20220811]");
System.out.println("Copyright (C) 2022 Seanox Software Solutions");
System.out.println();

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/seanox/pdf/Preview.java
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public String toString() {
public static void main(final String... options)
throws Exception {

System.out.println("Seanox PDF Preview [Version 4.1.2 20220713]");
System.out.println("Seanox PDF Preview [Version 4.2.0 20220811]");
System.out.println("Copyright (C) 2022 Seanox Software Solutions");
System.out.println();

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/seanox/pdf/Usage.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ private static String catchToolInfos(final Class<?> tool) {
*/
public static void main(final String... options) {

System.out.println("Seanox PDF Tools Usage [Version 4.1.2 20220713]");
System.out.println("Seanox PDF Tools Usage [Version 4.2.0 20220811]");
System.out.println("Copyright (C) 2022 Seanox Software Solutions");
System.out.println();
System.out.println("This java archive contains several command line tools.");
Expand Down

0 comments on commit 088deb1

Please sign in to comment.