diff --git a/doc/MANUAL.pdf b/doc/MANUAL.pdf index 9be49d1..abdf0df 100644 Binary files a/doc/MANUAL.pdf and b/doc/MANUAL.pdf differ diff --git a/doc/MANUAL.tex b/doc/MANUAL.tex index 7438246..0ce271d 100644 --- a/doc/MANUAL.tex +++ b/doc/MANUAL.tex @@ -122,6 +122,8 @@ A: Yes. You first create a password with a dummy entry in whichever field you wish to leave empty, and then modify it, leaving it empty.\\ \textbf{Q: Can I have a service with an empty password?} A: Yes. With \texttt{PSWD::0} + \textbf{Q: Can I migrate my password file from one system to another?}\\ + A: The password file in \texttt{\textdollar HOME/.pasfile.csv.gpg} contains all saved passwords, that file can be moved from one home directory to another. \subsection{Contact} The author of this software can be contacted in kamalcuri@outlook.com. diff --git a/steelbox.py b/steelbox.py index 3942f54..f19afce 100644 --- a/steelbox.py +++ b/steelbox.py @@ -456,7 +456,7 @@ def rwin(): ranWin = curses.newwin(3, 49, int(TERM_LINES/2), int(TERM_COLS/2)) ranWin.border() ranWin.addstr(0, 1, "Random string") - ranWin.addstr(1, 1, randString()) + ranWin.addstr(1, 1, randString(45)) ranWin.refresh() ranWin.getch()