Skip to content

Commit

Permalink
Merge pull request #4 from akesseler/details-view-support
Browse files Browse the repository at this point in the history
Support of summary window.
  • Loading branch information
akesseler authored Jan 1, 2022
2 parents 221699b + 92a4be2 commit f2396ba
Show file tree
Hide file tree
Showing 25 changed files with 645 additions and 145 deletions.
2 changes: 2 additions & 0 deletions code/src/HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
**1.0.X**
- Support of internet password type with a variable length.
- Support of password online checks.
- Support of an additional summary window.
- YAGNI code removed.
- Bug fixing.

**1.0.1**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public void Generate(IGeneratorSettings generatorSettings)
this.cntEntropy.Strength = strength;
this.cntEntropy.Entropy = entropy;
this.cntEntropy.Percent = strengthCalculator.ToPercent(entropy);
this.cntEntropy.Summary = strengthCalculator.Generate(strength);
this.cntEntropy.Summary = strengthCalculator.ToSummary(strength);

if (entropy > 0d)
{
Expand Down
123 changes: 123 additions & 0 deletions code/src/PasswordGenerator/Dialogs/SummaryDialog.Designer.cs

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

Loading

0 comments on commit f2396ba

Please sign in to comment.