93dd81eba416df91a90272083244a4d9d3e655f2
[claws.git] / ChangeLog.claws
1 2001-05-02 [alfons]
2
3         * src/gtkstext.c: fix for row up/down cursor navigation. 
4
5         0.4.66claws2
6         
7         * sync with 0.4.66cvs2
8
9 2001-05-02 [paul]
10
11         added add-sender-to-addressbook patch
12
13         * src/addressbook.c
14         * src/addressbook.h
15         * src/summaryview.c
16
17 2001-05-02 [sergey]
18
19         * src/alertpanel.h (AlertValue): added G_ALERT_VALUE_MASK,
20         G_ALERTDISABLE.
21
22         * src/alertpanel.c (alertpanel_create): new argument can_disable,
23         all existing callers changed to pass FALSE; create a check button
24         to disable the message.
25         (alertpanel_message_with_disable): new function.
26         (alertpanel_show): mask value with G_ALERT_VALUE_MASK.
27         (alertpanel_button_toggled): new function.
28         (alertpanel_button_clicked, alertpanel_close): set value using
29         G_ALERT_VALUE_MASK.
30
31         * src/prefs_common.h (PrefsCommon): new field gpgme_warning.
32
33         * src/prefs_common.c (prefs_privacy_create): new check button
34         checkbtn_gpgme_warning.
35
36         * src/main.c (main): moved preferences reading before gpgme
37         initialization; check prefs_common.gpgme_warning before giving the
38         GnuPG warning and set it to FALSE if the user wants to disable the
39         warning.
40
41 2001-05-02 [hiroyuki]
42
43         * src/prefs_display_headers.c: modified the layout and some labels.
44
45 2001-05-02 [sergey]
46
47         * src/prefs_account.c (prefs_account_fix_size): new function.
48         (prefs_account_create): call prefs_account_fix_size(); use
49         gtk_widget_show instead of gtk_widget_show_all (fixes too large
50         size when the window is shown for the first time).
51         (prefs_account_basic_create): changed layout of serv_table; moved
52         localmbox_entry above smtpserv_entry (logically it replaces
53         POP3/IMAP server).
54         (prefs_account_protocol_activated): set sensitivity of
55         nntpauth_chkbtn according to the protocol (in addition to
56         hide/show); commented out gtk_table_set_row_spacing() calls.
57         (prefs_account_nntpauth_toggled): do nothing if nntpauth_chkbtn is
58         not sensitive (fixes a bug with disabled username/password boxes
59         when editing POP3 account after NNTP with authentication).
60
61 2001-05-02 [hoa]
62
63         * src/account.c
64         * src/inc.c
65         * src/prefs_account.[ch]
66         * src/send.c
67                 removed local account without SMTP server
68                 added option to use mail command instead of a connexion
69                 to SMTP server when a local account is used
70         * src/prefs_headers.c
71                 fixed a bug
72         * src/news.c
73                 fixed a bug when connexion immediately closed
74
75 2001-05-01 [alfons]
76
77         0.4.66claws1
78         
79         * sync with 0.4.65
80
81 2001-05-01 [sergey]
82
83         * src/prefs_account.c (Basic, prefs_account_basic_create): new
84         widget nntpauth_chkbtn.
85         (prefs_account_protocol_activated): handle nntpauth_chkbtn
86         visibility.
87         (prefs_account_nntpauth_toggled): new function.
88
89         * src/news.c (news_session_new_for_folder): use NNTP
90         authentication only if ac->use_nntp_auth is set.
91
92 2001-05-01 [hoa]
93
94         * src/Makefile.am changed headers.[ch] in customheader.[ch]
95         * src/prefs_display_headers.c changed the UI
96         * src/prefs_headers.c changed account_name to account_id
97         * src/compose.c using customheader.h
98
99 2001-05-01 [hiroyuki]
100
101         * src/esmtp.c
102           src/news.c
103           src/nntp.c: changed sock_read() to sock_gets(), they've been left
104           unsynched.
105
106 2001-05-01 [hoa]
107
108         * src/Makefile.am added prefs_display_headers.[ch] headers_display.[ch]
109         * src/defs.h added HEADERS_DISPLAY_RC : name of the config file
110                 for displaying of headers
111         * src/grouplist_dialog.[ch] minor changes to remove warnings
112         * src/prefs_display_headers.[ch] dialog to choose the
113         headers to display in the mail viewer.
114         * src/headers.h correction of #define
115         * src/headers_display.[ch] configuration for displaying of headers.
116         * src/main.c read config of displaying of headers
117         * src/prefs_common.c add a button to access the config dialog
118                 for displaying of headers
119         * src/prefs_display_headers.[ch] dialog for configuration for
120                 displaying of the headers.
121         * src/prefs_headers.c cleaning of code
122         * src/procheader.c comments added to code
123         * src/textview.c changes to reorder the headers depending
124                 on the config for displaying of headers
125
126 2001-04-30 [alfons]
127
128         0.4.65claws7
129
130         * sync with 0.4.65cvs12
131
132         NOTE: nntp.c and news.c in claws and cvs branch differ significantly!
133
134 2001-04-30 [sergey]
135
136         * src/nntp.h (NNTPSockInfo): new field auth_failed.
137
138         * src/nntp.c (nntp_mode): return NN_AUTHREQ if sock->auth_failed
139         is set to force reconnection after authentication failure.
140         (nntp_gen_command): set sock->auth_failed on authentication
141         failure, or if sock->userid and sock->passwd are not set.
142
143         * src/news.c (news_session_new_for_folder): set userid=NULL if
144         password dialog is cancelled.
145
146 2001-04-30 [sergey]
147
148         * src/nntp.h (NNTPSockInfo): new type.
149
150         * src/nntp.c: all functions updated to use NNTPSockInfo instead of
151         SockInfo.
152         (nntp_open_auth, nntp_close): new functions.
153         (nntp_gen_command): new function to handle authentication; all
154         NNTP command functions updated to use it.
155         (nntp_authinfo_user, nntp_authinfo_pass): deleted.
156         (nntp_list): removed old useless code.
157
158         * src/news.h (NNTPSession): new field nntp_sock.
159
160         * src/news.c: all functions updated to use NNTPSockInfo instead of
161         SockInfo.
162         (news_session_new): new arguments (userid, passwd); made static;
163         use nntp_open_auth() if needed.
164         (news_session_destroy): use nntp_close() instead of sock_close().
165         (news_query_password): changed arguments.
166         (news_session_new_for_folder): new function.
167         (news_session_get): use news_session_new_for_folder().
168         (news_authenticate): deleted.
169         (news_get_uncached_articles): removed old authentication code.
170
171 2001-04-30 [sergey]
172
173         * src/news.c: reverted my previous changes (need to do NNTP
174         authentication in a cleaner way).
175         
176 2001-04-29 [sergey]
177
178         * src/news.c (news_nntp_group, news_nntp_list, news_nntp_xover,
179         news_nntp_post, news_nntp_mode): new functions (wrappers with
180         authentication support).
181         (news_get_article_cmd, news_get_article, news_get_header): new
182         argument "folder"; all callers changed.
183         (news_get_article_cmd): added authentication support.
184         (news_session_get): use news_nntp_mode() instead of nntp_mode().
185         (news_post): use news_nntp_post() instead of nntp_post().
186         (news_get_uncached_articles): use news_nntp_group() instead of
187         nntp_group() and news_nntp_xover() instead of nntp_xover();
188         removed old authentication code.
189         (news_get_group_list): use news_nntp_list() instead of nntp_list().
190
191         * src/nntp.c (nntp_list): return real error code instead of
192         hardcoded NN_ERROR.
193
194 2001-04-29 [sergey]
195
196         * configure.in: fixed wint_t typedef detection again
197
198 2001-04-28 [hoa]
199
200         * src/prefs_account.[ch], added A_LOCAL_CMD
201                 (send mail with mail command)
202         * src/send.c added function send_message_with_command()
203         * src/inc.c made a more secure get_spool() function with
204                 mktemp() but maybe mkstemp() or something more
205                 secure can be used.
206
207 2001-04-28 [alfons]
208
209         * src/textview.c, colorization of email addresses in headers
210
211         0.4.65claws6
212
213         * bug sync with sylpheed
214         * prefs_common.c: created date format ui for darko
215         * sync with 0.4.65cvs11
216         * configure.in: corrected to have the new gpg checks
217
218 2001-04-27 [alfons]
219
220         * completed sync with 0.4.65cvs10
221         * minor debug things added to gtkstext.c
222
223 2001-04-27 [darko]
224
225         * configure.in: remove check for availability of
226           strftime() as advised by Hiroyuki
227         * src/prefs_common.[ch], src/procheader.c:
228           synch strftime() code with Hiroyki's main branch
229
230 2001-04-26 [sergey]
231
232         * src/news.c: news_query_password(), news_authenticate(): new
233           functions.
234           news_get_uncached_articles(): added NNTP authentication
235           handling.
236         * src/nntp.[ch]: nntp_authinfo_user(), nntp_authinfo_pass():
237           new functions.
238         * src/prefs_account.c: prefs_account_protocol_activated():
239           enable userid and password fields for NNTP.
240
241 2001-04-26
242
243         * configure.in: check for availability of strftime()
244           [darko]
245         * src/prefs_common.[ch], src/procheader.c: use
246           strftime() for displaying date in summary pane if it
247           is available
248
249 2001-04-25
250
251         * more .cvsignore cleanups [alfons]
252
253 2001-04-25
254
255         * ac/sv-check-type.m4: new autoconf macro.
256         * configure.in: fixed wint_t typedef detection (did not work
257           with gcc-2.96).
258
259 2001-04-25
260
261         * acconfig.h: added USE_GTKGDK_XIM definition for autoheader.
262           [hiroyuki]
263
264 2001-04-24
265         * modified gtkstext.c : buggy cursor navigation fixed, 
266           and font descent also taken in account when drawing
267           cursor. [alfons]
268
269 2001-04-24 [hoa]
270         * added comments in src/news.c src/nntp.c
271         * added src/prefs_headers.[ch]
272         * added src/headers.[ch]
273         * modified compose.c to activate custom headers
274                 added function is_in_custom_headers
275         * modified prefs_account.[ch]
276                 added function prefs_account_customhdr_edit
277         * modified src/defs.h :
278                 added HEADERS_RC : name of the config file
279                 for the custom headers
280
281 2001-04-24
282
283     0.4.65claws5
284
285         * configure.in
286           src/gtkstext.[ch]
287           src/compose.c
288           src/Makefile.am
289           
290           added gtkstext with configure.in patch by Hiroyuki which
291           should fix the XIM detection [alfons]
292
293         * more clean up of cvs [alfons]
294
295                  * removed all Makefile.in files to attic.
296
297                  * updated all .cvsignores to really ignore things that could
298                    be unintentionally committed by a recursive commit.
299
300 2001-04-23 [hoa]
301         * added src/grouplist_dialog.[ch]
302         * changed src/folderview.c to call grouplist_dialog instead
303                 of inputdialog
304         * src/news.c :
305                 added functions news_reset_group_list
306                 and news_get_group_list
307         * src/nntp.c :
308                 added function nntp_list
309         * src/defs.h :
310                 added GROUPLIST_FILE : name of the newsgroup list cache file
311
312 2001-04-21
313
314         * added option to warn about queued messages on exit [sergey]:
315
316           * src/compose.c: compose_queue(): call folder_item_scan()
317             and folderview_update_item() after queueing.
318           * src/folderview.c: folderview_update_node(): draw the queue
319             folder in bold font if there are queued messages.
320           * src/mainwindow.c: queued_messages(): new function.
321             app_exit_cb(): display warning if there are queued messages
322             if warn_queued_on_exit is set.
323           * prefs_common.[ch]: add warn_queued_on_exit option.
324
325         * enhanced GnuPG key selection support [sergey]:
326
327           * src/select-keys.c: updated to newer version from Win32
328             branch with support for selecting arbitrary keys.
329           * src/prefs_account.c: added the Privacy tab to the account
330             options window.
331             prefs_account_privacy_create(),
332             prefs_account_sign_key_set_data_from_radiobtn(),
333             prefs_account_sign_key_set_radiobtn(): new functions.
334           * src/prefs_account.h: new preferences sign_key_type, sign_key_id.
335           * src/rfc2015.c: set_signers(): new function.
336             pgp_sign(): add the account parameter, call set_signers().
337             rfc2015_sign(): add the account parameter, pass it to pgp_sign().
338           * src/rfc2015.h: rfc2015_sign(): updated prototype.
339           * src/compose.c: pass the current account to rfc2015_sign().
340
341         * tag name claws added to prevent confusion with main branch [alfons]
342
343         * Sync with sylpheed-0.4.65cvs4 and made it compile. [sergey]
344
345         * autogen.sh: Added "--enable-maintainer-mode". [sergey]
346
347         * sync with recent sylpheed cvs. Untested though. [alfons]
348