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