mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
Preparing the 2.0.3 release
This commit is contained in:
parent
f7c1efc880
commit
e0bbbb8a7f
@ -1,3 +1,7 @@
|
|||||||
|
2007-03-08 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
Released 2.0.3.
|
||||||
|
|
||||||
2007-01-31 Werner Koch <wk@g10code.com>
|
2007-01-31 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
Released 2.0.2.
|
Released 2.0.2.
|
||||||
|
4
NEWS
4
NEWS
@ -1,4 +1,4 @@
|
|||||||
Noteworthy changes in version 2.0.3
|
Noteworthy changes in version 2.0.3 (2007-03-08)
|
||||||
------------------------------------------------
|
------------------------------------------------
|
||||||
|
|
||||||
* By default, do not allow processing multiple plaintexts in a single
|
* By default, do not allow processing multiple plaintexts in a single
|
||||||
@ -10,7 +10,7 @@ Noteworthy changes in version 2.0.3
|
|||||||
|
|
||||||
* New --verify-option show-primary-uid-only.
|
* New --verify-option show-primary-uid-only.
|
||||||
|
|
||||||
* gpgconf may now read a global configuration file to select which
|
* gpgconf may now reads a global configuration file to select which
|
||||||
options are changeable by a frontend. The new applygnupgdefaults
|
options are changeable by a frontend. The new applygnupgdefaults
|
||||||
tool may be used by an admin to set default options for all users.
|
tool may be used by an admin to set default options for all users.
|
||||||
|
|
||||||
|
2
README
2
README
@ -3,7 +3,7 @@
|
|||||||
Version 2.0
|
Version 2.0
|
||||||
|
|
||||||
Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
||||||
2005, 2006 Free Software Foundation, Inc.
|
2005, 2006,2007 Free Software Foundation, Inc.
|
||||||
|
|
||||||
|
|
||||||
INTRODUCTION
|
INTRODUCTION
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# configure.ac - for GnuPG 1.9
|
# configure.ac - for GnuPG 1.9
|
||||||
# Copyright (C) 1998, 1999, 2000, 2001, 2002,
|
# Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
|
||||||
# 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
# 2006, 2007 Free Software Foundation, Inc.
|
||||||
#
|
#
|
||||||
# This file is part of GnuPG.
|
# This file is part of GnuPG.
|
||||||
#
|
#
|
||||||
@ -26,8 +26,8 @@ min_automake_version="1.9.3"
|
|||||||
# Remember to change the version number immediately *after* a release.
|
# Remember to change the version number immediately *after* a release.
|
||||||
# Set my_issvn to "yes" for non-released code. Remember to run an
|
# Set my_issvn to "yes" for non-released code. Remember to run an
|
||||||
# "svn up" and "autogen.sh" right before creating a distribution.
|
# "svn up" and "autogen.sh" right before creating a distribution.
|
||||||
m4_define([my_version], [2.0.2])
|
m4_define([my_version], [2.0.3])
|
||||||
m4_define([my_issvn], [no])
|
m4_define([my_issvn], [yes])
|
||||||
|
|
||||||
|
|
||||||
m4_define([svn_revision], m4_esyscmd([echo -n $( (svn info 2>/dev/null \
|
m4_define([svn_revision], m4_esyscmd([echo -n $( (svn info 2>/dev/null \
|
||||||
|
1130
po/pt_BR.po
1130
po/pt_BR.po
File diff suppressed because it is too large
Load Diff
1130
po/zh_CN.po
1130
po/zh_CN.po
File diff suppressed because it is too large
Load Diff
1130
po/zh_TW.po
1130
po/zh_TW.po
File diff suppressed because it is too large
Load Diff
@ -148,7 +148,7 @@ prepare_decryption (ctrl_t ctrl, const char *hexkeygrip, const char *desc,
|
|||||||
decrypt it and store it inoutbuf which has a maximum size of
|
decrypt it and store it inoutbuf which has a maximum size of
|
||||||
maxoutlen. The valid bytes in outbuf should be return in outlen.
|
maxoutlen. The valid bytes in outbuf should be return in outlen.
|
||||||
Due to different buffer sizes or different length of input and
|
Due to different buffer sizes or different length of input and
|
||||||
output, it may happen that fewer bytes are process or fewer bytes
|
output, it may happen that fewer bytes are processed or fewer bytes
|
||||||
are written. */
|
are written. */
|
||||||
static gpg_error_t
|
static gpg_error_t
|
||||||
decrypt_filter (void *arg,
|
decrypt_filter (void *arg,
|
||||||
@ -165,7 +165,7 @@ decrypt_filter (void *arg,
|
|||||||
|
|
||||||
if (maxoutlen < 2*parm->blklen)
|
if (maxoutlen < 2*parm->blklen)
|
||||||
return gpg_error (GPG_ERR_BUG);
|
return gpg_error (GPG_ERR_BUG);
|
||||||
/* make some space becuase we will later need an extra block at the end */
|
/* Make some space because we will later need an extra block at the end. */
|
||||||
maxoutlen -= blklen;
|
maxoutlen -= blklen;
|
||||||
|
|
||||||
if (parm->helpblocklen)
|
if (parm->helpblocklen)
|
||||||
@ -298,7 +298,7 @@ gpgsm_decrypt (ctrl_t ctrl, int in_fd, FILE *out_fp)
|
|||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* parser loop */
|
/* Parser loop. */
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
rc = ksba_cms_parse (cms, &stopreason);
|
rc = ksba_cms_parse (cms, &stopreason);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user