Skip to content

Commit fde1dea

Browse files
committed
main merge
2 parents cbeec18 + 6fbb1d8 commit fde1dea

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

Text-Grab-Package/Package.appxmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<Identity
1515
Name="40087JoeFinApps.TextGrab"
1616
Publisher="CN=153F3B0F-BA3D-4964-8098-71AC78A1DF6A"
17-
Version="4.12.0.0" />
17+
Version="4.12.1.0" />
1818

1919
<Properties>
2020
<DisplayName>Text Grab</DisplayName>

Text-Grab-Package/Text-Grab-Package.wapproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
4848
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>
4949
<GenerateTestArtifacts>True</GenerateTestArtifacts>
50-
<AppxBundlePlatforms>x86|x64|arm64</AppxBundlePlatforms>
50+
<AppxBundlePlatforms>x64|arm64</AppxBundlePlatforms>
5151
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
5252
<AppxOSMinVersionReplaceManifestVersion>false</AppxOSMinVersionReplaceManifestVersion>
5353
<AppxOSMaxVersionTestedReplaceManifestVersion>false</AppxOSMaxVersionTestedReplaceManifestVersion>

Text-Grab/Models/GlobalLang.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ public GlobalLang(string inputLangTag)
2727
}
2828
catch (System.ArgumentException ex)
2929
{
30-
System.Diagnostics.Debug.WriteLine($"Failed to initialize language '{inputLangTag}': {ex.Message}");
30+
System.Diagnostics.Debug.WriteLine($"Failed to initialize language '{inputLang}': {ex.Message}");
31+
// return the language of the keyboard
32+
language = new(System.Globalization.CultureInfo.CurrentCulture.Name);
3133
}
3234
AbbreviatedName = language.AbbreviatedName;
3335
CultureDisplayName = language.DisplayName;

Text-Grab/Text-Grab.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2424
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
2525
<EnableMsixTooling>false</EnableMsixTooling>
26-
<Version>4.12.0</Version>
26+
<Version>4.12.1</Version>
2727
</PropertyGroup>
2828

2929
<ItemGroup>

0 commit comments

Comments
 (0)