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:
parent
f15e944b98
commit
66e627bdae
@ -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
10
NEWS
@ -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
2
README
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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,
|
||||
|
@ -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);
|
||||
xfree (reader_table[slot].rdrname);
|
||||
reader_table[slot].rdrname = NULL;
|
||||
reader_table[slot].used = 0;
|
||||
xfree (list);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
463
po/pt_BR.po
463
po/pt_BR.po
File diff suppressed because it is too large
Load Diff
474
po/zh_CN.po
474
po/zh_CN.po
File diff suppressed because it is too large
Load Diff
474
po/zh_TW.po
474
po/zh_TW.po
File diff suppressed because it is too large
Load Diff
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user