1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-01-09 12:54:23 +01:00

About to release 1.3.92

This commit is contained in:
Werner Koch 2004-10-28 09:06:50 +00:00
parent f15e944b98
commit 66e627bdae
35 changed files with 6528 additions and 6255 deletions

View File

@ -1,3 +1,7 @@
2004-10-28 Werner Koch <wk@g10code.com>
Released 1.3.92.
2004-10-26 Werner Koch <wk@g10code.com>
* configure.ac: New option --disable-gnupg-iconv, define

10
NEWS
View File

@ -1,8 +1,16 @@
Noteworthy changes in version 1.3.92
Noteworthy changes in version 1.3.92 (2004-10-28)
-------------------------------------------------
* Added Russian man page. Thanks to Pawel I. Shajdo.
* libiconv is now used to support other character sets other than
UTF-8, Latin-1,-2 and KOI8-2. The W32 version will only work
correctly when iconv.dll is installed on the system. A binary
version is available at all GNU mirror sites under libiconv.
* gettext for Windows has been simplified. The MO files are now
distributed UTF-8 encoded and gpg translates on the fly.
Noteworthy changes in version 1.3.91 (2004-10-15)
-------------------------------------------------

2
README
View File

@ -1,7 +1,7 @@
GnuPG - The GNU Privacy Guard
-------------------------------
Version 1.3.91
Version 1.3.92
Copyright 1998, 1999, 2000, 2001, 2002, 2003,
2004 Free Software Foundation, Inc.

View File

@ -26,7 +26,7 @@ min_automake_version="1.7.9"
# Remember to change the version number immediately *after* a release
# and remove the "-cvs" or "rc" suffix immediately *before* a release.
AC_INIT(gnupg, 1.3.92-cvs, bug-gnupg@gnu.org)
AC_INIT(gnupg, 1.3.92, bug-gnupg@gnu.org)
# Set development_version to yes if the minor number is odd or you
# feel that the default check for a development version is not
# sufficient.

View File

@ -1,3 +1,7 @@
2004-10-28 Werner Koch <wk@g10code.com>
* apdu.c (open_pcsc_reader): Removed bad free in error handler.
2004-10-27 David Shaw <dshaw@jabberwocky.com>
* card-util.c, delkey.c, keygen.c, plaintext.c, keyedit.c,

View File

@ -1482,6 +1482,7 @@ open_pcsc_reader (const char *portstr)
}
strcpy (reader_table[slot].rdrname, portstr? portstr : list);
xfree (list);
list = NULL;
err = pcsc_connect (reader_table[slot].pcsc.context,
reader_table[slot].rdrname,
@ -1495,11 +1496,11 @@ open_pcsc_reader (const char *portstr)
{
log_error ("pcsc_connect failed: %s (0x%lx)\n",
pcsc_error_string (err), err);
pcsc_release_context (reader_table[slot].pcsc.context);
pcsc_release_context (reader_table[slot].pcsc.context);
xfree (reader_table[slot].rdrname);
reader_table[slot].rdrname = NULL;
reader_table[slot].used = 0;
xfree (list);
return -1;
}

View File

@ -58,7 +58,8 @@
# for supported character sets. This character set is only used for
# metadata and not for the actual message which does not undergo any
# translation. Note that future version of GnuPG will change to UTF-8
# as default character set.
# as default character set. In most cases this option is not required
# GnuPG is able to figure out the correct charset and use that.
#charset utf-8

464
po/be.po

File diff suppressed because it is too large Load Diff

476
po/ca.po

File diff suppressed because it is too large Load Diff

472
po/cs.po

File diff suppressed because it is too large Load Diff

462
po/da.po

File diff suppressed because it is too large Load Diff

472
po/de.po

File diff suppressed because it is too large Load Diff

474
po/el.po

File diff suppressed because it is too large Load Diff

468
po/eo.po

File diff suppressed because it is too large Load Diff

474
po/es.po

File diff suppressed because it is too large Load Diff

474
po/et.po

File diff suppressed because it is too large Load Diff

474
po/fi.po

File diff suppressed because it is too large Load Diff

474
po/fr.po

File diff suppressed because it is too large Load Diff

474
po/gl.po

File diff suppressed because it is too large Load Diff

474
po/hu.po

File diff suppressed because it is too large Load Diff

474
po/id.po

File diff suppressed because it is too large Load Diff

474
po/it.po

File diff suppressed because it is too large Load Diff

474
po/ja.po

File diff suppressed because it is too large Load Diff

474
po/nl.po

File diff suppressed because it is too large Load Diff

474
po/pl.po

File diff suppressed because it is too large Load Diff

468
po/pt.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

474
po/ro.po

File diff suppressed because it is too large Load Diff

474
po/ru.po

File diff suppressed because it is too large Load Diff

472
po/sk.po

File diff suppressed because it is too large Load Diff

476
po/sv.po

File diff suppressed because it is too large Load Diff

474
po/tr.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -47,7 +47,7 @@ cp ${bindir}/g10/gpg.exe gpg.exe
$STRIP gpg.exe
cp ${bindir}/g10/gpgv.exe gpgv.exe
$STRIP gpgv.exe
for name in hkp http finger; do
for name in hkp http ldap finger; do
cp ${bindir}/keyserver/gpgkeys_$name.exe gpgkeys_$name.exe
$STRIP gpgkeys_$name.exe
done