Skip to content

Commit 9c1bf90

Browse files
committed
version 3.1
1 parent fc3cf59 commit 9c1bf90

File tree

4 files changed

+22
-11
lines changed

4 files changed

+22
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ This App is based on <a href="https://github.com/tesseract-ocr/tesseract/blob/ma
1313
* Extract Text From Images.
1414
* Copy data to Clipboard.
1515
* Select any part of Text.
16-
* Process multiple languages in single image(Required changes in settings).
17-
* Process images directly from the gallery on your device via the share menu.
16+
* Process multiple languages in single image(Required changes in settings).
17+
* Process images directly from the gallery on your device via the share menu.
1818
* Based on latest [Training Data](https://github.com/tesseract-ocr/tessdoc/blob/master/Data-Files.md).
1919
* Recognize 120+ [languages](https://tesseract-ocr.github.io/tessdoc/Data-Files)
2020
* 3 Type of data i.e 'Best', 'fast', 'standard' for more info [see](https://github.com/tesseract-ocr/tessdoc/blob/master/Data-Files.md)

app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ android {
88
applicationId "io.github.subhamtyagi.ocr"
99
minSdkVersion 18
1010
targetSdkVersion 31
11-
versionCode 9
11+
versionCode 10
1212
versionName "3.1"
1313
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1414
resValue "string", "github_url", gitUrl
@@ -38,7 +38,7 @@ android {
3838
} else {
3939
archivesBaseName = 'OCR_' + normalizedWorkingBranch
4040
applicationIdSuffix ".dev." + normalizedWorkingBranch
41-
resValue "string", "app_name", "OCR" + workingBranch
41+
resValue "string", "app_name", "OCR " + workingBranch
4242
}
4343

4444
minifyEnabled false
@@ -75,13 +75,13 @@ dependencies {
7575
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
7676
implementation project(':cropper')
7777

78-
implementation 'androidx.appcompat:appcompat:1.4.0'
79-
implementation 'androidx.preference:preference:1.1.1'
78+
implementation 'androidx.appcompat:appcompat:1.4.1'
79+
implementation 'androidx.preference:preference:1.2.0'
8080
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
8181

82-
implementation 'cz.adaptech:tesseract4android:4.0.0'
82+
implementation 'cz.adaptech:tesseract4android:4.1.0'
8383

84-
implementation 'com.google.android.material:material:1.6.0-alpha01'
84+
implementation 'com.google.android.material:material:1.6.0-alpha02'
8585

8686
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
8787

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
*Whats New in this Update*
2+
3+
* Select language option when app is opened by Share Menu.
4+
* Selected language now will be also displayed on main screen.
5+
* Now Fast data type is set as default.
6+
* Smooth app transition in crop functionality.
7+
*
8+
* Bug Fix on Android 10+.
9+
* Crash Fix on Non-english locale devices (Chris <chris@d*****t>).
10+
*
11+
* Code Improvement and optimisation.
12+
* Updated tesseract4android.

fastlane/metadata/android/en-US/full_description.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# OCR
22

3-
An Android OCR app that can recognize texts on images.
3+
An Android OCR app based on Tesseract that can recognize texts on images.
44

55
This app is now based(Since v3.0) on <a href="https://github.com/tesseract-ocr/tesseract/blob/master/README.md">Tesseract 5 </a> and the first of android app which is based on Tesseract 5.
66

@@ -17,7 +17,7 @@ Translate this app on [Hosted Weblate](https://hosted.weblate.org/projects/andro
1717
* Based on latest <a href="https://github.com/tesseract-ocr/tessdoc/blob/master/Data-Files.md">Training Data</a>.
1818
* 120+ recognized <a href="https://tesseract-ocr.github.io/tessdoc/Data-Files">languages</a>.
1919
* 3 Type of data i.e <a href="https://github.com/tesseract-ocr/tessdata">Standard</a>, <a href="https://github.com/tesseract-ocr/tessdata_best">best</a>, <a href="https://github.com/tesseract-ocr/tessdata_fast">fast</a> for more info <a href="https://github.com/tesseract-ocr/tessdoc/blob/master/Data-Files.md">click here</a>.
20-
* Math recognition/equation detection.
20+
* Math recognition/equation detection(Not Tested yet).
2121
* Process images directly from the gallery on your device via the share menu.
2222

2323

@@ -31,7 +31,6 @@ Translate this app on [Hosted Weblate](https://hosted.weblate.org/projects/andro
3131

3232
* Tesseract and Tesseract Data: <a href="https://github.com/tesseract-ocr/tesseract/blob/master/LICENSE">Apache 2.0</a>.
3333
* Tesseract4Android: <a href="https://github.com/adaptech-cz/Tesseract4Android/blob/master/LICENSE">Apache 2.0</a>.
34-
* BoxImageView: <a href="https://github.com/SubhamTyagi/android-cr/blob/master/app/src/main/java/io/github/subhamtyagi/ocr/views/BoxImageView.java">AGPLv3</a>.
3534
* ImageCropper: <a href="https://github.com/ArthurHub/Android-Image-Cropper/blob/master/LICENSE.txt">Apache 2.0</a>.
3635
* SpinnerDialog: <a href="https://github.com/MdFarhanRaja/SearchableSpinner/blob/master/LICENSE">[Apache 2.0</a>
3736

0 commit comments

Comments
 (0)