[svn] GpgEX - r60 - in trunk: . doc src
svn author wk
cvs at cvs.gnupg.org
Tue Sep 9 11:52:58 CEST 2008
Author: wk
Date: 2008-09-09 11:52:58 +0200 (Tue, 09 Sep 2008)
New Revision: 60
Modified:
trunk/AUTHORS
trunk/NEWS
trunk/configure.ac
trunk/doc/gpgex.texi
trunk/src/gpgex.cc
Log:
Fix forgotten commit.
Prepare release.
Modified: trunk/AUTHORS
===================================================================
--- trunk/AUTHORS 2008-09-01 11:56:06 UTC (rev 59)
+++ trunk/AUTHORS 2008-09-09 09:52:58 UTC (rev 60)
@@ -1,8 +1,8 @@
Package: gpgex
Contact: info-gpgex at g10code.com
Bugs: bug-gpgex at g10code.com
+License: LGPLv2.1
-
g10 Code GmbH
New code and package maintainer.
Modified: trunk/NEWS
===================================================================
--- trunk/NEWS 2008-09-01 11:56:06 UTC (rev 59)
+++ trunk/NEWS 2008-09-09 09:52:58 UTC (rev 60)
@@ -1,5 +1,11 @@
+Noteworthy changes for version 0.9.1 (2008-09-09)
+-------------------------------------------------
+
+* Take care of CMS file suffixes.
+
+
Noteworthy changes for version 0.9.0 (2008-03-26)
-------------------------------------------------
+-------------------------------------------------
* Initial release.
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2008-09-01 11:56:06 UTC (rev 59)
+++ trunk/configure.ac 2008-09-09 09:52:58 UTC (rev 60)
@@ -17,7 +17,7 @@
# Set my_issvn to "yes" for non-released code. Remember to run an
# "svn up" and "autogen.sh" right before creating a distribution.
m4_define([my_version], [0.9.1])
-m4_define([my_issvn], [yes])
+m4_define([my_issvn], [no])
m4_define([svn_revision], m4_esyscmd([echo -n $( (svn info 2>/dev/null \
|| echo 'Revision: 0')|sed -n '/^Revision:/ {s/[^0-9]//gp;q;}')]))
Modified: trunk/doc/gpgex.texi
===================================================================
--- trunk/doc/gpgex.texi 2008-09-01 11:56:06 UTC (rev 59)
+++ trunk/doc/gpgex.texi 2008-09-09 09:52:58 UTC (rev 60)
@@ -111,7 +111,7 @@
@node Assuan Protocol
@chapter Description of the UI Server Protocol
-All cryptographic operations are done by this server and the server is
+All cryptographic operations are done by a server and the server is
responsible for all dialogs. If a a server is not available,
@acronym{GpgEX} does not work.
Modified: trunk/src/gpgex.cc
===================================================================
--- trunk/src/gpgex.cc 2008-09-01 11:56:06 UTC (rev 59)
+++ trunk/src/gpgex.cc 2008-09-09 09:52:58 UTC (rev 60)
@@ -203,7 +203,11 @@
if (! strcasecmp (ending, "gpg")
|| ! strcasecmp (ending, "pgp")
|| ! strcasecmp (ending, "asc")
- || ! strcasecmp (ending, "sig"))
+ || ! strcasecmp (ending, "sig")
+ || ! strcasecmp (ending, "pem")
+ || ! strcasecmp (ending, "p7m")
+ || ! strcasecmp (ending, "p7s")
+ )
gpg = true;
if (gpg == false)
More information about the Gnupg-commits
mailing list