Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
Ensure Quick Unlock PIN always works
  • Loading branch information
Rookiestyle committed Aug 25, 2021
1 parent 3a678ea commit 519929d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/LockAssist.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public override bool Initialize(IPluginHost host)

PluginTranslate.Init(this, KeePass.Program.Translation.Properties.Iso6391Code);
Tools.DefaultCaption = PluginTranslate.PluginName;
Tools.PluginURL = "https://github.com/rookiestyle/lockassist/";

m_menu = new ToolStripMenuItem();
m_menu.Text = PluginTranslate.PluginName + "...";
Expand Down
4 changes: 2 additions & 2 deletions src/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 Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyFileVersion("1.0.0")]
[assembly: AssemblyVersion("1.0.1")]
[assembly: AssemblyFileVersion("1.0.1")]
2 changes: 1 addition & 1 deletion src/QuickUnlockKeyProv.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ private static ProtectedBinary CreateMasterKeyHash(CompositeKey mk)
if (pb != null)
{
var pbArray = pb.ReadData();
keys.Add(pbArray);
keys.Add((byte[])pbArray.Clone());
keysLength += pbArray.Length;
MemUtil.ZeroByteArray(pbArray);
}
Expand Down
2 changes: 1 addition & 1 deletion version.info
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:
LockAssist:1.0
LockAssist:1.0.1
LockAssist!de:1
:

0 comments on commit 519929d

Please sign in to comment.