Skip to content

Commit

Permalink
Update package info
Browse files Browse the repository at this point in the history
  • Loading branch information
Kees van Spelde committed Oct 22, 2024
1 parent ab35c74 commit 70fb8ae
Show file tree
Hide file tree
Showing 14 changed files with 8 additions and 8 deletions.
Binary file modified TesseractOCR.Net45Tests/x64/leptonica-1.85.0.dll
Binary file not shown.
Binary file modified TesseractOCR.Net45Tests/x64/tesseract54.dll
Binary file not shown.
Binary file modified TesseractOCR.Net45Tests/x86/leptonica-1.85.0.dll
Binary file not shown.
Binary file modified TesseractOCR.Net45Tests/x86/tesseract54.dll
Binary file not shown.
Binary file modified TesseractOCR.NetCore31Tests/x64/leptonica-1.85.0.dll
Binary file not shown.
Binary file modified TesseractOCR.NetCore31Tests/x64/tesseract54.dll
Binary file not shown.
Binary file modified TesseractOCR.NetCore31Tests/x86/leptonica-1.85.0.dll
Binary file not shown.
Binary file modified TesseractOCR.NetCore31Tests/x86/tesseract54.dll
Binary file not shown.
4 changes: 2 additions & 2 deletions TesseractOCR/InteropDotNet/LibraryLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ public IntPtr LoadLibrary(string fileName, string platformName = null)
fileName = FixUpLibraryName(fileName);
lock (_syncLock)
{
if (_loadedAssemblies.ContainsKey(fileName))
return _loadedAssemblies[fileName];
if (_loadedAssemblies.TryGetValue(fileName, out var library))
return library;

if (platformName == null)
platformName = SystemManager.GetPlatformName();
Expand Down
12 changes: 6 additions & 6 deletions TesseractOCR/TesseractOCR.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<PackageId>TesseractOCR</PackageId>
<Authors>Charles Weld &amp; Kees van Spelde</Authors>
<Product>Tesseract</Product>
<Description>Tesseract 5.3.2 adds a new neural net (LSTM) based OCR engine which is focused on line recognition, but also still supports the legacy Tesseract OCR engine of Tesseract 3
<Description>Tesseract 5.4.1 adds a new neural net (LSTM) based OCR engine which is focused on line recognition, but also still supports the legacy Tesseract OCR engine of Tesseract 3
which works by recognizing character patterns. Compatibility with Tesseract 3 is enabled by using the Legacy OCR Engine mode (--oem 0). It also needs traineddata files
which support the legacy engine, for example those from the tessdata repository.</Description>
<Copyright>Copyright 2012-2021 Charles Weld - Copyright 2021-2023 Kees van Spelde</Copyright>
<PackageReleaseNotes>- Updated to Tesseract 5.3.2
- Updated to Leptonica 1.83.1
<PackageReleaseNotes>- Updated to Tesseract 5.4.1
- Updated to Leptonica 1.85.0
- Updated nuget packages</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/Sicos1977/TesseractOCR</PackageProjectUrl>
<RepositoryUrl>https://github.com/Sicos1977/TesseractOCR</RepositoryUrl>
Expand All @@ -18,10 +18,10 @@ which support the legacy engine, for example those from the tessdata repository.
<SignAssembly>false</SignAssembly>
<TargetFrameworks>netstandard21;net461;net48;net5.0;net6.0;net8.0</TargetFrameworks>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<FileVersion>5.3.6.0</FileVersion>
<AssemblyVersion>5.3.6.0</AssemblyVersion>
<FileVersion>5.4.1.0</FileVersion>
<AssemblyVersion>5.4.1.0</AssemblyVersion>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<Version>5.3.6-preview-6</Version>
<Version>5.4.1</Version>
<PackageIcon>ocr.png</PackageIcon>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
Expand Down
Binary file modified TesseractOCR/x64/leptonica-1.85.0.dll
Binary file not shown.
Binary file modified TesseractOCR/x64/tesseract54.dll
Binary file not shown.
Binary file modified TesseractOCR/x86/leptonica-1.85.0.dll
Binary file not shown.
Binary file modified TesseractOCR/x86/tesseract54.dll
Binary file not shown.

0 comments on commit 70fb8ae

Please sign in to comment.