Skip to content

Commit

Permalink
Bump version to v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
timokoessler committed Sep 28, 2024
1 parent 9ea40e8 commit fc0ac21
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Guard.CLI/Guard.CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<SupportedOSPlatformVersion>10.0.18362.0</SupportedOSPlatformVersion>
<ApplicationIcon>totp.ico</ApplicationIcon>
<Title>2FAGuard CLI</Title>
<Version>1.4.0</Version>
<Version>1.5.0</Version>
<Authors>Timo Kössler and Open Source Contributors</Authors>
<Copyright>$(Authors)</Copyright>
<RepositoryType>git</RepositoryType>
Expand Down
7 changes: 7 additions & 0 deletions Guard.Core/Guard.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
<Nullable>enable</Nullable>
<SupportedOSPlatformVersion>10.0.18362.0</SupportedOSPlatformVersion>
<DebugType>embedded</DebugType>
<Authors>Timo Kössler and Open Source Contributors</Authors>
<Title>Guard.Core</Title>
<Version>1.5.0</Version>
<Copyright>$(Authors)</Copyright>
<PackageProjectUrl>https://2faguard.app</PackageProjectUrl>
<FileVersion>$(Version)</FileVersion>
<AssemblyVersion>$(Version)</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Guard.Package/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Name="TimoKssler.2FAGuard"
Publisher="CN=F9CCA312-A05F-45A0-B7A8-E28C9DA26188"
ProcessorArchitecture="x64"
Version="1.4.0.0" />
Version="1.5.0.0" />

<Properties>
<DisplayName>2FAGuard</DisplayName>
Expand Down
6 changes: 1 addition & 5 deletions Guard.WPF/Guard.WPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<Title>2FAGuard</Title>
<Version>1.4.0</Version>
<Version>1.5.0</Version>
<Authors>Timo Kössler and Open Source Contributors</Authors>
<Copyright>$(Authors)</Copyright>
<RepositoryType>git</RepositoryType>
Expand Down Expand Up @@ -91,10 +91,6 @@
<Resource Include="Assets\update.svg" />
</ItemGroup>

<ItemGroup>
<Folder Include="Core\Stats\" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Guard.Core\Guard.Core.csproj" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Guard.WPF/Views/Pages/Add/TokenSettings.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ private void SaveButton_Click(object sender, RoutedEventArgs e)
return;
}
// Validate secret
if (string.IsNullOrWhiteSpace(Secret.Password))
if (string.IsNullOrWhiteSpace(Secret.Password) || Secret.Password.Length < 2)
{
ShowEror(I18n.GetString("td.nosecret"));
return;
Expand Down
4 changes: 2 additions & 2 deletions Guard.WPF/Views/Pages/Preferences/WebAuthnPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ private async void Add_Click(object sender, RoutedEventArgs e)
);
if (!creationResult.success)
{
if (creationResult.error == "Cancelled")
if (creationResult.error == "Canceled")
{
return;
}
Expand All @@ -101,7 +101,7 @@ private async void Add_Click(object sender, RoutedEventArgs e)
catch (Exception ex)
{
Log.Logger.Error("Unhandled WebAuthn exception on key creation: {0}", ex.Message);
if (ex.Message == "Cancelled")
if (ex.Message == "Canceled")
{
return;
}
Expand Down
2 changes: 1 addition & 1 deletion publish/installer.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define MyAppName "2FAGuard"
#define MyAppVersion "1.4.0"
#define MyAppVersion "1.5.0"
#define MyAppPublisher "Timo Kössler"
#define MyAppURL "https://2faguard.app"
#define MyAppExeName "2FAGuard.exe"
Expand Down

0 comments on commit fc0ac21

Please sign in to comment.