Bump to 1.10

Bug when pressing enter with invalid composite key
This commit is contained in:
BONNEVILLE Geoffroy
2017-11-21 18:45:42 +01:00
parent 197e061bc5
commit f2d97b4e7e
3 changed files with 4 additions and 4 deletions

View File

@@ -64,7 +64,7 @@ namespace ModernKeePass.Controls
private void PasswordBox_KeyDown(object sender, KeyRoutedEventArgs e) private void PasswordBox_KeyDown(object sender, KeyRoutedEventArgs e)
{ {
if (e.Key == VirtualKey.Enter) OpenButton_OnClick(null, null); if (e.Key == VirtualKey.Enter && Model.IsValid) OpenButton_OnClick(null, null);
} }
private async void KeyFileButton_Click(object sender, RoutedEventArgs e) private async void KeyFileButton_Click(object sender, RoutedEventArgs e)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest"> <Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest">
<Identity Name="wismna.ModernKeePass" Publisher="CN=0719A91A-C322-4EE0-A257-E60733EECF06" Version="1.9.0.30" /> <Identity Name="wismna.ModernKeePass" Publisher="CN=0719A91A-C322-4EE0-A257-E60733EECF06" Version="1.10.0.30" />
<Properties> <Properties>
<DisplayName>ModernKeePass</DisplayName> <DisplayName>ModernKeePass</DisplayName>
<PublisherDisplayName>wismna</PublisherDisplayName> <PublisherDisplayName>wismna</PublisherDisplayName>

View File

@@ -24,6 +24,6 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.9.0.0")] [assembly: AssemblyVersion("1.10.0.0")]
[assembly: AssemblyFileVersion("1.9.0.0")] [assembly: AssemblyFileVersion("1.10.0.0")]
[assembly: ComVisible(false)] [assembly: ComVisible(false)]