diff --git a/README.md b/README.md index e2cea3f..0d9480f 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Additionally: - Apple Vision framework: this will work on macOS Ventura or later. In my experience, the best of the local providers for horizontal text ("a" key) - Apple Live Text (VisionKit framework): this will work on macOS Ventura or later. It should be the same as Vision except that in Sonoma Apple added vertical text reading ("d" key) - WinRT OCR: install with `pip install owocr[winocr]` on Windows 10 and later. It can also be used by installing winocr on a Windows virtual machine and running the server there (`winocr_serve`) and specifying the IP address of the Windows VM/machine in the config file ("w" key) -- OneOCR: install with `pip install owocr[oneocr]` on Windows 10 and later. In my experience it's pretty good, though not as much as the Apple one. You need to copy 3 system files from Windows 11 to use it, refer to the readme (here)[https://github.com/AuroraWright/oneocr] +- OneOCR: install with `pip install owocr[oneocr]` on Windows 10 and later. In my experience it's pretty good, though not as much as the Apple one. You need to copy 3 system files from Windows 11 to use it, refer to the readme (here)[https://github.com/AuroraWright/oneocr] ("z" key) ## Cloud providers - Google Lens: Google Vision in disguise (no need for API keys!), install with `pip install owocr[lens]` ("l" key) diff --git a/owocr_config.ini b/owocr_config.ini index 61d3adc..5b0bc40 100644 --- a/owocr_config.ini +++ b/owocr_config.ini @@ -30,7 +30,7 @@ [winrtocr] ;url = http://aaa.xxx.yyy.zzz:8000 [oneocr] -;url = http://aaa.xxx.yyy.zzz:8000 +;url = http://aaa.xxx.yyy.zzz:8001 [azure] ;api_key = api_key_here ;endpoint = https://YOURPROJECT.cognitiveservices.azure.com/ diff --git a/pyproject.toml b/pyproject.toml index 7868634..498f677 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "owocr" -version = "1.13" +version = "1.13.1" description = "Japanese OCR" readme = "README.md" requires-python = ">=3.11"