Compare commits

...
Author SHA1 Message Date
fritz-hh d55e36267a Release notes updated for v1.1-stable 2014-01-06 19:45:59 +01:00
fritz-hh 6ea29cc892 fixes #42 (bashism removed) 2014-01-06 19:36:07 +01:00
fritz-hh 0245ce4385 typo corrected 2014-01-06 19:34:53 +01:00
3 changed files with 35 additions and 3 deletions
+2 -2
View File
@@ -4,7 +4,7 @@
##############################################################################
TOOLNAME="OCRmyPDF"
VERSION="v1.0-stable"
VERSION="v1.1-stable"
START=`date +%s`
@@ -229,7 +229,7 @@ while read pageSize ; do
# Identify if page image should be saved as ppm (color) or pgm (gray)
ext="ppm"
opt=""
if [ $colorspaceCurImg == "Gray" ]; then
if [ $colorspaceCurImg = "Gray" ]; then
ext="pgm"
opt="-gray"
fi
+1 -1
View File
@@ -3,7 +3,7 @@ OCRmyPDF
OCRmyPDF adds an OCR text layer to scanned PDF files, allowing them to be searched
To get the script usage, call: ./OCmyPDF.sh -h
To get the script usage, call: sh ./OCRmyPDF.sh -h
Features
--------
+32
View File
@@ -5,6 +5,38 @@ Please always read this file before installing the package
Download software here: https://github.com/fritz-hh/OCRmyPDF/tags
v1.1-stable (2014-01-06):
====
New features
------------
- N/A
Changes
-------
- N/A
Fixes
-----
- Fixed syntax error (bashism) leading to an error message on certain systems (fixes #42)
Tested with
-----------
- Operating system: FreeBSD 9.1
- Dependencies:
- poppler-utils 0.22.2
- ImageMagick 6.8.0-7 2013-03-30
- Unpaper 0.3
- tesseract 3.02.02
- Python 2.7.3
- pdftk 1.45
- ghoscript (gs): 9.06
- java: openjdk version "1.7.0_17"
v1.0-stable (2013-05-06):
====