Skip to content

Commit

Permalink
clipassgen v0.7.1 fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
smartlegionlab committed Aug 1, 2024
1 parent e116b5a commit f1484d3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# clipassgen <sup>v0.7.0</sup>
# clipassgen <sup>v0.7.1</sup>

***

Expand Down Expand Up @@ -39,10 +39,7 @@ Author and developer: ___A.A. Suvorov___

## What's new:

- The default password generator has been improved. Now the password always contains at least 1 lowercase letter, 1 uppercase letter, 1 number and one symbol. Instead of random, the more secure and cryptographically strong secret is used.
- Bugs fixed.
- Code optimized.
- Performance improved.
- Fixed errors.

***

Expand Down
2 changes: 1 addition & 1 deletion clipassgen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
Console Smart Passwords Generator. Cross-platform console utility for
generating cryptographically strong, recoverable, smart passwords.
"""
__version__ = '0.7.0'
__version__ = '0.7.1'
2 changes: 1 addition & 1 deletion clipassgen/app_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def generate_smart_password(self):
self.smart_printer.print_center(text='Smart Password')
secret = self._get_secret()
length = self._get_length()
password = self.password_generator.get_smart_password(secret=secret, length=length)
password = self.password_generator.get_default_password(secret=secret, length=length)
self.show_password(password)

def generate_base_password(self):
Expand Down
2 changes: 1 addition & 1 deletion clipassgen/smart_pass_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class PasswordGenerator:

@staticmethod
def get_password(length=10):
return BasePasswordGenerator.generate(length)
return StrongPasswordGenerator.generate(length)

@classmethod
def get_default_password(cls, secret='', length=10):
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = clipassgen
version = 0.7.0
version = 0.7.1
author = A.A. Suvorov
author_email = [email protected]
description = Console Smart Passwords Generator. Cross-platform console utility for generating cryptographically strong, recoverable, smart passwords.
Expand Down

0 comments on commit f1484d3

Please sign in to comment.