[Gpgoe-commits] r15 - in trunk: . doc init src

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Mon Apr 10 07:39:33 CEST 2006


Author: twoaday
Date: 2006-04-10 07:39:33 +0200 (Mon, 10 Apr 2006)
New Revision: 15

Modified:
   trunk/configure.ac
   trunk/doc/gpgoe.texi
   trunk/init/init.rc
   trunk/mk-w32-dist.sh
   trunk/src/GPGOE.rc
Log:


Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac	2006-04-08 15:49:13 UTC (rev 14)
+++ trunk/configure.ac	2006-04-10 05:39:33 UTC (rev 15)
@@ -7,7 +7,7 @@
 # Version number: Remember to change it immediately *after* a release.
 #                 Make sure to run  "svn up" before a "make dist".
 #                 Add a "-cvs" prefix for non-released code.
-AC_INIT(gpgoe, 0.7.1-cvs, twoaday at freakmail.de)
+AC_INIT(gpgoe, 0.8.0-cvs, twoaday at freakmail.de)
 
 NEED_GPGME_API=1
 NEED_GPGME_VERSION=1.1.0

Modified: trunk/doc/gpgoe.texi
===================================================================
--- trunk/doc/gpgoe.texi	2006-04-08 15:49:13 UTC (rev 14)
+++ trunk/doc/gpgoe.texi	2006-04-10 05:39:33 UTC (rev 15)
@@ -5,6 +5,12 @@
 This file describes the GPGOE functions and the integration
 in the Outlook Express mailer.
 
+This file is free under the terms of the GNU General Public License v2.
+
+Copyright (C) 2006 Timo Schulz
+
+ at settitle GPGOE - the GnuPG plug-in for Outlook Express
+
 @section Requirements for GPGOE
 
 First you need to have a working GnuPG installtion on the machine you
@@ -63,6 +69,13 @@
 was correct, the plugin will sign the message and store it in
 the outbox.
 
+ at subsection Sign and Encrypt a message
+To sign and encrypt a message, you have to check both toolbar
+buttons ("Sign" and "Encrypt"). The procedure is the same as
+in encrypt-only when one or more email addresses couldn't be
+mapped. Then the default key is used to sign the plaintext
+before it is encrypted with the selected recipients.
+
 @subsection Decrypt and/or verify a message
 If you received an OpenPGP message, you can just double-click
 the message to open it. The plug-in will figure out if it is
@@ -75,14 +88,32 @@
 will figure out the message status and will take the needed steps.
 If the message is neither signed nor encrypted, no action is performed.
 
+ at subsection Reply to an encrypted message
+Newer versions of the plug-in provide a feature to decrypt the
+message before the text is used in the reply mail. As a result,
+the reply message will contain the plain text instead of the encrypted
+GPG armored message.
+This feature is automatically used whenever the user clicks on "Reply"
+or "Reply All" in the Outlook main window. But only in the case, the
+mail is actually encrypted. Optionally the plug-in will ask for a
+key passphrase.
+
 @section Additional information and limitations of the GPGOE plug-in
 
 @itemize @bullet
 
 @item
+If you manually installed GPG and GPGoe, please make sure that
+you installed GPG at a standard place or create at least the gpgBinary
+registry entry. This is not needed if you use an automatic installer
+like GPG4WIN or GnuPT.
+
+ at item
 Due to the fact the plug-in uses the clipboard for data transfer,
 the clipboard itself can be only of limited use to copy/paste messages
-into the mailer window or elsewhere.
+into the mailer window or elsewhere. Newer versions of the plug-in
+save the original clipboard text before encryption/signing and the
+ext is restored after the GPG operation ends.
 
 @item
 The current version of the plug-in will NOT encrypt any attachments
@@ -97,7 +128,9 @@
 @item
 Even so the plug-in supports native line endings, which means you
 can properly exchange mails with Linux or Apple users, it is likely
-that there are problems with the charset.
+that there are problems with the charset. Newer versions of the
+plug-in try to handle UTF8 encoding correctly but even so it cannot
+be 100% assured that the receiver can handle the text in all cases.
 
 @item
 If you want to import keys or attach keys to a mail, you have to

Modified: trunk/init/init.rc
===================================================================
--- trunk/init/init.rc	2006-04-08 15:49:13 UTC (rev 14)
+++ trunk/init/init.rc	2006-04-10 05:39:33 UTC (rev 15)
@@ -85,14 +85,14 @@
             VALUE "Comments", "This is free software under the terms of the LGNU GPL v2.1\0"
             VALUE "CompanyName", "\0"
             VALUE "FileDescription", "GPGOE DLL loader\0"
-            VALUE "FileVersion", "0.6.0\0"
+            VALUE "FileVersion", "0.8.0\0"
             VALUE "InternalName", "Init\0"
             VALUE "LegalCopyright", "Copyright ©  2006 Timo Schulz\0"
             VALUE "LegalTrademarks", "\0"
             VALUE "OriginalFilename", "Init.exe\0"
             VALUE "PrivateBuild", "\0"
             VALUE "ProductName", "GPGOEInit\0"
-            VALUE "ProductVersion", "0.6.0\0"
+            VALUE "ProductVersion", "0.8.0\0"
             VALUE "SpecialBuild", "\0"
         END
     END

Modified: trunk/mk-w32-dist.sh
===================================================================
--- trunk/mk-w32-dist.sh	2006-04-08 15:49:13 UTC (rev 14)
+++ trunk/mk-w32-dist.sh	2006-04-10 05:39:33 UTC (rev 15)
@@ -1,15 +1,19 @@
 #!/bin/sh
 
-VER="0.7.1"
+VER="0.8.0"
 
 mkdir gpgoe 2> /dev/null
 cp init/gpgoeinit.exe gpgoe/
 cp src/gpgoe.dll gpgoe/
 cp po/de.gmo gpgoe/de.mo
 cp po/it.gmo gpgoe/it.mo
-cp README gpgoe/README.txt
 i586-mingw32msvc-strip gpgoe/gpgoe.dll
 i586-mingw32msvc-strip gpgoe/gpgoeinit.exe
+if [ -e doc/GPGOE ]; then
+  cp doc/GPGOE gpgoe/README.txt
+else
+  cp README gpgoe/README.txt
+fi
 rm -f gpgoe-$VER-exe.zip
 zip -Dr9 gpgoe-$VER-exe.zip gpgoe/
 rm -fr gpgoe/

Modified: trunk/src/GPGOE.rc
===================================================================
--- trunk/src/GPGOE.rc	2006-04-08 15:49:13 UTC (rev 14)
+++ trunk/src/GPGOE.rc	2006-04-10 05:39:33 UTC (rev 15)
@@ -85,14 +85,14 @@
             VALUE "Comments", "This is free software under the terms of the GNU LGPL v2.1\0"
             VALUE "CompanyName", "\0"
             VALUE "FileDescription", "GPG Outlook Express Plug-in\0"
-            VALUE "FileVersion", "0.7.0\0"
+            VALUE "FileVersion", "0.8.0\0"
             VALUE "InternalName", "GPGOE\0"
             VALUE "LegalCopyright", "Copyright © 2006 Timo Schulz\0"
             VALUE "LegalTrademarks", "\0"
             VALUE "OriginalFilename", "GPGOE.dll\0"
             VALUE "PrivateBuild", "\0"
             VALUE "ProductName", "GPGOE\0"
-            VALUE "ProductVersion", "0.7.0\0"
+            VALUE "ProductVersion", "0.8.0\0"
             VALUE "SpecialBuild", "\0"
         END
     END



More information about the Gpgoe-commits mailing list