Prepare for release v0.2.6

This commit is contained in:
2025-04-21 18:17:53 -04:00
parent 34136633d9
commit b366d1e13e
6 changed files with 37 additions and 5 deletions
+1
View File
@@ -67,6 +67,7 @@ func inputMenuGen(prompt string, options []string) int {
// inputPasswordGen prompts the user for password generation parameters and returns a generated password as a string.
func inputPasswordGen() string {
passLength := inputInt("Password length:", -1)
fmt.Println()
passCharset := uint8(inputMenuGen("Password complexity:", []string{"Simple", "Complex", "Ultra Complex (not compatible with many services)"}))
var complexity float64
switch passCharset {