mirror of
https://github.com/kaffarell/obsidian-tesseract-ocr.git
synced 2026-07-22 07:40:26 +00:00
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:
parent
066534c3b0
commit
548c545f77
5 changed files with 5 additions and 2218 deletions
|
|
@ -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
2214
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -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": {
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ interface PluginSettings {
|
|||
|
||||
const DEFAULT_SETTINGS: PluginSettings = {
|
||||
imagePath: 'Meta/Attachments',
|
||||
tesseractLanguage: 'eng+deu',
|
||||
tesseractLanguage: 'eng',
|
||||
tesseractPath: '',
|
||||
debug: false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue