root/gpgdir/tags/gpgdir-1.4/ChangeLog

Revision 218, 7.2 kB (checked in by mbr, 1 year ago)

version 1.4

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 gpgdir-1.4 (07/20/2007):
2     - (Anthony Chivetta) Submitted patch to implement the
3       --overwrite-encrypted command line argument to allow previously
4       encrypted files to be overwritten. This is useful for updating an
5       encrypted directory with new versions of the previously encrypted files.
6       Also added the --overwrite-decrypted command line argument to perform
7       the same function for previously decrypted files.
8     - (Anthony Chivetta) Submitted patch to fix a bug where a filename of
9       "0.gpg" could not be decrypted because "0" does not evaluate to a true
10       value.
11
12 gpgdir-1.3 (06/09/2007):
13     - Added --Obfuscate mode so that the files within a directory can be
14       altered into unrecognizable names (which are stored within the file
15       .gpgdir_map_file within each sub-directory, and this file is itself
16       encrypted).  The obfuscated file names are reversed when a directory
17       is decrypted.
18     - Added the --Agent-info command line argument so that the value of the
19       GPG_AGENT_INFO environment variable can be specified on the gpgdir
20       command line.
21
22 gpgdir-1.2 (05/28/2007):
23     - Added support for installing gpgdir on Windows under Cygwin (via the
24       install.pl script). Installing gpgdir on FreeBSD systems also works.
25     - Added support for installing gpgdir within a user home directory without
26       the need for root access (this requires installing gpgdir with the
27       install.pl script).
28     - Added --agent to have gpgdir acquire gpg key password from a running
29       gpg-agent instance.
30     - Added --no-password so gpgdir can use a gpg key with no associated
31       password (this is not common).  The user is not prompted for a password
32       in this case.
33
34 gpgdir-1.1 (05/21/2007):
35     - Added the ability to securely delete the original versions of files with
36       the 'wipe' program (after they have been successfully encrypted).  Also
37       added --wipe-path to specify a path to the wipe binary (the default is
38       /usr/bin/wipe), --wipe-interactive to force the wipe program to prompt
39       the user before a file is deleted, and --wipe-cmdline to allow the user
40       to build a set of command line arguments that are passed to the wipe
41       program.
42     - Added --Force to have gpgdir skip over the error condition where a file
43       cannot be deleted (because of a permissions issue for example).
44     - Added --Trial-run to allow the user to see what actions gpgdir would
45       take to encrypt or decrypt files, but no files are actually modified.
46     - Added --Interactive to have gpgdir prompt the user before every file is
47       encrypted, decrypted.
48     - Added the gpgdir.SlackBuild script (contributed by pyllyukko originally
49       for the psad project) for building gpgdir on Slackware systems.
50
51 gpgdir-1.0.3 (09/17/2006):
52     - Minor bugfix to correct 1.0.1 version number (which should have been set
53       to 1.0.2) in the gpgdir RPM spec file.
54
55 gpgdir-1.0.2 (09/17/2006):
56     - Minor bugfix to correct 1.0 version number (which should have been set
57       to 1.0.1).  The result is the 1.0.2 release.
58
59 gpgdir-1.0.1 (09/16/2006):
60     - Added --quiet option to have gpgdir print as little as possible to the
61       screen when encrypting or decrypting a directory.
62     - Added x86_64 RPM (original patch from Mate Wierdl adapted for gpgdir).
63
64 gpgdir-1.0 (09/13/2006):
65     - Added --Key-id command line argument so that use_key can be overridden
66       from the command line
67     - Made the argument to use_key not have to strictly be a keyID since GnuPG
68       allows a unique string match on keys in the key ring
69     - Added --Default-key to allow the user to have gpgdir use the default
70       key that is defined by GnuPG within the ~/.gnupg/options file.
71     - Updated the .gpgdirrc file to include the line "default_key" to allow
72       the user to have gpgdir prefer to use the GnuPG default key.
73     - Added the ChangeLog.svn file to show exactly which files have been
74       changed from release to release, and what the corresponding Subversion
75       log messages are.
76     - Minor documentation updates.
77
78 gpgdir-0.9.9 (09/07/2006):
79     - Added RPM .spec file to build gpgdir as an RPM.
80     - Added the --Skip-mod-install command line argument to install.pl to
81       allow all perl module installs to be skipped.
82     - Added the --force-mod-regex command line argument to install.pl to allow
83       a regex match on perl module names to force matching modules to be
84       installed.
85     - Updated to TermReadKey-2.30 from 2.21.
86
87 gpgdir-0.9.8 (07/03/2006):
88     - Updated to use GnuPG::Interface instead of GnuPG module.  This should
89       fix the incompatibility issues seen between the GnuPG module and some
90       GnuPG installations.
91     - Added perl module installation code from fwknop (see
92       http://www.cipherdyne.org/fwknop/).  This allows gpgdir to
93       preferentially use any perl modules that are already be installed on the
94       system.
95
96 gpgdir-0.9.4 (10/12/2005):
97     - Updated test mode to encrypt and decrypt a testing file within the
98       directory to be encrypted or decrypted.  This file is located at
99       <dir>/gpgdir_test, and is removed after the test is completed.
100     - Bugfix for "protocol error: expected SHM_GET_XXX got GOOD_PASSPHRASE"
101       error in GnuPG module.
102
103 gpgdir-0.9.3 (02/20/2005):
104     - Added --Include and --Include-from options to allow inclusion
105       regular expressions to be specified.
106     - Bugfix for not decrypting filesnames that contain spaces.
107
108 gpgdir-0.9.2 (01/05/2005):
109     - Added preservation of file mtime and atime values (may be disabled
110       with the --no-preserve-times option).
111     - Added testing encryption and decryption of dummy file (may be
112       disabled with --skip-test) by default for both encrypt and decrypt
113       modes.
114     - Added --test-mode to run encrypt -> decrypt test and exit.
115     - Removed unnecessary compression options.
116     - Updated get_homedir() to reference HOME environmental variable if
117       the /etc/passwd file does not exist (OS X being a good example).
118     - Added --verbose mode.
119     - Updated output to generate errors on a per-file basis instead of
120       dumping them at the end of an encrypt/decrypt operation.
121
122 gpgdir-0.9.1 (11/11/2004):
123     - Updated GnuPG.pm perl module to handle return code of PLAINTEXT
124       which seems to be returned by GunPG now (as of version 1.2.6)
125       instead of DECRYPTION_OKAY upon a successful decryption.
126
127 gpgdir-0.9 (09/12/2004):
128     - Added --gnupg-dir option to allow a user to specify a different
129       user's .gnupg directory for encryption keys.
130     - Switched to "[+]" (and related) message prefixes.
131
132 gpgdir-0.8 (05/29/2004):
133     - Added --Exclude and --Exclude-from options to allow files to be
134       excluded based on regex matches.
135     - Reworked error messages so they contain the filename associated
136       with each error.
137
138 gpgdir-0.4 (04/23/2004):
139     - Added --pw-file option so that a decryption password can be
140       read out of a file.
141     - Better directory validation (filesystem -e and -d checks).
142     - Added INSTALL file.
143     - Updated man page and README file.
144
145 gpgdir-0.3 (09/27/2003):
146     - Bundled perl modules GnuPG and TermReadKey with gpgdir.
147     - Modified install.pl and gpgdir to install and use GnuPG and
148       TermReadKey modules from the /usr/lib/gpgdir directory.
149     - Added check_commands() subroutine from psad.
Note: See TracBrowser for help on using the browser.