Pwmgr » History » Version 1
Anonymous, 12/19/2021 04:35 PM
adding original page
| 1 | 1 | h1. pwmgr |
|
|---|---|---|---|
| 2 | |||
| 3 | Password Manager (aka pwmgr) is a simple GUI front end to my password management scheme. pwmgr is written in Python using PyGtk3. |
||
| 4 | |||
| 5 | h2. Changelog |
||
| 6 | |||
| 7 | h3. v0.5.0 |
||
| 8 | |||
| 9 | * Added change detection (using a SHA-256 hash) so textview buffer contents will only be stored if they are changed; on close save warning dialog is only display if contents have been modified |
||
| 10 | |||
| 11 | h3. v0.4.0 |
||
| 12 | |||
| 13 | * Added save warning before quit dialog; currently displayed always |
||
| 14 | * Added improved state tracking; clicking buttons out of context will no longer cause issues |
||
| 15 | * Added progress pop on close to give user feedback while ramdisk cleanup is happening |
||
| 16 | |||
| 17 | h3. v0.3.0 |
||
| 18 | |||
| 19 | * Improved security of encryption/decryption operations (use file to pass password to openssl invocation) |
||
| 20 | * Bound <ENTER> to dialog OK buttons to improve ease of use |
||
| 21 | * Implemented key bindings for common operations (CTRL-O -- open, CTRL-S -- save, CTRL-F -- find, CTRL-Q -- quit) |
||
| 22 | |||
| 23 | h3. TODO |
||
| 24 | |||
| 25 | * Case insensitive searching |
||
| 26 | * Sign/verify encrypted password store using public key |
||
| 27 | |||
| 28 | |||
| 29 | h3. Resources |
||
| 30 | |||
| 31 | * https://python-gtk-3-tutorial.readthedocs.io/en/latest/ |
||
| 32 | * https://lazka.github.io/pgi-docs/ |
||
| 33 | * https://wiki.gnome.org/Projects/PyGObject/Threading |