Skip to content

Commit

Permalink
Merge pull request #20 from andrew-schofield/resize-breached-entries-…
Browse files Browse the repository at this point in the history
…dialog

Resize breached entries dialog. Fixes #15 in v0.2.8.1
  • Loading branch information
andrew-schofield authored Apr 8, 2017
2 parents d28c20f + 3ffc10b commit f1481cc
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 11 deletions.
Binary file modified HaveIBeenPwned.plgx
Binary file not shown.
2 changes: 0 additions & 2 deletions HaveIBeenPwned/BreachedEntriesDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions HaveIBeenPwned/BreachedEntriesDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public BreachedEntriesDialog(IPluginHost pluginHost)
{
this.pluginHost = pluginHost;
InitializeComponent();
this.Icon = pluginHost.MainWindow.Icon;
}

public void AddBreaches(IList<BreachedEntry> breaches)
Expand Down
2 changes: 1 addition & 1 deletion HaveIBeenPwned/BreachedEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public string BreachName
{
get
{
return breach.Name;
return breach.Title;
}
}

Expand Down
2 changes: 1 addition & 1 deletion HaveIBeenPwned/CheckerPrompt.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion HaveIBeenPwned/CloudbleedEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public DateTime BreachDate
}
}

public string Name
public string Title
{
get
{
Expand Down
2 changes: 1 addition & 1 deletion HaveIBeenPwned/IBreach.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace HaveIBeenPwned
{
public interface IBreach
{
string Name { get; }
string Title { get; }

DateTime BreachDate { get; }
}
Expand Down
4 changes: 2 additions & 2 deletions HaveIBeenPwned/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,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.2.8.0")]
[assembly: AssemblyFileVersion("0.2.8.0")]
[assembly: AssemblyVersion("0.2.8.1")]
[assembly: AssemblyFileVersion("0.2.8.1")]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Also compares URLs against the cloudbleed vulnerability list from here: [https:/
## Usage

* Install the plugin into KeePass, this will add 2 new entries to the Tools menu, "Have I Been Pwned?" and "Cloudbleed checker"
* Clicking either of these will open a prompt asked whether to check only entries that have not been modified since the breach date. You also have the option of auto-expiring any breached entries.
* Clicking either of these will open a prompt asked whether to check only entries that have not been modified since the breach date. You also have the option of auto-expiring any breached entries and including any deleted entries.
* Running the check will result in a dialog listing all the breached entries. These can then be modified directly from the list.

## Known Issues
Expand All @@ -21,5 +21,5 @@ Also compares URLs against the cloudbleed vulnerability list from here: [https:/
## Notes

* HaveIBeenPwned breach data is downloaded every time the check is run as the data file is small.
* Cloudbleed data is only downloaded once and then cached here: `%PROGRAMDATA%\KeePass\cloudbleed.txt` as this is currently a ~70MB download. If you wish to refresh the cache, simply delete this file.
* Cloudbleed data is only downloaded once and then cached here: `%PROGRAMDATA%\KeePass\cloudbleed.txt` (Windows) or `%LOCALAPPDATA%\KeePass\cloudbleed.txt` (Linux) as this is currently a ~70MB download. If you wish to refresh the cache, simply delete this file.
* As KeePass doesn't have a native method for determining when an entry's password was last changed, keepass2-haveibeenpwned will use the history entries if any exist and compare their passwords.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
:
HaveIBeenPwned checker:0.2.8
HaveIBeenPwned checker:0.2.8.1
:
Binary file modified mono/HaveIBeenPwned.dll
Binary file not shown.

0 comments on commit f1481cc

Please sign in to comment.