From b36053d52d0e5915553074e66d5c51a8a7783c55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Sun, 1 Dec 2024 16:53:37 +0100 Subject: [PATCH] Release version 4.8.0 --- README.md | 14 +++++++------- build.gradle | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e1d22e19..b25f3032 100644 --- a/README.md +++ b/README.md @@ -11,14 +11,14 @@ which is based on [Tesseract Tools for Android][tesseract-android-tools]. This project uses additional libraries (with their own specific licenses): - - [Tesseract OCR][tesseract-ocr] 5.3.4 - - [Leptonica][leptonica] 1.83.1 - - [libjpeg][jpeg] v9e - - [libpng][png] 1.6.40 + - [Tesseract OCR][tesseract-ocr] 5.5.0 + - [Leptonica][leptonica] 1.85.0 + - [libjpeg][jpeg] v9f + - [libpng][png] 1.6.44 ## Prerequisites - - Android 4.1 (API 16) or higher + - Android 5.0 (API 21) or higher - A v4.0.0 [trained data file(s)][tessdata] for language(s) you want to use. - These files must be placed in the (sub)directory named `tessdata` and the path must be readable by the app. When targeting API >=29, only suitable places for this are app's private directories @@ -53,10 +53,10 @@ allprojects { ```gradle dependencies { // To use Standard variant: - implementation 'cz.adaptech.tesseract4android:tesseract4android:4.7.0' + implementation 'cz.adaptech.tesseract4android:tesseract4android:4.8.0' // To use OpenMP variant: - implementation 'cz.adaptech.tesseract4android:tesseract4android-openmp:4.7.0' + implementation 'cz.adaptech.tesseract4android:tesseract4android-openmp:4.8.0' } ``` diff --git a/build.gradle b/build.gradle index 2e3d01ed..8bfa6f1b 100644 --- a/build.gradle +++ b/build.gradle @@ -24,5 +24,5 @@ allprojects { } ext { - tesseract4AndroidVersion = '4.7.0' + tesseract4AndroidVersion = '4.8.0' }