fix: changed tesseract default language, bump to 0.3.7

The default language field was eng+deu, but tesseract installs only eng
per default.
This commit is contained in:
kaffarell 2023-07-17 11:20:26 +02:00
parent 066534c3b0
commit 548c545f77
5 changed files with 5 additions and 2218 deletions

View file

@ -1,7 +1,7 @@
{
"id": "image-ocr",
"name": "Image OCR",
"version": "0.3.6",
"version": "0.3.7",
"minAppVersion": "0.15.0",
"description": "Runs OCR on images and copies content in image caption.",
"author": "kaffarell",

2214
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{
"name": "image-ocr",
"version": "0.3.6",
"version": "0.3.7",
"description": "Runs ocr on pasted images and posts result in details box. This allows to search in images.",
"main": "dist/main.js",
"scripts": {

View file

@ -13,7 +13,7 @@ interface PluginSettings {
const DEFAULT_SETTINGS: PluginSettings = {
imagePath: 'Meta/Attachments',
tesseractLanguage: 'eng+deu',
tesseractLanguage: 'eng',
tesseractPath: '',
debug: false
}

View file

@ -7,5 +7,6 @@
"0.3.3": "0.15.0",
"0.3.4": "0.15.0",
"0.3.5": "0.15.0",
"0.3.6": "0.15.0"
"0.3.6": "0.15.0",
"0.3.7": "0.15.0"
}