Skip to content

Commit

Permalink
Address build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bigbamboo-jp committed Aug 19, 2024
1 parent 6ae48bc commit 331e805
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Cloud OCR Snip/Cloud OCR Snip/Cloud OCR Snip.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<UseWindowsForms>True</UseWindowsForms>
<Copyright>Copyright © 2021 Takuma Otake</Copyright>
<ApplicationIcon>Icons/BlackIcon.ico</ApplicationIcon>
<Version>1.3.7.0</Version>
<Version>1.3.8.0</Version>
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
</PropertyGroup>

Expand All @@ -35,7 +35,7 @@
<PackageReference Include="Markdig.Signed" Version="0.37.0" />
<PackageReference Include="Markdig.Wpf.Signed" Version="0.5.0.1" />
<PackageReference Include="MetroRadiance" Version="2.4.0" />
<PackageReference Include="System.Drawing.Common" Version="8.0.7" />
<PackageReference Include="System.Drawing.Common" Version="8.0.8" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ internal override async Task<string> DetectText(System.Drawing.Bitmap image, str
}
else
{
throw ex;
throw;
}
return null;
}
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ Accurately read text from screenshots using cloud services.
* Similar in feel to the standard Windows application "Snipping Tool".
* Easily add available languages and transcription services (rebuild required).
## Operating environment
Windows 10, 11 (x64 systems only)
Windows 10, 11 (x64 architecture only)
\*The ARM64 architecture version of Windows 11 can run applications that are created for the x64 architecture.
## Currently available languages
English, Japanese(日本語)
\*This list can be expanded by you. Please see the [contribution page](https://github.com/bigbamboo-jp/cloud-ocr-snip/wiki/Contribution) for details.
## Currently supported transcription services
* Google Cloud Vision API ([service website](https://cloud.google.com/vision))
Free up to 1000 times per month, thereafter US$1.50 will be charged for every 1000 times (as of July 16, 2024).
Free up to 1000 times per month, thereafter US$1.50 will be charged for every 1000 times (as of August 19, 2024).

\*This list can be expanded by you. Please see the [contribution page](https://github.com/bigbamboo-jp/cloud-ocr-snip/wiki/Contribution) for details.
## Start using
Expand Down
4 changes: 2 additions & 2 deletions installer_configuration_system.iss
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#define MyAppName "Cloud OCR Snip"
#define MyAppNameForFilename "CloudOCRSnip"
#define MyAppVersion "1.3.7.0"
#define MyAppVersionForFilename "1-3-7-0"
#define MyAppVersion "1.3.8.0"
#define MyAppVersionForFilename "1-3-8-0"
#define MyAppPublisher "Takuma Otake"
#define MyAppExeName "CloudOCRSnip.exe"

Expand Down
4 changes: 2 additions & 2 deletions installer_configuration_user.iss
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#define MyAppName "Cloud OCR Snip"
#define MyAppNameForFilename "CloudOCRSnip"
#define MyAppVersion "1.3.7.0"
#define MyAppVersionForFilename "1-3-7-0"
#define MyAppVersion "1.3.8.0"
#define MyAppVersionForFilename "1-3-8-0"
#define MyAppPublisher "Takuma Otake"
#define MyAppExeName "CloudOCRSnip.exe"

Expand Down

0 comments on commit 331e805

Please sign in to comment.