Skip to content

Commit 71f91dd

Browse files
committed
upgrade dependency due to potential vulnerabilities
1 parent 8ddb026 commit 71f91dd

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# pdf-unstamper
22
![](https://img.shields.io/badge/Powered%20by-Apache%20PDFBox-blue.svg?style=flat-square)
33

4-
Remove text stamps of **any font**, **any encoding** and **any language** with pdf-unstamper now!
4+
Remove textual watermark of **any font**, **any encoding** and **any language** with pdf-unstamper now!
55

66
## Effect
77
<table>

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>com.amastigote</groupId>
88
<artifactId>unstamper</artifactId>
9-
<version>0.1.4</version>
10-
<description>Text stamp remover for PDF files.</description>
9+
<version>0.1.5</version>
10+
<description>Textual watermark remover for PDF files.</description>
1111
<name>pdf-unstamper</name>
1212
<url>https://github.com/hwding/pdf-unstamper</url>
1313
<build>
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>org.apache.pdfbox</groupId>
2929
<artifactId>pdfbox</artifactId>
30-
<version>2.0.8</version>
30+
<version>2.0.12</version>
3131
</dependency>
3232
<!-- https://mvnrepository.com/artifact/commons-cli/commons-cli -->
3333
<dependency>

script/install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ user_bin=`echo ~`"/bin/"
88
locl_bin="/usr/local/bin/"
99
jar_name="pdf-unstamper.jar"
1010
exe_name="unstamp"
11-
_version="0.1.4"
11+
_version="0.1.5"
1212
jar_durl="https://github.com/hwding/pdf-unstamper/releases/download/$_version/$jar_name"
1313
wrapper="#!/bin/bash\njava -jar ${user_bin}${jar_name} \"\$@\"\n"
1414

src/com/amastigote/unstamper/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
AUTH | hwding
33
DATE | Sep 10 2017
4-
DESC | text stamp remover for PDF files
4+
DESC | textual watermark remover for PDF files
55
66
GITH | github.com/hwding
77
*/

src/com/amastigote/unstamper/core/Processor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
AUTH | hwding
33
DATE | Jan 06 2018
4-
DESC | text stamp remover for PDF files
4+
DESC | textual watermark remover for PDF files
55
66
GITH | github.com/hwding
77
*/

src/com/amastigote/unstamper/core/TextStampRecognizer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
AUTH | hwding
33
DATE | Sep 10 2017
4-
DESC | text stamp remover for PDF files
4+
DESC | textual watermark remover for PDF files
55
66
GITH | github.com/hwding
77
*/

src/com/amastigote/unstamper/io/IOHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
AUTH | hwding
33
DATE | Sep 05 2017
4-
DESC | text stamp remover for PDF files
4+
DESC | textual watermark remover for PDF files
55
66
GITH | github.com/hwding
77
*/

src/com/amastigote/unstamper/log/GeneralLogger.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
AUTH | hwding
3-
DATE | Jan 06 2018
4-
DESC | text stamp remover for PDF files
3+
DATE | Oct 23 2018
4+
DESC | textual watermark remover for PDF files
55
66
GITH | github.com/hwding
77
*/
@@ -12,15 +12,15 @@
1212
public class GeneralLogger {
1313
public static class Help {
1414
private static final String usage =
15-
"\nPDF-UnStamper ver. 0.1.4 by hwding@GitHub\n" +
15+
"\nPDF-UnStamper ver. 0.1.5 by hwding@GitHub\n" +
1616
"\nUsage:" +
1717
"\n [OPTION] -i [INPUT PDF] -k [KEYWORDS...] (-o [OUTPUT PDF])" +
1818
"\n [OPTION] -I [INPUT DIR] -k [KEYWORDS...] (-O [OUTPUT DIR])\n" +
1919
"\nOptions:" +
2020
"\n -d, --directly directly modify the input file(s), option o/O is\n" +
2121
" unnecessary when this option is on" +
2222
"\n -r, --recursive process files in the given dir recursively" +
23-
"\n -s, --strict use strict mode, a text area is considered as water mark\n" +
23+
"\n -s, --strict use strict mode, a text area is considered as watermark\n" +
2424
" only if its content strictly equals one of the keywords\n";
2525

2626
public static void print() {

src/com/amastigote/unstamper/util/OptionManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
AUTH | hwding
33
DATE | Sep 10 2017
4-
DESC | text stamp remover for PDF files
4+
DESC | textual watermark remover for PDF files
55
66
GITH | github.com/hwding
77
*/

src/com/amastigote/unstamper/util/TaskRunner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
AUTH | hwding
33
DATE | Sep 10 2017
4-
DESC | text stamp remover for PDF files
4+
DESC | textual watermark remover for PDF files
55
66
GITH | github.com/hwding
77
*/

0 commit comments

Comments
 (0)