Skip to content

Commit 5ad5325

Browse files
committed
Create new release 5.2.0
Signed-off-by: Stefan Weil <[email protected]>
1 parent b8b6c15 commit 5ad5325

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

ChangeLog

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
2022-07-06 - V5.2.0
2+
* Improvements and fixes for continuous integration,
3+
autoconf and cmake builds.
4+
* Set /Os for some 32 bit MS compilers (fixes #3769).
5+
* Improve comments and other documentation.
6+
* Add initial support for Intel AVX512F.
7+
* Fix for very large PDF files on 32 bit hosts (fixes #3805).
8+
* Fix NEON detection on FreeBSD.
9+
* Fix regression with UZN files (fixes #3837).
10+
* Fix calling delete[] for memory allocated by malloc in C API.
11+
* Add an API function to init tesseract with traineddata from memory
12+
(fixes #3691).
13+
* Replace direct access to Leptonica internal data structures by
14+
function calls and support latest releases of Leptonica.
15+
* Replace std::regex by std::string functions (fixes issue #3830).
16+
* Use compiled-in TESSDATA_PREFIX also on Windows (fixes #3767).
17+
* Add new parameter 'invert_threshold', change the default threshold
18+
from 0.5 to 0.7 and mark parameter 'tessedit_do_invert' as deprecated.
19+
120
2022-03-01 - V5.1.0
221
* Handle image and line regions in output formats ALTO, hOCR and text.
322
* New parameter curl_timeout for curl_easy_setop.
@@ -200,7 +219,7 @@
200219
* Removed old/dead serialise/deserialze methods on *LISTIZED classes.
201220
* Total rewrite of DENORM to better encapsulate operation and make
202221
for potential to extract features from images.
203-
* Thread-safety! Moved all critical globals and statics to members of the appropriate class. Tesseract is now thread-safe (multiple instances can be used in parallel in multiple threads.) with the minor exception that some control parameters are still global and affect all threads.
222+
* Thread-safety! Moved all critical global and static variables to members of the appropriate class. Tesseract is now thread-safe (multiple instances can be used in parallel in multiple threads.) with the minor exception that some control parameters are still global and affect all threads.
204223
* Added Cube, a new recognizer for Arabic. Cube can also be used in combination with normal Tesseract for other languages with an improvement in accuracy at the cost of (much) lower speed. *There is no training module for Cube yet.*
205224
* `OcrEngineMode` in `Init` replaces `AccuracyVSpeed` to control cube.
206225
* Greatly improved segmentation search with consequent accuracy and speed improvements, especially for Chinese.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.1.0
1+
5.2.0

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ AM_INIT_AUTOMAKE([foreign subdir-objects nostdinc])
2929
# Define date of package, etc. Could be useful in auto-generated
3030
# documentation.
3131
PACKAGE_YEAR=2022
32-
PACKAGE_DATE="03/01"
32+
PACKAGE_DATE="07/06"
3333

3434
abs_top_srcdir=`AS_DIRNAME([$0])`
3535

0 commit comments

Comments
 (0)