doc/
[gpgme.git] / NEWS
1  * The LENGTH argument to gpgme_data_new_from_filepart changed its
2    type from off_t to the unsigned size_t.
3
4  * There is a Texinfo manual documenting the API.
5
6  * New interface gpgme_op_trustlist_end() to match
7    gpgme_op_keylist_end.
8
9  * Interface changes relative to the 0.3.0 release:
10 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11 gpgme_data_new_from_filepart    CHANGED: Type of LENGTH is size_t.
12 gpgme_op_trustlist_next         NEW
13 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
14
15 Noteworthy changes in version 0.3.0 (2001-12-19)
16 ------------------------------------------------
17  
18  * New interface gpgme_set_protocol() to set the protocol and thus the
19    crypto engine to be used by the context.  Currently, the OpenPGP
20    and the CMS protocols are supported.  They are specified by the new
21    preprocessor symbols GPGME_PROTOCOL_OpenPGP and GPGME_PROTOCOL_CMS.
22    A new context uses the OpenPGP engine by default.
23
24  * gpgme_get_engine_info() returns information for all crypto engines
25    compiled into the library.  The XML format has changed.  To
26    reliably get the version of a crypto engine, the <version> tag
27    after the appropriate <protocol> tag has to be looked for.
28
29  * New interface gpgme_engine_check_version(), obsoleting
30    gpgme_check_engine().  Check the version of all engines you are
31    supporting in your software.
32
33  * GpgmeKey lists the user ids in the order as they are returned by
34    GnuPG, first the primary key with index 0, then the sub-user ids.
35
36  * New operation gpgme_op_decrypt_verify() to decrypt and verify
37    signatures simultaneously.
38
39  * The new interface gpgme_op_keylist_end() terminates a pending
40    keylist operation.  A keylist operation is also terminated when
41    gpgme_op_keylist_next() returns GPGME_EOF.
42
43  * GPGME can be compiled without GnuPG being installed (`--with-gpg=PATH'),
44    cross-compiled, or even compiled without support for GnuPG
45    (`--without-gpg').
46
47  * GPGME can be compiled with support for GpgSM (GnuPG for S/MIME,
48    `--with-gpgsm=PATH').  It is enabled by default if the `gpgsm' is found
49    in the path, but it can also be compiled without support for GpgSM
50    (`--without-gpgsm').
51
52  * CryptPlug modules for GPGME are included and can be enabled at
53    configure time (`--enable-gpgmeplug').  There is one module which
54    uses the GnuPG engine (`gpgmeplug') and one module which uses the
55    GpgSM engine (`gpgsmplug').
56
57  * Interface changes relative to the latest 0.2.x release:
58 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
59 gpgme_key_get_as_xml            CHANGED: Sub-user ids reversed in order.
60 gpgme_key_get_string_attr       CHANGED: User ids reversed in order.
61 gpgme_key_get_ulong_attr        CHANGED: User ids reversed in order.
62 gpgme_get_engine_info           CHANGED: New format, extended content.
63 gpgme_engine_check_version      NEW
64 gpgme_decrypt_verify_start      NEW
65 gpgme_decrypt_verify            NEW
66 gpgme_op_keylist_next           NEW
67 gpgme_set_protocol              NEW
68 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
69
70
71 Noteworthy changes in version 0.2.3 (2001-09-17)
72 ------------------------------------------------
73
74  * New function gpgme_get_op_info which can be used to get the micalg
75    parameter needed for MOSS.
76
77  * New functions gpgme_get_armor and gpgme_get_textmode.
78
79  * The usual bug fixes and some minor functionality improvements.
80
81  * Added a simple encryption component for MS-Windows; however the
82    build procedure might have some problems.
83
84
85 Noteworthy changes in version 0.2.2 (2001-06-12)
86 ------------------------------------------------
87  
88  * Implemented a key cache.
89
90  * Fixed a race condition under W32 and some other bug fixes.
91
92
93 Noteworthy changes in version 0.2.1 (2001-04-02)
94 ------------------------------------------------
95
96  * Changed debug output and GPGME_DEBUG variable (gpgme/debug.c)
97
98  * Handle GnuPG's new key capabilities output and support revocation
99    et al. attributes
100
101  * Made the W32 support more robust.
102
103
104  Copyright 2001, 2002 g10 Code GmbH
105
106  This file is free software; as a special exception the author gives
107  unlimited permission to copy and/or distribute it, with or without
108  modifications, as long as this notice is preserved.
109
110  This file is distributed in the hope that it will be useful, but
111  WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
112  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.