Commits
Commit:
f1a67479a51743fbb843305cd0d4479daa46009a
Date:
Mon Jan 23 11:04:10 2023
UTC
release 0.4
Commit:
fc447ca7ce1a15a6d454f83fb334b3257c881109
Date:
Mon Jan 23 11:02:31 2023
UTC
totp.1: make clear the format of the secret
Commit:
847f206c43d0f251c78dc7a3682047a640dd16a9
Date:
Mon Jan 23 10:56:00 2023
UTC
plass.1: add an example of `plass edit'
Commit:
3486f5fcacfc912a484c65a793074fe93fa1de01
Date:
Sat Jan 21 18:04:14 2023
UTC
tweak pwg.1
Commit:
86b0d4f5888b96794e8af6f811e60326be694bc7
Date:
Sat Jan 21 18:02:03 2023
UTC
tweak plass.1
Commit:
b0942e5cf25041e637507c0ab3d67cccda552a37
Date:
Sat Jan 21 17:46:17 2023
UTC
tweak the README
Commit:
3cf28f46d454a6b95131133179393b3ae6ac7ec4
Date:
Sat Jan 21 17:09:26 2023
UTC
avoid issuing unnecessary `got add'
plass always did a `got add $file' before committing changes. However,
this leads to a possibly misleading "file has unexpected status" error
being printed to stderr.
Instead, `got add $file' only when the file is new.
Commit:
8c4930cfcef7c2310f05b7007f95750513e1fd79
Date:
Sat Jan 21 16:46:46 2023
UTC
refactor cmd_edit
Now it always deletes the temporary file.
Commit:
fc9fec0528e6bbd15f3b6ebbc175b3b907b52a94
Date:
Sat Jan 21 16:46:46 2023
UTC
plass tee: set binmode to avoid mangling binary data
Commit:
1169deba9daca5ae8f560bf4cc3e405435a5e1e0
Date:
Sat Jan 21 16:46:46 2023
UTC
refactor cmd_tee: simplify the code
inline (with tweaks) writepass, it's redundant to have. While here also
read/write blockwise instead that of linewise.
Commit:
77ea6ba189318aa615484e5dbcb7271af75eb89f
Date:
Sat Jan 21 16:46:46 2023
UTC
remove handling of PLASS_GOT environment variable
There's no real reason to have this variable, there's only one `got'
usually and people are better off putting it somewhere in $PATH.
Retain PLASS_GPG as there seem to be a little issue with gpg vs gpg2 so
the knob may be useful in practice.
Commit:
a5ae11fe24bc4ae3841ff1c17d6c9de6d74bc0cb
Date:
Mon Jan 16 13:04:32 2023
UTC
typo
Commit:
71c704e31adc9f16efb0cd55ac5abb17249bd867
Date:
Mon Jan 16 13:04:20 2023
UTC
bump copyright
Commit:
f31cd5a448ae963454d16aeaaf1766feff159bfa
Date:
Mon Jan 16 13:03:23 2023
UTC
totp: extract the secret from otpauth:// URIs
More often than not, services provide the URI for TOTP and not the raw
secret. While it's easy to manually extract the secret from the
querystring, teach totp how to do that on behalf of the user.
Manpage bits will follow.
Discussed with heph.
Commit:
87986040c34281a3660bec9a65057f5a6aabfd1d
Date:
Wed Jan 11 21:35:24 2023
UTC
plass edit: delete the temp file
File::Temp lied. it says UNLINK defaults to true but the files were
still in my /tmp. Quick workaround, needs something better that takes
care also of cleaning up on die().
Omar Polo