From 1c34fd69cf9bd40578ec33fc303c23cf9db9a714 Mon Sep 17 00:00:00 2001 From: fritz-hh Date: Sat, 25 Jan 2014 22:14:05 +0100 Subject: [PATCH] RELEASE_NOTES update prior delivery of v2.0-stable --- README.md | 2 +- RELEASE_NOTES.md | 34 +++++++++++++++++++++++++++++++++- src/config.sh | 2 +- 3 files changed, 35 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ecfc7a8..c56a1b1 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Main features - Generates a searchable PDF/A file from a PDF file containing only images - Places OCRed text accurately below the image to ease copy / paste - Keeps the exact resolution of the original embedded images - - or if requested oversample the images before OCRing so as to get better results + - or if requested oversamples the images before OCRing so as to get better results - If requested deskews and / or clean the image before performing OCR - Validates the generated file against the PDF/A specification using jhove - Provides debug mode to enable easy verification of the OCR results diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 00f7f37..798952c 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -5,12 +5,44 @@ Please always read this file before installing the package Download software here: https://github.com/fritz-hh/OCRmyPDF/tags -v2.0-rc2 (2014-01-16): +v2.0-stable (2014-01-25): ======= New features ------------ +- Check if the language(s) passed using the -l option is supported by tesseract (fixes #60) + +Changes +------- + +- Allow OCRmyPDF to be used with tesseract 3.02.01, even though OCR might fail for few PDF file (see issue #28). Rationale: For some linux distribution, no newer version than tesseract 3.02.01 is available + +Fixes +----- + +- More robust algorithm for checking the version of the installed tesseract package + +Tested with +----------- + +- Operating system: FreeBSD 9.1 +- Dependencies: + - parallel 20130222 + - poppler-utils 0.22.2 + - ImageMagick 6.8.0-7 2013-03-30 + - Unpaper 0.3 + - tesseract 3.02.02 + - Python 2.7.3 + - ghoscript (gs): 9.06 + - java: openjdk version "1.7.0_17" + +v2.0-rc2 (2014-01-16): +======= + +New features +------------ + - None Changes diff --git a/src/config.sh b/src/config.sh index 0b8d93b..3cda2c2 100644 --- a/src/config.sh +++ b/src/config.sh @@ -9,7 +9,7 @@ DEFAULT_DPI=300 # dpi value used as fall back if the page dpi cannot be deter ##################################################################################### TOOLNAME="OCRmyPDF" -VERSION="v2.0-rc2" +VERSION="v2.0-stable" # possible exit codes EXIT_BAD_ARGS="1"