Skip to content

Commit

Permalink
Bugfix: Correct handling of placeholders, fix interaction with other …
Browse files Browse the repository at this point in the history
…plugins

Fixes #46
  • Loading branch information
Rookiestyle committed Feb 12, 2021
1 parent ed9f632 commit e8c5117
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/KeePassOTPExt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ private void AutotypeOTP(PwEntry pe, bool FromTray)

private void SprEngine_FilterCompile(object sender, SprEventArgs e)
{
if ((e.Context.Flags & SprCompileFlags.Active) != SprCompileFlags.Active) return;
if ((e.Context.Flags & SprCompileFlags.ExtActive) != SprCompileFlags.ExtActive) return;
if (e.Text.IndexOf(Config.Placeholder, StringComparison.InvariantCultureIgnoreCase) >= 0)
{
OTPDAO.EnsureOTPUsagePossible(e.Context.Entry);
Expand Down
4 changes: 2 additions & 2 deletions src/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.25.1")]
[assembly: AssemblyFileVersion("0.25.1")]
[assembly: AssemblyVersion("0.25.2")]
[assembly: AssemblyFileVersion("0.25.2")]
2 changes: 1 addition & 1 deletion version.info
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
:
KeePassOTP:0.25.1
KeePassOTP:0.25.2
KeePassOTP!de:13
KeePassOTP!fr:5
KeePassOTP!pt:4
Expand Down

0 comments on commit e8c5117

Please sign in to comment.