Releases: IceTheCoder/Passwordsy
Releases · IceTheCoder/Passwordsy
v1.0.1.1-alpha: Added credit for SecLists
Changes
- Credit for SecLists mentioned in the code at line 7 in password_strength.py ('# passwords.txt is from the https://github.com/danielmiessler/SecLists repository.')
v1.0.1.0-alpha: Code cleaning and a quality of life improvement
Changes
- Bound the ENTER key to the input box in the generate password frame, meaning pressing the ENTER key will do the same thing as clicking the done button.
- Renamed done_button.png to done_btn.png
v1.0.0.0-alpha: You can now check a password's strength!
Additions
- Added a new tab: Password strength. Check if a password is common or not, long enough or not, complex enough or not, and if it contains repeating patterns.
- Use the new tab to receive tips on how to make your password more secure.
- Added password_strength.py for checking a password's strength.
- Added passwords.txt from SecLists.
- Updated DOCSTRINGS.
Changes
- Removed 'CTRL + V to paste'.
- Renamed PasswordGenerator folder to password_generator.
- Renamed Screenshots folder to screenshots.
- Renamed doneButton.png to done_button.png.
- Deleted old screenshots and added 12 new ones.
- Reorganised files into main.py, generate_password.py, and password_strength.py.
v0.1.4.1-alpha: Refactor code and remove __pycache__
What's Changed
- Refactor code and remove pycache by @MartinMerkli in #7
New Contributors
- @MartinMerkli made their first contribution in #7
Full Changelog: v0.1.4.0-alpha...v0.1.4.1-alpha
v0.1.4.0-alpha: Code cleaning and quality of life
- Renamed done_btn_image to DONE_BUTTON_IMAGE.
- Requested password length now converted to integer in main.py instead of logic.py.
- Input box cleared if there's no whole number greater than 0 when clicking the done button.
- Updated README.md's screenshots and acknowledgements.
v0.1.3.0-alpha: Some code cleaning and a quality of life improvement
- Renamed done_btn_image to DONE_BUTTON_IMAGE.
- Requested password length now converted to integer in main.py instead of logic.py.
- Input box cleared if there's not a whole number greater than 0 in it when clicking the done button.
v0.1.2.1-alpha: Code Cleaning 7
- Updated documentation.
v0.1.2.0-alpha: Quality of life improvements
- You can now press the Enter key to generate a password.
v0.1.1.1-alpha: Code Cleaning 6
Specified a type for every try-except.
v0.1.1.0-alpha: Bug Fixing and Code Cleaning
- Reduced magic numbers to make the code more readable. (suggested by u/Diapolo10 and u/NUTTA_BUSTAH)
- Fixed a bug where inputting a negative whole number would clear the password fields without outputting an error in the first field.