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