1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
2011-12-01 Werner Koch <[email protected]>
NB: ChangeLog files are no longer manually maintained. Starting
on December 1st, 2011 we put change information only in the GIT
commit log, and generate a top-level ChangeLog file from logs at
"make dist". See doc/HACKING for details.
2009-12-08 Marcus Brinkmann <[email protected]>
* assuan.texi: Use our own copy of the setfont macro, as it takes
an extra argument since texinfo 4.13.
* assuan.texi (Contexts): Document ASSUAN_SPAWN_DETACHED.
2009-11-25 Marcus Brinkmann <[email protected]>
* assuan.texi (Data Types): Document assuan_fdopen.
2009-11-24 Marcus Brinkmann <[email protected]>
* assuan.texi: Remove assuan_disconnect, assuan_deinit_server.
Many smaller API fixes.
2009-11-10 Marcus Brinkmann <[email protected]>
* assuan.texi: Various fixes and updates for the new interface.
2009-11-05 Marcus Brinkmann <[email protected]>
* assuan.texi: Update assuan_pipe_connect, assuan_socket_connect
and assuan_init_socket_connect.
(Client code): Document ASSUAN_PIPE_CONNECT_FDPASSING and
ASSUAN_PIPE_CONNECT_DETACHED.
(Server code): Document ASSUAN_SOCKET_SERVER_FDPASSING and
ASSUAN_SOCKET_SERVER_ACCEPTED.
(Utilities): Update documentation of assuan_get_peercred.
* assuan.texi (External I/O Loop Server): Document change to
assuan_process_next.
2009-10-16 Marcus Brinkmann <[email protected]>
* assuan.texi: Remove documentation for thread support.
(assuan_pipe_connect_ext): Update prototype.
2009-10-14 Werner Koch <[email protected]>
* assuan.texi (Utilities): Describe assuan_get_command_name.
2009-09-21 Marcus Brinkmann <[email protected]>
* assuan.texi: Update to new API.
2009-09-01 Marcus Brinkmann <[email protected]>
* assuan.texi: (External I/O Loop Server): Document
assuan_process_done.
(assuan_register_post_cmd_notify): Change type of ERR from int to
gpg_error_t.
(assuan_set_error): Likewise.
(assuan_register_option_handler): Change types in callback handler
from int to gpg_error_t.
(assuan_inquire_ext): Likewise.
2009-08-28 Marcus Brinkmann <[email protected]>
* assuan.texi: Update to API changes.
(Data Types): Remove assuan_error_t.
(Utilities): Remove assuan_strerror.
2008-10-29 Marcus Brinkmann <[email protected]>
* assuan.texi: Change return type of callback handlers in
assuan_transact.
2007-11-14 Werner Koch <[email protected]>
* assuan.texi (Client code): Describe the new flag bit 7 of the
pipe_server_connect_ext function.
2007-10-18 Marcus Brinkmann <[email protected]>
* assuan.texi (Client requests): Document HELP.
2007-09-07 Moritz Schulte <[email protected]>
* assuan.texi (Client code): mention assuan_send_data() instead of
assuan_write_data().
2007-09-03 Marcus Brinkmann <[email protected]>
* assuan.texi: Fix prototype and documentation for
assuan_inquire_ext.
2007-08-24 Werner Koch <[email protected]>
* lgpl.texi: Replace by LGPLv2.1 version.
2007-08-09 Marcus Brinkmann <[email protected]>
* assuan.texi (External I/O Loop): New chapter.
2007-07-12 Werner Koch <[email protected]>
* assuan.texi (Utilities): Document that under W32 we return a
system handle.
2007-07-05 Werner Koch <[email protected]>
* lgpl.texi: New. Taken from COPYING.LIB and reformatted.
* gpl.texi: Updated to v3.
* assuan.texi (Utilities): Explain ASSUAN_CONFIDENTIAL.
2007-05-06 Marcus Brinkmann <[email protected]>
* assuan.texi: Clean up typos.
2006-10-31 Werner Koch <[email protected]>
* assuan.texi: Finished.
2003-12-18 Werner Koch <[email protected]>
* assuan.texi: Changed copyright to GPL because this is not a book
but useful documentation in other software too. Reworked
sectioning, updated list of error codes.
* gpl.texi: Added.
* fdl.texi: Removed.
2003-08-06 Werner Koch <[email protected]>
* lgpl.texi: New.
* gpl.texi: Removed.
* assuan.texi: Dropped requirement vor invariant sections,
front- and back-cover texts. Include lgpg.texi.
2003-02-18 Neal H. Walfield <[email protected]>
* Makefile.am: New file.
* fdl.texi: New file.
* gpl.texi: New file.
* assuan.texi: Imported from newpg.
Copyright 2003, 2006, 2007 Free Software Foundation, Inc.
This file is free software; as a special exception the author gives
unlimited permission to copy and/or distribute it, with or without
modifications, as long as this notice is preserved.
This file is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|