Skip to content

Commit

Permalink
Fixes #14 and updates version to 2.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
JanisEst committed Jan 9, 2017
1 parent dbda707 commit b16c8e7
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion KeePassQuickUnlock.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<None Include="Resources\B48x48_TimeLock.png" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\KeePass-2.34-Source\KeePass\KeePass.csproj">
<ProjectReference Include="..\KeePass-2.35-Source\KeePass\KeePass.csproj">
<Project>{10938016-dee2-4a25-9a5a-8fd3444379ca}</Project>
<Name>KeePass</Name>
</ProjectReference>
Expand Down
2 changes: 1 addition & 1 deletion KeePassQuickUnlock.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KeePassQuickUnlock", "KeePassQuickUnlock.csproj", "{6A249FA1-3F87-4C81-8D31-6BDF62308F48}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KeePass", "..\KeePass-2.34-Source\KeePass\KeePass.csproj", "{10938016-DEE2-4A25-9A5A-8FD3444379CA}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KeePass", "..\KeePass-2.35-Source\KeePass\KeePass.csproj", "{10938016-DEE2-4A25-9A5A-8FD3444379CA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
6 changes: 6 additions & 0 deletions KeePassQuickUnlockExt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,12 @@ private void WindowAddedHandler(object sender, GwmWindowEventArgs e)
{
m_cmbKeyFile.SelectedIndex = index;

var m_cbPassword = keyPromptForm.Controls.Find("m_cbPassword", false).FirstOrDefault() as CheckBox;
if (m_cbPassword != null)
{
m_cbPassword.Checked = false;
}

// If AutoPrompt is enabled click the Ok button.
if (Host.CustomConfig.GetBool(QuickUnlockProvider.CfgAutoPrompt, true))
{
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.1.1.0")]
[assembly: AssemblyFileVersion("2.1.1.0")]
[assembly: AssemblyVersion("2.2.0.0")]
[assembly: AssemblyFileVersion("2.2.0.0")]
2 changes: 1 addition & 1 deletion keepass.version
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
:
KeePassQuickUnlock:2.1.1
KeePassQuickUnlock:2.2.0
:

0 comments on commit b16c8e7

Please sign in to comment.