diff options
author | Teddy Wing | 2018-03-02 02:24:02 +0100 |
---|---|---|
committer | Teddy Wing | 2018-03-02 02:24:02 +0100 |
commit | 28623a4dda3963b65e50b6ff0deda40dcb500d53 (patch) | |
tree | e669ce24b98796c44eb3a67d20fef8fad3226162 | |
parent | fbef6002a4a3dbcd008012a2b285a0a7a02da244 (diff) | |
parent | b347f3dd4fb51696272a2de0fcfac1ced63d1941 (diff) | |
download | Passextract-28623a4dda3963b65e50b6ff0deda40dcb500d53.tar.bz2 |
Merge branch 'add-changelog'
-rw-r--r-- | CHANGELOG | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..27048a3 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,43 @@ +CHANGELOG +========= + +v0.3.0 (2016-11-14): + +Additions: + + * On quit, the clipboard is cleared by setting its contents to an empty + string. This is to help mitigate unintentional pastes of passwords or + clipboard exploits. + +v0.2.0 (2016-08-17): + +Additions: + + * `g` mapping to move to the first selection + * `G` mapping to move to the last selection + +v0.1.1 (2016-08-06): + +Changes: + + * Fix bug encountered when copying values/passwords containing the string + ": ". Previously, anything following the first occurrence of that string + would not be copied to the clipboard. + +v0.1.0 (2016-08-06): + +Additions: + + * Passextract can now be invoked as a standalone program instead of + requiring input to be passed to it through STDIN. It will take a file + argument in exactly the same way as `pass show`. When run in this way, the + program will call `pass show` with the given argument and display the + result in the Passextract interactive interface. It is still possible to + use the program with STDIN. + * A Bash completion script is added that enables tab completion and + functions in the same way as `pass show`. + * A license, README, and demo screencast are added. + +v0.0.1 (2016-08-06): + * First working release. Reads from STDIN and presents lines beginning with + "e: ", "u: ", and "p: " in a menu for copying to the clipboard. |