/[winpt]/trunk/Src/ChangeLog
ViewVC logotype

Contents of /trunk/Src/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 58 - (show annotations)
Wed Nov 2 13:36:03 2005 UTC (19 years, 3 months ago) by werner
File size: 175455 byte(s)
Add comments and a README.SVN

1 2005-11-02 Werner Koch <[email protected]>
2
3 * WinPT.cpp (WinMain): Disabled PTD version tests.
4 (check_crypto_engine): Fixed version check for scard.
5
6 * wptErrors.cpp (debug_end): Add dummy function.
7
8 * Makefile.am (code_files): Added wptCardEditCB.cpp and
9 wptKeyEditCB.cpp.
10
11 2005-10-31 Werner Koch <[email protected]>
12
13 * wptCurrWnd.cpp: Include wptVersion.h to get prototypes of PTD
14 functions.
15
16 * wptKeyEditDlgs.cpp: Include oleauto.h
17 * wptKeyEdit.cpp: Include time.h.
18 * wptRegistry.cpp (gpg_filetypes): New from ../Include/wptGPG.h.
19 * wptGPGUtil.cpp (gpg_manage_ownertrust): s/export/exportflag/.
20
21 * Makefile.am (code_files): Add wptGPGUtil.cpp, wptCardEdit.cpp,
22 wptKeyEdit.cpp and wptKeycache.cpp.
23
24 * wptPassphraseCB.cpp: Fixed spelling of wptKeylist.h
25 * wptImportList.cpp (implist_load): Use remove and not unlink.
26 * wptGPG.cpp: Fixed spelling of wptGpgCmds.h
27 * wptImportList.cpp (implist_load): Use remove and not unlink.
28 * wptKeyManager.cpp (km_http_import): Ditto
29 * wptMainProc.cpp: Include wptCrypto.h
30 * wptKeyManager.cpp: Ditto.
31 * wptFileManager.cpp: Ditto.
32 * wptImportList.cpp (parse_colon_key): Need to cast argument for
33 isdigit. Include ctype.h.
34 * wptGPG.cpp: Include shlobj.h.
35
36 Fixed double inclusion of windows.h.
37
38 * Makefile.am (bin_PROGRAMS): Don't build KeyManagerExe for now.
39 * wptKeylist.cpp (get_key_created): Broke up trigraph.
40 (get_key_status): Removed dangerous use of sprintf. Still other
41 flaws present, see comment.
42
43 * wptCardPCSC.c: Don't include winscard.h.
44 (pcsc_readerstate_t, pcsc_context_t): New. Changed call users to
45 use these types.
46 (PCSC_): Added a lot of constants, all taked from GnuPG 1.9.
47 (SCARD_S_SUCCESS): Changed all compares to test the value directly
48 against zero.
49
50 * WinPT.cpp: Include wptCrypto.h.
51 (WinMain): Don't shard S. Removed usunsed variable SIZE.
52 * Makefile.am (code_files): Actually add files by adding a first
53 backslash.
54 * wptMDSumDlg.cpp: Include wptCrypto.h.
55 * wptProxySettingsDlg.cpp: Included ctype.h.
56 * wptKeysigDlg.cpp: Fixed spelling of wptKeylist.h.
57 * wptKeysignDlg.cpp: Ditto
58 * wptKeyRevokersDlg.cpp: Ditto. Fixed spelling of wptW32API.h.
59 * wptKeyPropsDlg.cpp (keyprops_dlg_proc): Replaced unlink by remove.
60 Removed unused variable.
61 * wptClipVerifyDlg.cpp (show_notation_data): s/not/nota/ due to
62 silly c++ operator synonyms.
63 * wptKeyEditDlgs.cpp: Include time.h.
64 * wptClipDecryptDlg.cpp: Include wptCrypto.h to define PGP_MESSAGE.
65 * wptFileManagerDlg.cpp: Ditto.
66 (space_wipefrees_dlg_proc): Replaced unlink by remove; it doesn't
67 matter if it does an rmdir for a directory.
68
69 Fixed include of resource.h which is not anymore in the top
70 directory.
71
72 2005-10-28 Werner Koch <[email protected]>
73
74 * wptProxySettingsDlg.cpp (check_number): Cast isdigit() arg to
75 unsigned. Never ever use a possible signed char as argument for
76 ctype tests. An alternative is to first test using isascii ().
77 (keyserver_proxy_dlg_proc): Removed unused variable.
78
79 2005-10-27 Timo Schulz <[email protected]>
80
81 * wptKeyPropsDlg.cpp (get_validity): Take care of disabled keys.
82 * wptKeylist.cpp (keylist_add_key): Check global key flag to
83 see if the key is disabled and not each subkey.
84 (seclist_init): Likewise.
85 * wptClipDecryptDlg.cpp (gpgme_op_clip_decrypt): Use
86 gpgme_op_decrypt_verify.
87 (clip_decrypt_dlg_proc): Fixed fingerprint
88 to keyid conversation. This also fixes a crash.
89 * wptClipVerifyDlg.cpp (clip_verify_dlg_proc): Likewise.
90 * wptKeyEditDlgs.cpp (do_editkey_expire): Ask if the key
91 already expired if the user wants to change the date.
92 * wptGPGPrefsDlg.cpp (gpgprefs_dlg_proc): Replace old
93 'v3 sig' option with the 'ask cert level' option. Sync
94 with global preferences.
95 * wptKeySignDlg.cpp (keysign_dlg_proc): Watch if the
96 gpg.conf contains 'ask-cert-level'. If not disable button.
97 * wptKeySigDlg.cpp (keysig_dlg_proc): Automatically disable
98 the button when the key is available.
99 Reload key directly, not the entire cache.
100
101 2005-10-26 Timo Schulz <[email protected]>
102
103 * wptFileManager.cpp (is_floppy_disc): Prevent very unlikely but
104 possible overflow.
105 (is_openpgp_ext): Compare case insentensive.
106 (add_single_file): New.
107 (fm_add_opened_files): Support multi file selection.
108 * wptKeyPropsDlg.cpp (do_change_ownertrust): Removed.
109 * wptKeyManager.cpp (km_enable_disable_key): Do not set cache
110 reload flag. Just update the single key.
111 * wptFileManagerDlg.cpp (file_encrypt_dlg_proc): Remove static var
112 and disable anonymize recipient for now.
113
114 Begin to port code to GCC. Fix all warning issued by the gcc
115 compiler.
116
117 2005-10-25 Timo Schulz <[email protected]>
118
119 * wptGPGUtil.cpp (create_process): Hide window.
120 * wptKeyPropsDlg.cpp (get_photo_tmpname): New.
121 * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Remove
122 static var 'enable'.
123 * wptKeygenDlg.cpp (keygen_dlg_proc): Likewise.
124 (gpg_genkey_params): Make sure all primary keys are capable
125 for signing and certification.
126 * wptKeySigDlg.cpp (is_sig): If no item is selected, return 0.
127 * wptGPG.cpp (gnupg_access_keyring): Check return value for
128 NULL. Noted by Ralf.
129 (get_gnupg_prog): Simplified.
130 (check_homedir): Fixed. Return 0 when the dir is successfully created.
131 * wptKeyManagerDlg.cpp (km_file_import): Use the hourglass to
132 indicate a pending GPG process.
133 * wptFileManager.cpp (op_begin, op_end): New. Indicate an start
134 and and of an operation. For now just the cursor changes.
135 (fm_parse_command_line): Remove debug output. Thanks to Ralf again.
136 * WinPT.cpp (WinMain): Check if there is already an instance and
137 set a variable early as possible.
138 (load_gettext): If a previous instance was found, do not output
139 any errors. Kudos to Ralf.
140
141 2005-10-24 Timo Schulz <[email protected]>
142
143 * wptPassphraseCB.cpp (passphrase_callback_proc): Allow to use
144 pre-defined recipients.
145 (release_gpg_passphrase_cb): Release recipients.
146 * wptKeyPropsDlg.cpp (keyprops_load_photo): Set photo-id
147 validity if needed.
148 (keyprops_dlg_proc): Issue a warning if the photo is valid.
149
150 2005-10-23 Timo Schulz <[email protected]>
151
152 * wptFileManager.cpp (fm_get_file_type): Detect detached sigs.
153 * wptKeyList.cpp (keylist_cmp_cb): Take care of expired/revoked keys.
154 (get_ext_validity): New.
155 * wptFileVerifyDlg.cpp (file_verify_dlg_proc): Several cleanups.
156 * wptClipEditDlg.cpp (load_clipboard): Factored out some code into
157 this function.
158 (load_clipboard_from_file): Likewise.
159 (save_clipboard_to_file): New.
160 * wptKeyManagerDlg.cpp (keyprops_dlg_proc): Fix stack overflow.
161
162 2005-10-22 Timo Schulz <[email protected]>
163
164 Localized a lot of more strings.
165
166 * wptMainProc.cpp (load_smartcard): New.
167 * wptFileManager.cpp (fm_parse_command_line): Simplify code.
168 (fm_check_armor_type): Add new arg. Change all callers.
169 (fm_get_file_type): Likewise.
170 * wptKeyPropsDlg.cpp (display_key_info): New.
171 (keyprops_show_photo): Factored out some code into..
172 (keyprops_load_photo): ..this function.
173
174 2005-10-21 Timo Schulz <[email protected]>
175
176 * wptFileManagerDlg.cpp (file_manager_dlg_proc): Use
177 WM_INITPOPUPMENU to localize popup menu texts.
178 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Likewise.
179 * wptClipSignDlg.cpp (one_key_proc): Use wipememory instead of memset.
180
181 2005-10-20 Timo Schulz <[email protected]>
182
183 Now WinPT depends on GPG 1.4.3 and GPGME 1.2.0.
184
185 * wptPassphraseCB.cpp (passphrase_cb): Complete card support.
186 * wptCardEdit.cpp (genKey): Handle cancel case.
187 * keycache.c: Renamed into...
188 * wptKeyCache.cpp: ...this.
189 * wptW32API.cpp (set_menu_text): Removed unused code.
190 (set_menu_text_bypos): New.
191 * wptCrypto.h: New.
192 * wptMainProc.cpp (winpt_main_proc): Complete localize
193 menu texts.
194 * wptErrors.cpp (log_debug): Use a static var so the file
195 is only opened once.
196 (debug_end): Cleanup. Currently just close the log file.
197 * wptErrors.h (wipememory): New.
198 (sfree_if_alloc): Use it here.
199 * WinPT.cpp (WinMain): Display the min. GPGME version which
200 is needed in case of an error.
201
202 2005-10-17 Timo Schulz <[email protected]>
203
204 Free all memory returned by the GPGME dll with gpgme_free ().
205
206 s/GPG_ERR_CARD_REMOVED/GPG_ERR_CARD_NOT_PRESENT.
207
208 * wptKeyEdit.cpp (getCardStatus): Remove dummy key.
209 (list_handler): With user interaction to allow to insert
210 the card into the reader.
211 * wptKeyEditCB.cpp (gpg_edit_card): Likewise.
212 (common_card_handler): Fixed incorrect command string.
213 * wptKeyPropsDlg.cpp (get_card_type): New.
214 (keyprops_dlg_proc): Show card information if present.
215 * wptFileManager.cpp (secret_key_available): Make the code faster.
216
217
218 2005-10-16 Timo Schulz <[email protected]>
219
220 * wptPassphraseCB.cpp (passphrase_cb): Fix problem
221 with hanging GPG process on cancel.
222 * keycache.c (gpg_keycache_release): Release all objects.
223
224 2005-10-15 Timo Schulz <[email protected]>
225
226 * wptCardEdit.cpp (setResult, getResult): New.
227 (reset): New.
228 (getCardStatus): Check return codes and release all objects
229 in case of errors.
230 * wptCardEditCB.cpp (change_pin_handler): Call reset()
231 before quit.
232 (editcard_handler): Likewise.
233 (common_card_handler): New.
234 * wptCardDlg.cpp (card_changepin_dlg_proc): Also unmask
235 the old PIN when 'Hide Typing' is disabled.
236 * wptPassphraseCB.cpp (passphrase_cb): The card detection
237 works again. Support to re-enter passphrase.
238
239 2005-10-14 Timo Schulz <[email protected]>
240
241 * wptCardDlg.cpp (card_status): New fields for the
242 fingerprint creation time. Display card info as title.
243 (get_printable_version): New.
244 * wptCardEditCB.cpp (editcard_handler): Fix problem
245 with the counter comparison.
246
247 2005-10-11 Timo Schulz <[email protected]>
248
249 Port to GPGME basically finished.
250
251 2005-09-20 Timo Schulz <[email protected]>
252
253 * wptFileManagerDlg.cpp (file_secdel_confirm_dlg_proc):
254 Do not use gpgme_recipients_t but the listview directly
255 to add the selected files.
256
257 2005-09-07 Timo Schulz <[email protected]>
258
259 * Make sure all GetOpenFileName filters are terminated by \0\0.
260
261 2005-09-01 Timo Schulz <[email protected]>
262
263 * wptW32API.cpp (center_window): New argument for parent window.
264 Change all callers.
265 (center_window2): Likewise.
266 * GPGME now can read gpgProgram entries with 'REG_EXPAND_SZ'.
267 * wptGPG.cpp (gnupg_backup_options): Remove param. One backup
268 file is enough. Changed all callers.
269
270 2005-08-15 Timo Schulz <[email protected]>
271
272 * wptKeyEditDlgs.cpp (do_editkey_showpref): Take care of v3 keys.
273 * wptGPGOptDlg.cpp (gpgopt_dlg_proc): Fixed name of title.
274 * Make sure the passphrase is always overwritten before it is
275 freed (or the function returns).
276 * wptKeyPropDlg.cpp (get_pref_cipher): New.
277 (keyprops_dlg_proc): Use it here.
278
279 2005-08-06 Timo Schulz <[email protected]>
280
281 * wptGPGME.cpp (keycache_update): Reload OpenPGP parts
282 of the secret key.
283 (keycache_init): cache name of secret keyring.
284 * wptKeyList.cpp (keylist_upd_key): Do not add long keyid.
285 (get_key_type): Do not assume 'ultimate' means key pair.
286 * wptKeyEditDlgs.cpp (diff_time): New.
287 (keyedit_addsubkey_dlg_proc): Changed design and use
288 diff_time. Drop checks for invalid keylength (< 1024, > 4096)
289 because the combo box automatically handles this.
290 * wptKeyManager.cpp (km_set_implicit_trust): Return error code.
291 * wptGPG.cpp (get_backup_name): New.
292 (gnupg_backup_keyrings): Rotate backup names, from 0..3.
293 * wptClipImportDialog.cpp (clip_import_dlg_proc): Free memory.
294 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Use 0x short keyid and
295 not the long keyid.
296
297 2005-08-05 Timo Schulz <[email protected]>
298
299 * wptListView.cpp (listview_set_item2): New.
300 * wptKeyManager.cpp (km_check_if_protected): Directly
301 retrieve gpgme_key_t from the list.
302 (km_check_key_status): Likewise.
303 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Also use
304 a human-readable name for secret key export.
305 Reload just the keys which were affected by updates
306 (edit-key).
307 (update_key): New.
308 * wptKeyList.cpp ((keylist_upd_key): Stripped down
309 version of keylist_add_key.
310 * wptKeyEditDlgs.cpp (keyedit_main_dlg_proc): Do not
311 reload the keycache here, just flag 'update'. Give the
312 control to the calling dialog.
313 * wptKeySignDlg.cpp (keysign_dlg_proc): Use winpt_key_t
314 as parameter. Changed all callers.
315 Add date of expiration to the key info.
316 (get_expire_date): New.
317 Use a checkbox to allow to ask for the cert level.
318 * wptClipEncryptDlg.cpp (clip_encrypt_dlg_proc): Do no reload
319 the cache.
320
321 2005-08-04 Timo Schulz <[email protected]>
322
323 * wptListView.cpp (listview_scroll): New.
324 (listview_get_item2): New.
325 * wptClipEncryptDlg.cpp (clip_encrypt_dlg_proc): If the
326 item was found, make it visible with scrolling.
327 * wptKeyManager.cpp (km_find_key): New.
328 (keylist_subclass_proc): Support to handle some acceleators.
329 Strg+{C, P, F, A}.
330 (km_get_key_status): Get the gpgme_key_t object directly
331 from the list.
332 * wptGPGPRefsDlg.cpp (gpgprefs_dlg_proc): Also try to set
333 the config file (if it exists).
334 * wptKeySignDlg.cpp (keysign_dlg_proc): Use easier code
335 to handle the click->activate situation.
336 * wptPassphraseCB.cpp (passphrase_callback_proc): Likewise.
337 Support to check the passphrase quality.
338 * wptPassphraseDlg.cpp (passwd_dlg_proc): Likewise.
339 (request_passphrase): Rename 'init' to 'flags' to allow more
340 options.
341 * wptMAPI.cpp: Check all *alloc results.
342 * wptKeyGenDlg.cpp (keygen_dlg_proc): Use a rudimentary
343 passphrase quality check.
344 * wptMDSumDlg.cpp (mdsum_dlg_proc): Use md5/sha1sum file
345 format and allow to save the checksum in a file.
346 * wptKeyRevokeDlg.cpp (key_revoke_dlg_proc): Issue a warning
347 when the PGP mode is disabled.
348 wptKeyEditDlgs.cpp (do_editkey_primary): Return if just
349 one user-ID exists.
350 (keyedit_dlg_proc): Fixed index problem.
351 * wptKeyPropsDlg.cpp (get_validity): New.
352 (keyprops_dlg_proc): Actually show extended validity if possible.
353 * wptKeyList.cpp (get_key_fpr): Support for old v3 format.
354 (do_addkey): Use listview_add_item2 to store key as opaque
355 param inside the list.
356 * wptFileStatDlg.cpp (get_digest_algo): Add SHAxxx.
357 (file_stat_dlg_proc): End dialog if no PGP data was found.
358 (do_list_packets): Return the number of valid PGP packets
359 of the file.
360
361 2005-08-02 Timo Schulz <[email protected]>
362
363 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Instead of
364 using 'Default Keyserver' add the real keyserver name to
365 the menu.
366 The rebuild command does not reload the cache any longer.
367 Use ATTR_NAME + .asc as the filename and not keyid + .asc.
368 * wptProxySettingsDlg.cpp (enable_proxy_auth): New.
369 (keyserver_proxy_dlg_proc): Changed the design a little
370 and add some additional sanity checks.
371 * wptGPGParser.cpp (commit_gpg_options): Use W32 line endings.
372 This fixes the problem that the GPG option dialog does not show
373 very nice lines.
374 * wptGPGOptDlg.cpp (gpgopt_dlg_proc): s/options/config.
375 * wptKeySigDlg.cpp (keysig_dlg_proc): If a single key is selected
376 check for 'NOKEY' before asking a keyserver.
377 * wptKeyManager.cpp (km_delete_keys): Do not set 'refresh' flag.
378 If a lot of keys were selected, ask if the user wants to confirm
379 each delete procedure or allow to cancel the operation.
380 * wptFileManagerDlg.cpp (file_import_dlg_proc): Display how much
381 keys the file contain.
382 * wptKeyList.cpp (get_key_algo): Beautified.
383 (get_key_status): Drop the "[XYZ] Unknown" format, it is too
384 confusing for users.
385 * wptKeyManager.cpp (km_check_key_status): Adjustments for the
386 new code.
387 (km_check_for_seckey): Reset utrust parameter. Return -1 for
388 invalid (exp+rev+dis) keys.
389
390 2005-08-01 Timo Schulz <[email protected]>
391
392 * wptKeyserver.cpp (kserver_urlencode): Use unsigned for all given
393 sizes.
394 (check_IP_or_hostname): New.
395 (kserver_load_conf): Correct finger URL parsing problem.
396 (port_from_proto): New.
397 (keyserver_load_conf): Guess the port.
398 (keyserver_set_default): Allocate new buffer.
399 (kserver_load_conf): Likewise.
400 * wptHTTP.c (parse_reqline, parse_request): Removed.
401 Use WinPT error code and remove all unused code.
402 * wptKeyserverDlg.cpp (keyserver_dlg_proc): Properly handle finger URLs.
403 * wptProxySettingsDlg.cpp (read_proxy): Simple check for
404 invalid host/IP addresses.
405 * wptGPG.cpp (multi_gnupg_path): Return allocated buffer.
406 Changed all callers.
407 * wptPreferencesDlg.cpp (prefs_dlg_proc): At the first start,
408 automatically set 'backup to homedir'.
409 * WinPT.cpp (WinMain): Use desktop window as the parent window
410 to load 'first-start' dialogs.
411 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Do not set 'refresh'
412 flag after deleting keys.
413 * wptFirstRunDlg.cpp (first_run_dlg_proc): Use a new structure
414 for passing the arguments.
415 * wptGPGPrefsDlg.cpp (gpgprefs_dlg_proc): Do not store "" for
416 the OptFile. This was responsible for a lot of 'General Errors'
417 after the first start related to key caching.
418 Automatically set the gpg binary if possible.
419
420 2005-07-22 Timo Schulz <[email protected]>
421
422 * wptMainProc.cpp (winpt_main_proc): Take care for shutdown
423 messages and make sure WinPT make a keyring backup in this case.
424 * wptGPGME.cpp (keycache_reload): Do not rebuild the signature
425 cache each time. Just do it on startup.
426 * wptKeyManager.cpp (km_key_is_v3): Use new ATTR_VERSION.
427 * wptKeyEditDlgs.cpp (keyedit_main_dlg_proc): Assume the v3 flag
428 was set by the calling function.
429 * wptKeyGenDlg.cpp (keygen_wizard_dlg_proc): Ask for backups.
430 (keygen_dlg_proc): Only add the generated key to the keycache
431 and do not reload the entire cache.
432 * wptKeyManager.cpp (km_delete_keys): Store the number of keys
433 because in each loop iteration it will be new calculated.
434 * wptListView.cpp (listview_del_items): Likewise.
435 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Directly add the
436 generated key to the list instead of reloading the entire cache.
437 * wptKeyEditDlgs.cpp (parse_preflist): Support fpr SHAnnn.
438
439 2005-05-09 Timo Schulz <[email protected]>
440
441 * wptCommonDlg.cpp (http_file_dlg_proc): Renamed to..
442 (http_dlg_proc): ..this.
443 (get_keyserver_URL_dlg): New.
444 (check_URL): New.
445 * wptKeyEditDlgs.cpp (keyedit_set_pref_keyserver): New.
446 (keyedit_main_dlg_proc): Avoid massive keycache reloads, just reload
447 the single key.
448 * wptKeyRevokersDlg.cpp (key_revokers_dlg_proc): Show the key
449 properties of the selected desig. revoker.
450 * wptVerifyList.cpp (verlist_build): Increase the column
451 size of 'keyid'.
452 * wptGPGME.cpp (keycache_update): New.
453 * wptKeySigDlg.cpp (keysig_dlg_proc): Update the key if a signature
454 was deleted.
455 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Zeroing the key struct
456 before we set any values.
457
458 2005-05-03 Timo Schulz <[email protected]>
459
460 * wptFileManager.cpp (fm_parse_command_line): Handle
461 'SYMKEYENC' files. Thanks to the user who reported it.
462 * wptKeyEditDlgs.cpp (do_find_userid): Optionally return the context.
463 (showpref_dlg_proc): New.
464 (keyedit_main_dlg_proc): Support SHOWPREF.
465 (userid_list_init): New field 'Email'. Split userID into 'Name' + 'Email'.
466 (do_add_new_userid): Adjust for new ListView.
467 (do_find_userid): Use email for searching.
468 (parse_preflist): New.
469
470 2005-04-19 Timo Schulz <[email protected]>
471
472 * wptKeyserver.cpp (kserver_update_proxyuser): Fixed
473 buffer overflow that occurred when the proxy password
474 is > 29 chars. Thanks to the friendly user who reported this.
475 (kserver_search): Handle the case the key is revoked. Thanks
476 to Ralf.
477 (kserver_connect): More logging.
478 (kserver_sendkey): Likewise.
479 * wptProxySettingsDlg.cpp (check_number): New.
480 (read_proxy): Check the entered port number.
481 * wptKeySignDlg.cpp (sig_class_dlg_proc): Check default button.
482 * wptW32API.cpp (get_folder_dlg): Free memory.
483
484 2005-04-11 Timo Schulz <[email protected]>
485
486 * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Reset
487 'enable' flag always at the begin.
488 * wptClipDecryptDlg.cpp (clip_decrypt_dlg): Show correct
489 key trust. Noted by a friendly user.
490 * wptListView.cpp (listview_add_item_pos): New.
491 * wptKeyEditDlgs.cpp (get_subkey_fingerprint): Due to
492 the fact that GPG does not return the fingerprint of
493 the generated subkey any longer, we need to get it manually.
494 Thanks to Maxime Brandt.
495 (keyedit_addsubkey_dlg_proc): If key size too large, ask
496 if this was a mistake.
497 (keyedit_add_subkey): Use it here.
498 (do_add_new_subkey): Fix list contrl insertion.
499 * wptTypes.h (DEFAULT_KEYSIZE): Define new default keysize constant.
500
501 2005-04-04 Timo Schulz <[email protected]>
502
503 * WinPT.cpp (check_crypto_engine): Correct version
504 check. Noted by Werner.
505
506 2005-03-22 Timo Schulz <[email protected]>
507
508 * WinPT.cpp (WinMain): --debug as an alias for --enable-debug.
509 (enable_mobile_mode): New.
510 * wptKeyEditDlg.cpp (keyedit_addsubkey_dlg_proc): Use new
511 ID's for adding subkeys.
512
513 2005-03-06 Timo Schulz <[email protected]>
514
515 * wptKeySignDlg.cpp (do_fill_seckeylist): Skip secret keys without
516 a public key. Noted by Kurt Fitzner.
517
518 2005-03-04 Timo Schulz <[email protected]>
519
520 * GPG asks twice for the new PIN. Thanks to Achim.
521 * wptCardDlg.cpp (card_changepin_dlg_proc): Reset the 'safety' pin also.
522 Only check the passphrase if the backup flag is enabled. Again thanks to
523 Achim.
524
525 2005-03-03 Timo Schulz <[email protected]>
526
527 * wptCardDlg.cpp (card_changepin_dlg_proc): Add item to re-type the
528 new PIN. Suggested by Achim.
529 Support to show the unmasked PIN.
530 Modified TAB-order.
531 * wptPINDlg.cpp (pin_cb_dlg_proc): Show unmasked PIN.
532
533 * Fixed wrong GPG --command-fd strings. Thanks to Achim.
534
535 2005-02-23 Timo Schulz <[email protected]>
536
537 * wptKeyserver.cpp (check_hkp_response): Support for HTTP/1.1.
538 (kserver_search): Be more strict.
539 * WinPT.cpp (WinMain): Enable FM progress by default.
540 * wptFileManagerDlg.cpp (file_preferences_dlg_proc): New.
541 (fm_parse_files): Use progress dialog only if it is
542 enabled.
543
544 2005-02-07 Timo Schulz <[email protected]>
545
546 * wptFileManager.cpp (fm_parse_files): Do not use the progress dialog
547 for signing and verifying. But this does not fix the problem tha the
548 dialog sometimes stay and is not destroyed.
549
550 2005-02-04 Timo Schulz <[email protected]>
551
552 * wptProgressDlg.cpp (progress_cb_thread): Set root window if available.
553 If the progress window survives by accident, it will be closed when the
554 File Manager (root window) is closed.
555
556 2005-02-02 Timo Schulz <[email protected]>
557
558 * wptPassphraseDlg.cpp (passwd_dlg_proc): use center_window2, otherwise
559 it is invisible.
560 * wptPassphraseCB.cpp (passphrase_callback_proc): Do not cache symmetric
561 passphrases.
562 * Enable the progress dialog for symmetric encryption.
563 * wptFileManager.cpp (fm_check_file_type): Also check for 'SYMKEYENC' in
564 FM_ENCRYPT mode.
565 * WinPT.cpp (WinMain): SETUP_EXISTING implemented.
566 * wptGPGPrefsDlg.cpp (gpgprefs_dlg_proc): Reset 'Locale directory' when
567 no value is entered.
568
569 2005-01-26 Timo Schulz <[email protected]>
570
571 * wptGPG.cpp (multi_gnupg_path): Zero buffer before use.
572 * wptKeyManagerDlg.cpp: Add 'Select All' feature.
573 Move 'Edit->Key' to 'Key->Edit'.
574 * wptFileManagerDlg.cpp: Likewise.
575 * wptKeyPropsDlg.cpp (keyprops_show_photo): Show the JPG photo directly.
576 * wptKeyManager.cpp (spawn_loadimage): Removed.
577 (km_show_photo): Removed.
578 * wptRevokersDlg.cpp (revokelist_init): Fixed index.
579 * wptErrors.cpp (winpt_strerror): Show system error for registry
580 related problems.
581
582 2005-01-25 Timo Schulz <[email protected]>
583
584 * wptCardDlg.cpp (card_keygen_dlg_proc): Make 'backup keys' default
585 and that all values are 7-bit ASCII.
586 Use '*' for the passphrase field.
587 * wptGPG.cpp (multi_gnupg_path): New.
588 (get_gnupg_path): Use it here.
589 (check_homedir): Likewise.
590 * wptKeyserverDlg.cpp (save_default_ks): Fix problem that the port
591 is actually set.
592 * wptFileManager.cpp (fm_clearsign_8bit): New.
593 (fm_parse_files): Check if the file to clearsign is really 7-bit.
594 Thanks to djek.
595 (fm_set_ftype): Factored out some code from...
596 (fm_add_dropped_files): ...here. Simplied the code.
597 (fm_add_dir_files): New.
598 * Removed MD5 from MyGPGME and the new default sym cipher is AES.
599 * wptProgressDlg.cpp (progress_dlg_proc): Use additional HAND var
600 to track the window handle.
601 (progress_cleanup): Try to close tracking handle first.
602
603 2005-01-21 Timo Schulz <[email protected]>
604
605 * wptFileVerifyDlg.cpp (file_verify_dlg_proc): Allow to retrieve keys
606 which are not in the keyring. Suggested by djek.
607 * wptFileManagerDlg.cpp (filemanager_dlg_proc): Implement basic
608 'Always on Top'.
609 Allow to send encrypted files via MAPI.
610 * wptClipVerifyDlg.cpp (clip_verify_dlg_proc): Only reload the keycache
611 if the HKP retrieval succeeded.
612 * wptFileStatDlg.cpp (do_list_packets): Make sure that the pkt pointer
613 is not NULL.
614 * wptKeyManager.cpp (km_clip_export): Prefix the clipboard text with
615 a header similar to 'gpg -k name'.
616 * wptErrors.cpp (log_box): Use msg_box to make sure the box is visible
617 with 'Always on Top' windows.
618 * wptFileManager.cpp (fm_parse_files): Set progress callback for
619 wiping files.
620 (fm_add_opened_files): Do not add the file in case of an error.
621 * wptKeyserverDlg.cpp (kserver_get_port): New.
622 (save_default_ks): Save port.
623 * wptKeyserver.cpp (set_default_kserver): Get port or use default.
624 (kserver_connect): Logging.
625 (kserver_send_request): Likewise. Thanks to Markus.
626 * wptError.cpp (w32_fmt_msg): New.
627 (winpt_strerror): Show the W32 API error if the hotkey could not
628 be registered.
629
630 2005-01-20 Timo Schulz <[email protected]>
631
632 * wptKeycacheDlg.cpp (keycache_dlg_proc): Be less strict with the
633 keyring check. If the file exists, it is enough.
634 * wptKeyring.cpp (kserver_load_conf): Use C++ new for proxy_host.
635 Several cleanups and allow to specify the port of the keyserver.
636 * wptMainProc.cpp (winpt_main_proc): Handle WM_CLOSE to make sure
637 the application terminates clearly when Windows shutdown.
638
639 2005-01-10 Timo Schulz <[email protected]>
640
641 * WinPT.cpp (load_gettext): New.
642 (WinMain): Use it here to load it before --keymanager. Thanks to Ralf.
643
644 2005-01-08 Timo Schulz <[email protected]>
645
646 * Applied the patches to make the source G++ compatible.
647 * wptKeyserver.cpp (kserver_load_conf): Use the stripped string.
648 * wptKeygenDlg.cpp (keygen_dlg_proc): Default key size is now 2048.
649 * wptFileManagerDlg.cpp (fill_drive_combobox): Do not add CD-Roms.
650
651 2005-01-07 Timo Schulz <[email protected]>
652
653 * wptKeyserver.cpp (skip_type_prefix): Support all URL schemes.
654 (finger_recvkey): Use skip_type_prefix and prevent buffer overflows.
655 (ldap_recvkey): Likewise.
656 (check_hkp_response): Be more liberal with error strings.
657 (kserver_connect): Prevent buffer overflow and use the right return
658 code for inet_addr().
659 (kserver_search_chkresp): New.
660 (kserver_search): Fixed. Now it works with modern keyservers.
661 * wptKeylist.cpp (seclist_init): Add new flags param.
662 * wptFileManagerDlg.cpp (file_encrypt_dlg_proc): Use short secret key
663 listing.
664 * wptClipboardSignEncDlg.cpp (clip_signenc_dlg_proc): Likewise.
665 * wptMainProc.cpp (winpt_main_proc): GPGME cleanup.
666 * WinPT.cpp (WinMain): call GPGME init.
667 Reword the 'you have no keyring' problem and revamp the first run dialog.
668 * wptGPG.cpp (gnupg_access_keyring): New.
669 (gnupg_check_keyring): Removed unused code.
670 * wptFirstRunDlg.cpp (first_run_dlg_proc): Adjust dialog for the
671 new texts and remove unused elements.
672 * wptKeyserverDlg.cpp (keyserver_dlg_proc): s/keyserver/kserver. The
673 last annoying typo.
674 * wptKeyserverSearchDlg.cpp (hkpsearch_dlg_proc): End dialog in case of
675 an error.
676
677 2004-12-30 Timo Schulz <[email protected]>
678
679 * wptKeyserverDlg.cpp (keyserver_list_build): Initialize pointer.
680 This fixes the problem that the dialog crashes when the user selects
681 anything. Thanks to my users.
682 (keyserver_dlg_proc): s/keyserver/kserver. Thanks to Ulf.
683
684 2004-12-20 Timo Schulz <[email protected]>
685
686 * wptGPG.cpp (check_gnupg_engine): Fixed version checking.
687 * wptFileManager.cpp (fm_encrypt): Delete the passphrase from the
688 cache if it is not valid.
689
690 Fix problem with a NULL pointer.
691
692 2004-12-15 Timo Schulz <[email protected]>
693
694 * wptFileManagerDlg.cpp (space_wipefrees_dlg_proc): Use the right
695 temp name.
696 * wptKeyEditDlgs.cpp (keyedit_main_dlg_proc): Disable 'OK' button
697 when no secret key is available.
698
699 2004-12-11 Timo Schulz <[email protected]>
700
701 * wptFileManager.cpp (fm_add_opened_files): Fix broken code to detect
702 the file type.
703 (fm_parse_command_line): Likewise.
704
705 2004-12-02 Timo Schulz <[email protected]>
706
707 * wptKeySigDlg.cpp (do_load_keyprops): Only issue errors for non-main nodes.
708
709 2004-11-04 Timo Schulz <[email protected]>
710
711 * wptClipVerifyDlg.cpp (clip_verify_dlg_proc): Support preferred
712 keyserver sub packets.
713
714 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Set a flag to
715 indicate we need to reload the cache. If a user deletes a key
716 and exits the manager and loads it again the deleted key is
717 still in cache and provoked an error.
718
719 * wptKeySigDlg.cpp (do_load_keyprops): Stricter key checks.
720
721 * wptW32API.cpp (center_window): Replaced with real code which calculates
722 the position relative to the desktop window.
723
724 2004-10-25 Timo Schulz <[email protected]>
725
726 * wptClipDecryptDlg.cpp (clip_decrypt_dlg): Issue an info box
727 if the PGP message is complete but broken during the transport.
728 Thanks to Werner and Achim.
729 * wptFileManager.cpp (fm_sym_encrypt): Do not force CAST5. Thanks
730 to the gnupg-users.
731 * Automatically add '\r\n' to the text before signing. This solves
732 the problem the last line is not included if no \r\n is present.
733 * wptClipEditDlg.cpp (clip_edit_dlg_proc): Add a 'mail quote' mode
734 which prepends the text with '> '. This makes it easier to quote
735 decrypted text.
736 * wptKeyserverDlg.cpp (keyserver_list_build): Code which was factored
737 out from..
738 (keyserver_dlg_proc): ..here.
739
740 2004-10-15 Timo Schulz <[email protected]>
741
742 * wptGPGPrefsDlg.cpp (gpgprefs_dlg_proc): Make sure that opt
743 is really initialized.
744
745 2004-10-07 Timo Schulz <[email protected]>
746
747 * wptErrors.cpp (winpt_errmsg): Use a generic header when no
748 filename is supplied.
749 * wptMainProc.cpp (cleanup_tmp_files): Do not use BUG but
750 an error message which is more clean. Thanks to Ralf.
751 * wptCardDlg.cpp (card_keygen_dlg_proc): Support new card
752 admin mode.
753 * wptKeySignDlg.cpp (do_check_protection): Also check for smart
754 card protection.
755 (get_keyinfo): Return if this is a smart card key.
756 * wptKeyEditDlgs.cpp (do_find_userid): Use UTF8 encoding before
757 comparing the names.
758 * winpt.cpp: Now depends on PTD 0.7.1.
759
760 2004-10-01 Timo Schulz <[email protected]>
761
762 * wptClipSignDlg.cpp: Really use the selected subkey with the
763 right '!' syntax. Thanks to Vedaal for pointing this out.
764 * wptGPG.cpp (gnupg_backup_keyrings): Check if the backup device
765 is accessable and writeable, otherwise inform the user. Kudos to
766 the one who reported this problem.
767
768 2004-09-20 Timo Schulz <[email protected]>
769
770 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Disable 'Sign' in
771 context menus when the key is flagged as revoked.
772 (update_ui_items): Likewise and set the 'ShowPhoto' flag only if
773 the key has such an item.
774
775 2004-09-08 Timo Schulz <[email protected]>
776
777 * wptKeyserverDlg.cpp (kserver_get_pos): If only one element is
778 in the list, return zero.
779
780 2004-09-07 Timo Schulz <[email protected]>
781
782 * wptAboutDlg.cpp (about_dlg_proc): Add 'Help' button. Suggested by Ralf.
783 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Likewise.
784
785 2004-09-01 Timo Schulz <[email protected]>
786
787 * wptGPG.cpp (GPG_CONF): Define it. Use gpg.conf by default.
788 (default_key_from_cache): Use new key attribute 'usable'.
789 * WinPT.cpp (show_unprotected_keys): Removed.
790 * wptKeylist.cpp (check_key): Removed.
791 (seclist_init): Use new 'usable' key attribute.
792 (keylist_add_key): Likewise.
793 * wptKeyManagerDlg.cpp (keylist_subclass_proc): support to
794 add keys via 'INSERT'.
795 * wptListView.cpp (listview_select_one): New.
796 (listview_find): New.
797 * wptFileManager.cpp (fm_get_current_pos): If there is only
798 one item, return 0 but also select it. Thanks to Christian.
799
800 2004-08-28 Timo Schulz <[email protected]>
801
802 * WinPT.cpp (WinMain): Free gpg table in case of an error.
803 * wptFileManagerDlg.cpp (filelist_subclass_proc): New.
804 (filemanager_dlg_proc): Subclass the list control.
805 * Fix Alt+C for the winpt_prefs_dlg_proc.
806 * wptKeyserver.cpp (kserver_load_conf): Ignore lines with
807 just whitespaces. Thanks to the folks on winpt-users.
808
809 2004-08-27 Timo Schulz <[email protected]>
810
811 * wptKeyserver.cpp (skip_whitespace): New.
812 * Fix a problem with the key cache. The new hash item was
813 not initialized to zero and thus the free caused an illegal access.
814 Thanks to Ralf for pointing this out.
815 * wptTextInputDlg.cpp (text_input_dlg_proc): Finished with localisation.
816 * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Likewise.
817 * wptFirstRunDlg.cpp (first_run_dlg_proc): Remove global variable and
818 use a context to store the value. Loalize all text strings.
819 * wptKeyList.cpp (key_check_validity): Cannot use gettext here.
820 (keylist_get_recipients): Increase buffer for gettext messages.
821
822 2004-08-26 Timo Schulz <[email protected]>
823
824 * WinPT.cpp (load_keyserver_conf): New. Factored out some code
825 from WinMain ().
826 (WinMain): Load keyserver config at the begin. Thanks to Bodo Aßner
827 * wptKeyserverDlg.cpp (keyserver_dlg_proc): If there is no keyserver
828 in the list control, add at least the internal default HKP server.
829 * wptKeygenDlg.cpp (keygen_wizard_dlg_proc): NLS support.
830 * wptKeySignDlg.cpp (sig_class_dlg_proc): Likewise.
831 (keysign_dlg_proc): Likewise.
832 * wptKeySigDlg.cpp (keysig_dlg_proc): Likewise.
833 * wptKeyserver.cpp (skip_type_prefix): New. Thanks to Marcus Junk.
834 (kserver_connect): use it here.
835 (kserver_send_request): Likewise.
836 (kserver_recvkey): Likewise.
837
838 2004-08-25 Timo Schulz <[email protected]>
839
840 * wptFileManager.cpp (fm_get_file_type): Skip files over 32 MB
841 and skip to read large files on floppy discs.
842 (fm_wipe): Display a 'wait' cursor until the wipe is complete.
843 (is_floppy_disc): New.
844 * wptFileManagerDlg.cpp (filelist_subclass_proc): New.
845 (file_manager_dlg_proc): Use subclassing to allow some hotkeys.
846
847 2004-08-24 Timo Schulz <[email protected]>
848
849 * wptKeyEditDlgs.cpp (userid_list_init): Add creation date for
850 the user-ids.
851 * wptKeygenDlg.cpp (key_wizard_dlg_proc): Allow to switch into
852 expert mode when the non-interactive mode is used.
853 * WinPT.cpp (WinMain): Start the keygen wizard instead of the
854 expert dialog and allow to switch to it.
855
856 2004-08-20 Timo Schulz <[email protected]>
857
858 * wptKeyManagerDlg.cpp (do_create_minpopup): In read-only
859 mode the menu is not available.
860 (popup_gpg_readonly): New.
861 (menu_gpg_readonly): New.
862 (keymanager_dlg_proc): Use it here. Do not check the permissions
863 any longer since this is now handle via the read-only code.
864 * wptMainProc.cpp (winpt_main_proc): Check if the keyrings
865 are in read-only mode.
866 * wptKeyGenDlg.cpp (keygen_wizard_dlg_proc): RSA support.
867 * wptKeySignDlg.cpp (keysign_dlg_proc): Allow non-revocably
868 signatures in expert mode.
869 * wptKEyEditDlgs.cpp (do_find_userid): Release context.
870 * wptGPG.cpp (gpg_check_permissions): Only print out a warning
871 in the interactive mode.
872 * wptTrayPopDlg.cpp (WndProc): Destroy the window when the left
873 mouse button is clicked.
874
875 2004-08-19 Timo Schulz <[email protected]>
876
877 * wptKeyEditDlg.cpp (keyedit_addsubkey_dlg_proc): Corrected
878 key numbers.
879
880 * wptKeysigDlg.cpp (do_delsig): New. Implement 'delsig' command.
881 (is_sig): Change code to allow to check pre-defined fields.
882
883 * WinPT.cpp (WinMain): Allow read-only support for keyrings.
884
885 2004-08-06 Timo Schulz <[email protected]>
886
887 * wptContext.h: Move subclass_s context to this file.
888
889 * wptKeysigDlg.cpp (subclass_dlg_proc): New.
890
891
892 2004-08-05 Timo Schulz <[email protected]>
893
894 * wptKeySigDlg.cpp (sigprops_dlg_proc): Set the 'expired' flag
895 when possible.
896 New dialog layout to enhance the readability of the text. Use
897 flat check boxes for the same reason.
898
899 * wptKeyEditDlgs.cpp (do_editkey_expire): Set new value to
900 the right column (3 not 4).
901
902 * wptFileManagerDlg.cpp: Make sure the wipe freespace tempfile
903 uses a unique name.
904
905
906 2004-08-04 Timo Schulz <[email protected]>
907
908 * wptClipEditdlg.cpp (clip_edit_dlg_proc): Removed the
909 edit-field to display the text. Now a RichEdit field is
910 used. This solves the XP problem that the viewer is empty
911 even if there is text in it.
912
913 * wptKeyManger.cpp (km_file_export): Add WinPT specific comment.
914
915 * wptKeySigDlg.cpp (sigprops_dlg_proc): New.
916 (keysig_dlg_proc): Add new 'Properties' button and implement
917 the code for it.
918
919 * wptSigList.cpp: Add support to show the expiration date.
920
921 * wptGPGME.cpp (keycache_init): Support to show the progress bar.
922 (keycache_release): Store the amount of keys in the registry for
923 the progress dialog.
924
925 * wptPreferenceDlg.cpp (prefs_dlg_proc): Add support to generate
926 default keyserver.conf.
927
928 * wptKeyserver.cpp (kserver_load_conf): Store the mod-time of the file.
929 Fix possible buffer overflow.
930 (wsock_end): Release stored keyserver list.
931
932 * wptEncryptDlg.cpp (clip_encrypt_dlg_proc): Allow to search for
933 a specific recipient and select it.
934
935 2004-08-02 Timo Schulz <[email protected]>
936
937 * wptKeysigDlg.cpp (do_create_popup): New.
938 (do_load_keyprops): New.
939
940 (keysig_dlg_proc): Factor out some common code and use
941 do_load_keyprops.
942
943 * wptKeyServer.cpp (kserver_check_inet_connection): New.
944
945 * wptKeyManger.cpp (km_refresh_from_keyserver): First check
946 for an active internet connection. It's annoying for the
947 user to confirm an connection error for each key (n>40).
948
949 2004-07-27 Timo Schulz <[email protected]>
950
951 * wptKeyManagerDlgProc.cpp (keymanager_dlg_proc): Set the new
952 value for the ownertrust.
953
954 * wptKeyManager.cpp (get_key_trust): Make it public.
955 (get_key_trust_str): New.
956 (km_refresh_from_keyserver): Allow to select random keys.
957 (km_refresh_one_key): New.
958
959 * wptKeyserver.cpp: Use default keyserver if possible.
960
961 2004-07-13 Timo Schulz <[email protected]>
962
963 * wptFileManager.cpp (fm_assume_onepass_sig): New.
964 Thanks to Vedaal who found out that armored one-pass sigs are not
965 correctly recognized.
966
967 (ask_filename): New.
968 Again thanks to Vedaal who suggested to ask for a new output name
969 for the case the user does not want to overwrite the file.
970
971 (fm_encrypt): Use it here.
972 (fm_decrypt): Likewise.
973 (fm_sign): Likewise.
974
975 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): New context menu entry
976 to set secret keys to ultimate trust.
977
978 * wptKeyManager.cpp (km_check_for_seckey): Optionally return if the
979 key has ultimate trust.
980 (km_set_implicit_trust): New.
981
982 2004-07-12 Timo Schulz <[email protected]>
983
984 * wptRegistry.cpp: Support for disable compression of multi-media files.
985 (set_reg_winpt_single): New.
986 (get_reg_winpt_single): New.
987
988 * wptFileManager.cpp (is_multi_media): New.
989 (fm_encrypt): Disable compression of multi-media files.
990 (fm_state_new): Set comment to indicate armored files were generated
991 by WinPT. This is a replacement due to the fact the WinPT string is not
992 added in the 'Version' for larger files.
993
994 * WinPT.cpp (WinMain): Extract the loadimage.exe from the DLL if not found.
995
996 2004-07-11 Timo Schulz <[email protected]>
997
998 * Bug fix for the validity revoked status. Now it is 'revoked'
999 and not 'unknown' any longer.
1000
1001 * Feature to disable encryption. This might be useful for filetypes
1002 GPG does not recognize as compress (movies, ...).
1003
1004 * wptFileManager.cpp (fm_get_file_type): Skip packet detction if
1005 the file is large and it has no openpgp extension.
1006
1007 2004-06-19 Timo Schulz <[email protected]>
1008
1009 * wptInet.cpp: Renamed to ...
1010 * wptHttp.c: ... this.
1011 * wptKeyManager.cpp (km_http_import): Release 'p' not too early.
1012 * WinPT.cpp (WinMain): If there is a problem with the homedir,
1013 jump to the first start settings.
1014
1015 2004-06-12 Timo Schulz <[email protected]>
1016
1017 * wptInet.cpp: Updated.
1018 * wptKeyManager.cpp (km_http_import): Use http_send_request2() to
1019 parse the URL.
1020 * wptCommonDlg.cpp (http_file_dlg_proc): New.
1021 (get_http_file_dlg): New.
1022
1023 2004-06-08 Timo Schulz <[email protected]>
1024
1025 * wptInet.cpp: New.
1026 * wptKeyManagerDlg.cpp (key_manager_dlg_proc): Support for http
1027 transfers.
1028 * wptKeyManager.cpp (km_http_import): New.
1029
1030
1031 2004-06-02 Timo Schulz <[email protected]>
1032
1033 * wptClipEditDlg.cpp (clip_edit_dlg_proc): Do not issue an error
1034 if there is no clipboard data.
1035
1036 Release memory in case of an error.
1037
1038 * wptKeyManager.cpp (keylist_cmp_cb): Allow to sort by algorithm.
1039
1040 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Likewise.
1041
1042
1043 2004-05-31 Timo Schulz <[email protected]>
1044
1045 * wptFileVerifyDlg.cpp (file_verify_dlg_proc): Implement the
1046 'X' close button. Noted by a friendly user.
1047
1048 Disable 'Save' button.
1049
1050 * wptMainProc.cpp (cleanup_tmp_files): Delete all related temp files.
1051
1052 * wptFileManager.cpp (fm_set_status): Do not use the data file name
1053 for signatures but keep the original file name.
1054
1055 (fm_verify_pasted_detsig): Try to verify detached signatures from
1056 the clipboard.
1057
1058 2004-05-14 Timo Schulz <[email protected]>
1059
1060 * WinPT.cpp (check_crypto_engine): Due to some
1061 internal GPG changes the min. version for smart card
1062 support is now 1.3.6.
1063
1064 * wptProxySettingsDlg.cpp (read_proxy): Correct prefix
1065 handling. Thanks to the folks who reported this via SF.net.
1066
1067 * wptRegistry.cpp (get_reg_winpt_prefs): Corrected enum ids.
1068 Thanks to the folks on winpt-users who reported it.
1069
1070 * wptPreferencesDlg.cpp (prefs_dlg_proc): Fix code in case of
1071 the hotkeys are disabled.
1072
1073 * wptKeylist.cpp (do_addkey): Broken ElGamal dection, fixed.
1074
1075 * wptFileManager.cpp (fm_get_file_type): Do not parse the entire
1076 file if the size is >= 256MB.
1077
1078 2004-03-15 Timo Schulz <[email protected]>
1079
1080 * Decrypt list box has now a vertical scroll bar.
1081
1082 2004-03-11 Timo Schulz <[email protected]>
1083
1084 * The DLL is now complety C-source.
1085
1086 2004-03-08 Timo Schulz <[email protected]>
1087
1088 * wptGPG.cpp (gnupg_import_keyrings): cleanups.
1089
1090 * wptUTF8.c (utf8_to_wincp): New. Directly convert UTF-8 to Windows
1091 CP.
1092 (wincp_to_utf8): Likewise.
1093 (conv_charset): Now internal and static.
1094
1095 * wptUTF8.h: New prototypes and remove the old prototypes.
1096
1097 * WinPT.cpp (WinMain): Destroy the windows handle in case of an error.
1098
1099
1100 2004-03-07 Timo Schulz <[email protected]>
1101
1102 * wptGPG.cpp (get_gnupg_keyring): Special case because GPG creats
1103 dummy keyrings with a size of zero in the homedir.
1104
1105 (gpg_check_permissions): Check for read-only keyrings and add code
1106 for this case.
1107
1108 This problem fixes a lof of other problems related to the OpenPGP
1109 parsing stuff for the key cache.
1110
1111 * WinPT.cpp (check_crypto_engine): Store the GPG version for later use.
1112
1113 2004-03-04 Timo Schulz <[email protected]>
1114
1115 * wptKeyserver.cpp (finger_recvkey): Error if key was not found
1116 or garbled.
1117
1118 * wptGPG.cpp (gpg_check_permissions): Take care of the entries
1119 in gpg.conf.
1120
1121 * wptFileManagerDlg.cpp (file_encrypt_dlg_proc): Support to select
1122 the signer. Suggested by Sebastian.
1123
1124 * wptKeylist.cpp (seclist_init): Moved from the clip dialog file to
1125 this file.
1126 (seclist_free): Likewise.
1127 (seclist_select_key): Likewise.
1128
1129 * wptFileManager.cpp (fm_encrypt): Handle the case the signer was
1130 already set.
1131
1132 2004-03-02 Timo Schulz <[email protected]>
1133
1134 * wptGPG.cpp (check_keyring): Handle the case that the keyring
1135 is set in the gpg.conf file and the pubring.gpg file is zero bytes.
1136
1137 (gnupg_backup_keyrings): Support backup of keyrings which were set
1138 in gpg.conf. Thanks to the user who reminded me of this problem.
1139
1140 (gnupg_check_file_ext): Make check not case sentensive.
1141
1142 * (sfree_if_alloc): Overwrite the memory with zeros before freeing
1143 it. This only works with c-strings! Use it everywhere we handle
1144 sentensive information (passphrases).
1145
1146 * Try to improve the usability with better menu names and new
1147 ordering.
1148
1149 * wptKeyMangerDlg.cpp: Make the 'Trust' column sortable.
1150
1151 * wptMainProc.cpp (winpt_main_proc): Removed GPG about dialog. Now
1152 it is part of the WinPt about dialog. This way we can minimize the
1153 elements in the popup menu.
1154
1155 2004-02-29 Timo Schulz <[email protected]>
1156
1157 * wptFileManagerDlg.cpp (file_encrypt_dlg_proc): Support throw-keyid.
1158
1159 * wptKeySignDlg.cpp (do_fill_seckeylist): Make sure we skip key itself
1160 so we are not allowing to sign ourself.
1161
1162 * wptSigList.cpp (siglist_add_key): Support for the signature
1163 flags (local, non-revocably, ...).
1164
1165 * Key signing with GPG 1.2.x should work again. Hopefully.
1166
1167 2004-02-26 Timo Schulz <[email protected]>
1168
1169 * wptFileManagerDlg.cpp (file_encrypt_dlg_proc): Issue an error
1170 if no recipient was selected.
1171
1172 * wptFileManager.cpp (fm_parse_files): Make sure the progress dialog
1173 is destroyed. This fixes the bug that the dialog sometimes exist even
1174 after the procedure ended.
1175
1176 * wptProgressDlg.cpp (progress_callback): Change the if-then-else
1177 struct to prevent zombie dialogs.
1178
1179 * wptKeyserver.cpp: Removed unused prototypes.
1180
1181 2004-02-25 Timo Schulz <[email protected]>
1182
1183 * wptKeyManagerDlg.cpp: Use consequently 'List Signatures' and
1184 do not mix the names in the different menus.
1185
1186 * wptSigList.cpp: Support to show the signature class.
1187
1188 * wptKeyEditDlgs.cpp (keyedit_main_dlg_proc): Disable the combo
1189 box when there is no secret key available.
1190
1191 (do_init_keylist): Do not allow to use the owners key as a desig
1192 revoker.
1193
1194 * wptKeylist.cpp (get_key_trust): New.
1195 (do_addkey): Use it here.
1196
1197 2004-02-24 Timo Schulz <[email protected]>
1198
1199 * WinPT.cpp (WinMain): Call a selftest check procedure to
1200 make sure all cryptographic code works as expected.
1201
1202 2004-02-22 Timo Schulz <[email protected]>
1203
1204 * PTD: Cryptdisk seems to have problems with locking. Use
1205 a forced flag to tell the code if it should bail out or
1206 ignore locking errors.
1207
1208 * wptCryptdisk.cpp (cryptdisk_umount_dlg_proc): Use new
1209 locking code.
1210 (cryptdisk_new_dlg_proc): Adjust size of the volume.
1211
1212 2004-02-21 Timo Schulz <[email protected]>
1213
1214 * wptCryptdisk.cpp (cryptdisk_cleanup): New.
1215 (is_nt4): Because my Platform-SDK is too old I need to load
1216 some prototypes dynamically.
1217 (init_drives): Return the first useable drive letter if
1218 called with appropriate parameters.
1219 * wptMainProc.cpp (winpt_main_proc): Use it here.
1220
1221 2004-02-18 Timo Schulz <[email protected]>
1222
1223 * Modify the cryptdisk code for crosscrypt 0.4.1.
1224 * wptCryptDisk.cpp (do_mount): Add key algorithm param.
1225
1226 2004-02-17 Timo Schulz <[email protected]>
1227
1228 * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Also encrypt
1229 to the signers key. Suggested by Alexander.
1230 Use new keycache system, we use the public key part of the
1231 cache because it has all flags set.
1232 * wptGPG.cpp (default_key_from_cache): Use new cache system.
1233 * wptKeySignDlg.cpp (do_fill_seckeylist): Likewise.
1234
1235
1236 2004-02-12 Timo Schulz <[email protected]>
1237
1238 * wptErrors.cpp: New error codes for the cryptdisk feature.
1239 * wptCryptdisk.cpp (do_dispatch): Better error handling.
1240 (cryptdisk_mount_dlg_proc): Use it here.
1241 (cryptdisk_umount_dlg_proc): Likewise.
1242 (init_drives): Use system list.
1243
1244 Localized all strings.
1245
1246 2004-02-09 Timo Schulz <[email protected]>
1247
1248 * wptCryptdisk.cpp (cryptdisk_umount_dlg_proc): New.
1249 (do_reaping): New. Release the list if all items are 'expired'.
1250 (cryptdisk_mount_dlg_proc): New.
1251 (init_drives): New.
1252 * wptMainProc.cpp (cryptdisk_proc): Renamed from...
1253 (handle_cryptdisk): this. And filled with life.
1254
1255 2004-02-08 Timo Schulz <[email protected]>
1256
1257 * wptCryptdisk.{cpp,h}: New. Support for the extended
1258 filedisk application.
1259 * wptMainProc.cpp (winpt_main_proc): Likewise.
1260 * WinPT.cpp (WinMain): Make sure the new PTD lib is installed.
1261
1262 2004-02-05 Timo Schulz <[email protected]>
1263
1264 * wptRegistry.cpp (set_reg_winpt_prefs): Forget to handle
1265 CMD_DISHOTKEYS. Thanks to the user who reminded me.
1266 * wptMainProc.cpp (spawn_cryptdisk): New interface to
1267 the Cryptdisk application.
1268
1269 2004-02-04 Timo Schulz <[email protected]>
1270
1271 * wptRegistry.cpp (get_reg_winpt_prefs): Revamped the core.
1272
1273 2004-02-03 Timo Schulz <[email protected]>
1274
1275 * WinPT.cpp (check_crypto_engine): New. Factor out common code.
1276 (WinMain): Check the crypto engine after the first start.
1277
1278 * wptRegistry.cpp (set_reg_winpt_prefs): Make sure an error is
1279 issued if the values could not stored. Revamped the core.
1280
1281 * Removed the last appearance of the GPG agent support.
1282
1283 * wptGPG.cpp (init_gnupg_table): Do not use static buffers.
1284 (free_gnupg_table): Free memory.
1285
1286 * wptClipImportDlg.cpp (clip_import_dlg_proc): Make sure the
1287 ctx pointer get malloced and set the contents to zero.
1288
1289
1290 2004-02-02 Timo Schulz <[email protected]>
1291
1292 * wptCardDlg.cpp (card_keygen_dlg_proc): Make sure the name
1293 is long enough. The same check for the mail address.
1294
1295 Thanks to Achim.
1296
1297 2004-01-28 Timo Schulz <[email protected]>
1298
1299 * wptCardDlg.cpp (card_keygen_dlg_proc): A info is issued
1300 if keys on the card exist but the user does not said overwrite.
1301
1302 Make sure the expire date is not in the past.
1303
1304 * wptMainProc.cpp (winpt_main_proc): Avoid to release the file
1305 lock twice. Not sure if this fixes some other problems but it
1306 was definitely a bug.
1307
1308 * wptMapi.cpp (mapi_init): Make sure all function ptrs are
1309 initialized otherwise bail out.
1310 (mapi_send_message): New. Interface to allow to send an
1311 encrypted mail with zero ore more encrypted attachments.
1312 (secure_attachment): New.
1313 (parse_recipients): New.
1314
1315 2004-01-25 Timo Schulz <[email protected]>
1316
1317 * WinPT.cpp (WinMain): Silently die when an instance is already
1318 running. Do not confuse the user with a message. Suggested by
1319 Sebastian.
1320 * wptKeyManager.cpp (delete_keys_from_cache): New.
1321 (km_delete_keys): Use it here. Thanks to Achim.
1322
1323 2004-01-23 Timo Schulz <[email protected]>
1324
1325 * wptCardDlg.cpp (check_pin_len): New. Check if the
1326 PIN is long enough and give an appropriate error.
1327 (card_changepin_dlg_proc): Use the new check function.
1328
1329 2004-01-22 Timo Schulz <[email protected]>
1330
1331 * Remove all internal card reader config. It's up to the
1332 user to do this. It would be too error proune to offer it.
1333 * wptCard.h: Removed all card driver stuff.
1334 * wptPinDLG.cpp (pin_cb_dlg): Use better names to differ
1335 between the admin and the user (normal) PIN.
1336
1337 2004-01-04 Timo Schulz <[email protected]>
1338
1339 * wptImageList.{cpp,h}: New. Contributed by Andreas Jobs.
1340 * wptKeylist.cpp (keylist_cmp_cb): More patches from Andreas
1341 and minor changes.
1342 * wptListView.cpp (listview_sort_items): Likewise.
1343 * wptKeyManager.cpp (key_manager_dlg_proc): Likewise.
1344 (regist_sep_wnd): Factored out some code.
1345
1346 2004-01-03 Timo Schulz <[email protected]>
1347
1348 * wptClipImportDlg.cpp (clip_import_dlg_proc): automatically allow
1349 to import secret keys.
1350
1351 2003-12-31 Timo Schulz <[email protected]>
1352
1353 * wptKeyEditDlgs.cpp (keyedit_addsubkey_dlg_proc): Do not sort
1354 the list otherwise the index is wrong.
1355 * wptKeySignDlg.cpp (keysign_dlg_proc): Add the ability to set
1356 a signature expire date.
1357
1358 2003-12-30 Timo Schulz <[email protected]>
1359
1360 * fixed the GPG edit-key commands sign and addrevoker.
1361
1362 2003-12-23 Timo Schulz <[email protected]>
1363
1364 * wptKeyEditAddKEyDlg.cpp (keyedit_addsubkey_dlg_proc): Remove
1365 ElGamal s+e support. Oops, this should be already done.
1366 * wptGPGME.cpp (keycache_init): Sync both key caches. In other
1367 words transfer some flags from the sec-cache to the pub-cache.
1368 * wptKeySignDlg.cpp (key_sign_dlg_proc): A workaround for the
1369 key sign procedure. If it is already signed, the process
1370 sometimes hangs.
1371
1372 2003-12-14 Timo Schulz <[email protected]>
1373
1374 * wptKeyeditSetPrefDlg.cpp (get_userid_preflist): New.
1375 * wptKeyEditDlgs.cpp (keyedit_main_dlg_proc): Support for updpref.
1376 (do_editkey_setpref): Implement updpref command.
1377
1378
1379 2003-12-10 Timo Schulz <[email protected]>
1380
1381 * GPGME support to change key preferences.
1382 * wptKeyeditSetPrefDlg.cpp (keyedit_setpref_dlg_proc): New.
1383 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Use the new feature here.
1384
1385
1386 2003-11-29 Timo Schulz <[email protected]>
1387
1388 * wptMAPI.cpp (mapi_init): New.
1389 (mapi_deinit): New.
1390 (mapi_send_pubkey): New.
1391 * wptKeyManager.cpp (km_send_to_mail_recipient): New.
1392 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Support
1393 to send the public key via MAPI to a recipient.
1394 * wptKeySignDlg.cpp (do_fill_seckeylist): Make sure we rewind
1395 the secret key cache so it's not at the end.
1396 (keysign_dlg_proc): Issue a warning when no secret key was
1397 found which could be used for signing the key.
1398 * wptKeylist.cpp (do_addkey): Never add an Elgamal sign+encrypt key.
1399 * wptKeySignDlg.cpp (do_fill_seckeylist): Likewise.
1400
1401 2003-11-28 Timo Schulz <[email protected]>
1402
1403 * Remove all support for ElGamal sign+encrypt keys.
1404
1405 There is a flaw in GPG which makes all such keys useable and
1406 they are comprised even if one signature they made is accessable.
1407 And due to the fact the key is self signed, such a sig is always
1408 available for the public.
1409
1410 We warn the user at startup if such keys were found!
1411
1412 * wptMainProc.cpp (elgamal_warn_dlg_proc): New.
1413 * wptGPGME.cpp (count_insecure_elgkeys): New.
1414 * WinPT (WinMain): Use it here.
1415
1416 2003-11-14 Timo Schulz <[email protected]>
1417
1418 * wptCardDlg.cpp (card_edit_dlg_proc): Release the second PIN.
1419
1420 2003-11-13 Timo Schulz <[email protected]>
1421
1422 * Clarify pin names. Now all PIN's are labeled 'Admin' or 'User'.
1423 * wptPINDlg.cpp (pin_cb_dlg_proc): Length check for the PINs.
1424 Thanks to Achim.
1425 * Change PIN interface. Now it is easier when an operation requires
1426 both PINs.
1427 * wptCardDlg.cpp (do_proc_card_cmds): Now GPG requires both PINs
1428 to change card attributes. Do not ask me why, but now the user
1429 needs to enter 2 PINs.
1430
1431 Name parts were swapped, now they have the right order again.
1432
1433 2003-10-02 Timo Schulz <[email protected]>
1434
1435 * Prepare test release.
1436 * wptGPGCmds.h: New from GPG 1.3.4-cvs.
1437
1438 2003-10-29 Timo Schulz <[email protected]>
1439
1440 * wptKeyEditDlgs.cpp: New logging scheme. Changed all callers.
1441
1442 * Create a new interface for an interactive card callback. GPG
1443 provides card control status messages if the wrong card is inserted.
1444
1445 * wptCardManager.cpp (card_cb_dlg_proc): New.
1446 (card_callback): New.
1447
1448 * wptCardPCSC.cpp (pcsc_loadlib): Use some 'A' to declare we use
1449 the ASCII functions and not the Unicode function names. Thanks to
1450 Werner for pointing this out.
1451
1452 * wptPassphraseCB.cpp (passphrase_cb): Better card interface. Now the
1453 serial card number is shown to help the user to find the right card.
1454
1455 * wptClipSignDlg.cpp (clip_sign_dlg_proc): New logging scheme.
1456
1457 2003-10-26 Timo Schulz <[email protected]>
1458
1459 * wptClipDecryptDlg.cpp (clip_decrypt_dlg): Implement new logging.
1460
1461 * Changed the code at several other places to support the new logging
1462 scheme.
1463
1464
1465 2003-10-24 Timo Schulz <[email protected]>
1466
1467 * Implemented a better logging system. If the return code
1468 of GPG is != 0 and the error is not known, display the errors
1469 from stderr.
1470
1471 * wptGPGME.cpp (logging_cb): New.
1472
1473 2003-10-23 Timo Schulz <[email protected]>
1474
1475 * wptClipEncryptDlg.cpp (clip_encrypt_dlg_proc): Show GPG output
1476 if the error is unknown.
1477 (clip_sign_dlg_proc): Likewise.
1478 (clip_signenc_dlg_proc): Likewise.
1479 (clip_import_dlg_proc): Likewise.
1480
1481 2003-10-21 Timo Schulz <[email protected]>
1482
1483 * wptClipDecryptDlg.cpp (list_recipients): New.
1484 (algo_from_list): New.
1485 (clip_decrypt_dlg): New concept to list all recipients.
1486 * wptFileManager.cpp (fm_list_keys): New.
1487 (fm_decrypt): Same changes as for the clipboard decryption.
1488
1489 2003-10-21 Timo Schulz <[email protected]>
1490
1491 * wptClipDecryptDlg.cpp (clip_decrypt_dlg): If the passphrase
1492 was wrong, delete the cache item (if available).
1493 * wptClipSignDlg.cpp (clip_sign_dlg): Likewise.
1494 * wptClipSignEncDlg.cpp (clip_signenc_dlg): Likewise.
1495 * wptPassphraseCB.cpp (set_gpg_passphrase_cb): Set 'is_card'
1496 flag to zero.
1497
1498
1499 2003-10-19 Timo Schulz <[email protected]>
1500
1501 * wptPINDlg.cpp (pin_cb_dlg_proc): Support to store the admin and
1502 the working PIN.
1503 wptCardDlg.cpp (free_pincb): New.
1504 (card_keygen_dlg_proc): Pin callback implemented.
1505 Simple check for the e-mail address.
1506 (card_edit_dlg_proc): End the dialog if no changes were made.
1507
1508 * Expanded GPGME passphrase interface to work both with PINs
1509 and passphrases.
1510
1511 2003-10-18 Timo Schulz <[email protected]>
1512
1513 * wptCardDlg.cpp (card_keygen_dlg_proc): New.
1514 (do_askpin): Handle the case there is no card.
1515 (card_edit_dlg_proc): Add 'New Keys' feature.
1516 (card_changepin_dlg_proc): Implemented.
1517 * WinPT.cpp (WinMain): Ability to start the card manager directly.
1518 * wptMainProc.cpp (smartcard_init): Global stuff to init the reader
1519 driver and the inserted card.
1520
1521 2003-10-17 Timo Schulz <[email protected]>
1522
1523 * wptGPGME.cpp (keycache_init): Do not use secring the first time.
1524 * wptKeySignDlg.cpp (keysign_dlg_proc): Make sure only the short
1525 keyid will be displayed.
1526
1527 2003-10-16 Timo Schulz <[email protected]>
1528
1529 * Changed GPGME interface for edit card. Now one context is
1530 used for all edit card operations.
1531 * wptCardDlg.cpp (card_edit_dlg_proc): Support for working
1532 and admin PIN. Changed gpgme interface.
1533 (ask_pin): Renamed to..
1534 (do_askpin): this. Provide more information about the card
1535 and its holder.
1536 (do_proc_card_cmds): If no error, reset modify flags for
1537 all controls. Show a short message that the operation ended.
1538 * wptCardPCSC.c (pcsc_free_readers): New.
1539 (pcsc_scan_readers): New.
1540 (pcsc_get_reader): New.
1541 (pcsc_get_card_status): New.
1542
1543
1544 2003-10-14 Timo Schulz <[email protected]>
1545
1546 * wptKeyList.cpp (do_addkey): Add the case the secret key
1547 is stored on a smart card.
1548 (km_check_for_seckey): Take care of the new code.
1549 * wptKeyManager.cpp (km_delete_keys): Extra warning when
1550 the secret key is stored on a card.
1551 * wptKeyEditDlgs.cpp (subkey_list_init): Add the key cabilities
1552 to the list view. Now the user can see if the key is useable
1553 for: signing, certifying or encrypting.
1554
1555 2003-10-13 Timo Schulz <[email protected]>
1556
1557 * Extended the GPGME API that it is possible to retrieve
1558 the key data. This is for the planned card login but it
1559 might be also useful for other purposes.
1560
1561 * wptCardPCSC.c: New. General code for PC/SC card readers.
1562
1563
1564 2003-10-12 Timo Schulz <[email protected]>
1565
1566 * wptCardDlg.cpp (guess_libname): New.
1567 (card_status): Simplified the code with an attribute
1568 table. Now it is a loop and not hard coded.
1569 * The card interface has changed. Now the surname and
1570 the given name are two fields and not one field.
1571 * wptMainProc.cpp (winpt_main_proc): Check if the card
1572 reader is configured where appropriate.
1573
1574 2003-10-09 Timo Schulz <[email protected]>
1575
1576 * wptCardDlg.cpp (get_card_status): New.
1577 (show_card_status): New. Retrieve the card status and show an
1578 error if approprioate.
1579 * Make sure that WinPT does not try to use non-OpenPGP cards.
1580 * Add GPGME support for the forthcoming AUTH flag for keys.
1581 * Implemented the detection of keys where the secret key components
1582 are stored on a smart card.
1583
1584
1585 2003-10-08 Timo Schulz <[email protected]>
1586
1587 * wptCardDlg.cpp (do_proc_card_cmds): Check that only US-ASCII
1588 is used. Otherwise reject the value.
1589 (ask_pin): New. Enable PIN caching for the 'dialog session' so
1590 the user does not need to re-enter it again and again.
1591
1592 2003-10-07 Timo Schulz <[email protected]>
1593
1594 * wptPINDlg.cpp (pin_cb_dlg_proc): New.
1595 * wptCardDlg.cpp (do_proc_card_cmds): New.
1596 (card_edit_dlg_proc): Use it here.
1597
1598 2003-10-06 Timo Schulz <[email protected]>
1599
1600 * wptFileManager.cpp (fm_encrypt): Wipe files in both modes.
1601 * wptGPG.cpp (gnupg_display_error): Display general error
1602 when the file does not exit.
1603 * wptW32API.cpp (get_folder_dlg): New.
1604 * wptGPGPrefsDlg.cpp (gpgprefs_dlg_proc): Ability to select
1605 the folder for the home directory.
1606 * wptKeyManager.cpp (km_update_default_key_str): Return length
1607 of the string.
1608 (km_complete_status_bar): Use the offset of the default
1609 key string so it is not appened twice.
1610 * wptRegistry.cpp (regist_inst_winpt): Create 'Card' subkey.
1611 * wptCard.h: New.
1612 * wptCardDlg.cpp (new_card_driver): New.
1613 (load_card_driver): New.
1614 (free_card_driver): New.
1615 (card_config_dlg_proc): If the reader is configured, load the
1616 values. This is needful to change the driver later.
1617 (gpg_load_scard): Use driver as a parameter.
1618 * wptMainProc.cpp (winpt_main_proc): Load card driver and
1619 unload it after use.
1620
1621 2003-09-28 Timo Schulz <[email protected]>
1622
1623 * wptCardDlg.cpp (card_edit_dlg_proc): New.
1624 (gpg_load_scard): New. Try to use GPG load the card info.
1625 (print_fpr): New. Print beautified fingerprint.
1626 (card_status): New. Set all dialog fields with the values from
1627 the card.
1628 (prepare_dialog): New. Load combo boxes with pre-defined strings.
1629
1630
1631 2003-09-25 Timo Schulz <[email protected]>
1632
1633 * wptProgressDlg.cpp (progress_cb_thread): New.
1634 (progress_callback): Use asynchron code.
1635 * wptFileManager.cpp (fm_parse_files): Implement progress callback.
1636
1637
1638 2003-09-25 Timo Schulz <[email protected]>
1639
1640 * wptClipSignEncDlg.cpp (seclist_dlg_proc): The dialog was broken.
1641 (check_key): New.
1642 Removed the old Secret Key List dialog. Now the key can be directly
1643 chose in the dialog.
1644 (seclist_init): New.
1645 (seclist_destroy): New.
1646 (seclist_select_key): New.
1647 * wptFileManager.cpp (fm_sign): Ask for output file if needed.
1648
1649 * Client side implementation of the --enable-progress-filter feature.
1650
1651 * wptProgressDlg.cpp: Server side implementation.
1652 (progress_dlg_proc): New. The actual dialog procedure.
1653 (progress_callback): The GPGME wrapper callback.
1654
1655 2003-09-24 Timo Schulz <[email protected]>
1656
1657 * wptKeygenDlg.cpp (keygen_dlg_proc): Implement 'Hide Typing' feature.
1658 * wptFileManager.cpp (fm_encrypt): Ask for output file if needed.
1659 * wptFileManagerDlg.cpp (fm_dlg_proc): Removed im- and export from
1660 the menu. We use import internally, but export was not useful and
1661 thus the code were removed.
1662 * wptPreferenceDlg.cpp (prefs_dlg_proc): Disable some controle at
1663 startup when they are not allowed.
1664 * wptGPGPrefsDlg.cpp (gpgprefs_dlg_proc): Removed PGP2 option.
1665 Make the parsing code much shorter (read).
1666
1667
1668 2003-09-22 Timo Schulz <[email protected]>
1669
1670 * wptSigList.cpp (extract_filename): Make sure there is a '\',
1671 otherwise just dup the string and return.
1672 * wptVerifyList.cpp (verlist_add_sig): Use a variable for the key
1673 to make the code more readable.
1674 * Implemented the GPGME part of the new smartcard interface.
1675 The WinPT interface will be open until the scard stuff is back
1676 ported to GPG 1.3.x.
1677 * wptKeyEditDlgs.cpp (do_editkey_revuid): Need a secret key to do it.
1678 Several code cleanups.
1679
1680 2003-09-08 Timo Schulz <[email protected]>
1681
1682 * wptRegistry.cpp: Remove some hotkeys to correct index calculation.
1683 (get_reg_winpt_flag): Check buffer first.
1684 (get_reg_winpt_prefs): Support for the new backup system.
1685 (set_reg_winpt_prefs): Likewise.
1686 * wptHotkey.h: Removed import and export hotkey. Re-ordered elements.
1687 * wptRegistry.h: Cleaned up the hotkey interface.
1688 * wptPreferenceDlg.cpp (enable_backup_items): New.
1689 (prefs_dlg_proc): Simplified hotkey handling. Use new code.
1690 * wptMainProc.cpp (clip_gpg_dlg): Remove hotkey handling for
1691 im- and export. Use the code directly.
1692 (currwnd_gpg_dlg): Likewise.
1693 * wptGPG.cpp (gnupg_backup_keyrings): New.
1694 (backup_one_file): New.
1695
1696 2003-09-04 Timo Schulz <[email protected]>
1697
1698 * wptFileManager.cpp (fm_get_file_type): Due to an unknown reason,
1699 the packet parsing return value check was wrong again. Now it does
1700 not recognize Word documents as SECKEY or ENCRYPTED any longer.
1701
1702 2003-09-03 Timo Schulz <[email protected]>
1703
1704 * The secret key listing does not contain any 'validity' or
1705 'status' flags any longer. Thus we only can use the cache to
1706 make sure we have a secret key. All attributes need to be retrieved
1707 from the public key listing.
1708
1709 * wptGPG.cpp (default_key_from_cache): New.
1710 (get_gnupg_default_key): Use new function to make sure we try
1711 to get the key from cache if there is a problem with the config
1712 file.
1713
1714 2003-08-30 Timo Schulz <[email protected]>
1715
1716 * wptGPG.h: Support for the GPG status messages REVKEYSIG and
1717 EXPKEYSIG. With this new feature, GPG 1.2.3 is required.
1718 * Make sure that the signature status does not cause an
1719 segfault.
1720 * WinPT.cpp: Use new check to detect the GPG version and make sure
1721 it is the minimum.
1722 * wptGPG.cpp (parse_version_nr): New.
1723 (check_gnupg_engine): Improved. Now it returns the actual version.
1724
1725 2003-08-24 Timo Schulz <[email protected]>
1726
1727 * wptPreferencesDlg.cpp (prefs_dlg_proc): Use better code to disable
1728 dialog controls.
1729
1730 2003-08-17 Timo Schulz <[email protected]>
1731
1732 * wptKeyManagerDlg.cpp (keymanager_dlg_proc):
1733 #ID_KEYMISC_EXPORT_PRIVKEY: Retrieve the current list view index. The
1734 value was malformed.
1735 * wptClipEditDlg.cpp (clip_edit_dlg_proc): Free global memory.
1736 * wptKeyserver.cpp (kserver_load_conf): If the file does not exist,
1737 don't bother the user with an error message. Closes #782751.
1738 * wptKeyEditDlgs.cpp (do_editkey_primary): New. Implement the
1739 "primary" edit key command.
1740 * wptKeyserverDlg.cpp (hkp_recv_key): New flag parameter. Now it is
1741 possible to supress the status message. This is useful when the whole
1742 keyring will be refreshed.
1743 * wptFileManager.cpp (fm_parse_command_line): Unquote file if needed.
1744 (quote_file): Avoid double quotes.
1745 * GPGME support for quoted file names.
1746 (fm_sym_encrypt): Double check password and to additional 8-bit checks.
1747 * WinPT.cpp (my_acces): Moved to this file..
1748 * wptGPG.cpp: ..here.
1749 (gpg_check_permissions): Renamed from check_permissions and make it global.
1750 * wptKeyManagerDlg.cpp (key_manager_dlg_proc): Check to make sure we
1751 have write access to the keyring for some commands.
1752
1753 2003-07-22 Timo Schulz <[email protected]>
1754
1755 * wptClipEditDlg.cpp (clip_edit_dlg_proc): Figure out the size of
1756 the text instead of allocating the maximum.
1757
1758 2003-07-13 Timo Schulz <[email protected]>
1759
1760 * wptKeygenDlg.cpp (check_passphrase): Check if the passphrase contains
1761 characters >= 127. Due to the fact that we use CP-1250 and GPG uses CP-850
1762 it would be a bad idea to use such passphrases. And thus we disallow it.
1763 * wptKeyEditDlgs.cpp (keyedit_change_passwd): Likewise.
1764 * wptSymEnc.cpp (gpgme_encrypt_symmetric): Likewise.
1765 * wptHotkey.cpp (hotkeys_strerror): Use capital letters.
1766
1767 2003-07-12 Timo Schulz <[email protected]>
1768
1769 * wptFileManager.cpp (fm_verify): Support for multiple signatures.
1770 * wptClipVerifyDlg.cpp (clip_verify_dlg_proc): Likewise.
1771 * wptProxySettingsDlg.cpp (read_proxy): Skip http:// prefix.
1772 * wptKeyserver.cpp (check_URL): Support for hkp://. Closes #755156.
1773 (kserver_connect): Likewise.
1774 (kserver_read_config): Likewise.
1775 * wptSymEnc.cpp (gpgme_encrypt_symmetric): Free memory if the passphrases
1776 are not equal.
1777 * wptKeyGenDlg.cpp (keygen_wizard_dlg_proc): New. An easy to use wizard to
1778 generate a key pair.
1779
1780 2003-06-24 Timo Schulz <[email protected]>
1781
1782 * Fixed filter code in Get{Open,Save}FileName. Changed all callers.
1783 Thanks to Alex.
1784 * wptKeyManager.cpp (km_delete_keys): Quote the user-id.
1785
1786
1787 2003-06-13 Timo Schulz <[email protected]>
1788
1789 * wptClipDecryptDlg.cpp (clip_decrypt_dlg): Quote the user-id name.
1790 * wptClipSignDlg.cpp (clip_sign_dlg_proc): Fix the code due to
1791 the fact the signer is now dymanic and not static.
1792 * wptGPG.cpp (check_gnupg_engine): Check if IDEA is available and
1793 change all code that it only shows an error if no plug-in was loaded.
1794 * wptKeyEditDlgs.cpp (is_cmd_openpgp): Remove REVKEY since you
1795 can revoke v3 keys.
1796 (do_editkey_revoke): Clarify command because it can be only used
1797 for secondary keys.
1798 * wptKeyManagerDlg.cpp (file_sign_dlg_proc): Make sure an error
1799 is issued when no key was selected. Thanks to vedaal.
1800
1801 2003-06-11 Timo Schulz <[email protected]>
1802
1803 * wptKeylist.cpp (keylist_add_key): Now the user-ids are in the
1804 right order and we do not use the last user-id but the first
1805 because this is always the primary user-id or the newest user-id.
1806 * wptGPGME.cpp (get_default_keyid): Removed. Some better code
1807 were added to get_gnupg_default_key.
1808
1809 2003-06-10 Timo Schulz <[email protected]>
1810
1811 * wptKeysignDlg.cpp (do_fill_seckeylist): Make sure disabled keys
1812 are skipped.
1813 (keysign_dlg_proc): Removed some redundant code.
1814 * wptKeyEditDlgs.cpp (is_idea_protect_algo): New. Find out if
1815 it is possible to change the passphrase.
1816
1817 2003-06-06 Timo Schulz <[email protected]>
1818
1819 * wptKeylist.cpp (keylist_get_recipients): Use a stronger warning
1820 message and include the user-id.
1821 * Encryption: use force overwrite (--yes) to make sure there are
1822 no complications with GPG.
1823 * Import: skip all record types we do not understand.
1824
1825
1826 2003-06-05 Timo Schulz <[email protected]>
1827
1828 * wptPassphraseCB.cpp (passphrase_callback_proc): Now the dialog
1829 shows all involved recipients and also the public key algorithm.
1830 * wptRegistry.cpp (reg_inst_winpt): If the user does not want
1831 the extensions, set the entry to "1" so the message is not shown
1832 again.
1833
1834 2003-06-04 Timo Schulz <[email protected]>
1835
1836 * wptKeylist.cpp (get_key_algo, get_key_size): Due to the fact
1837 that GPG uses the newest subkey by default, we always return
1838 the info of this subkey and not the first.
1839 * wptKeyImportStatusDlg.cpp (import_status_dlg_proc): Fixed off-by-one
1840 bug. Now the indicies are correctly.
1841 * wptGPG.cpp (gnupg_check_keyring): Do not free the value before
1842 get_file_size is called.
1843 * WinPT.cpp (WinMain): Only check the GPG engine version if there
1844 were no problems with the GPG config. And differ between a problem
1845 to get the version and if a wrong version were detected.
1846
1847
1848 2003-06-01 Timo Schulz <[email protected]>
1849
1850 * wptCurrWnd.cpp (rel_key, hit_key): Replaced with macros...
1851 (KEYDOWN, KEYUP): macros for the functions above.
1852
1853 2003-05-31 Timo Schulz <[email protected]>
1854
1855 * wptKeyManager.cpp (km_key_is_v3): Return if the selected
1856 key is an old PGP 2 (v3) key.
1857 * wptKeyManagerDlg.cpp (key_manager_dlg_proc): Only allow
1858 (#ID_KEYMISC_EDITKEY): Bail out if no key was selected.
1859 to add extented items if the key is NOT version 3.
1860 * wptKeyEditDlgs.cpp (keyedit_main_dlg_proc): Check if the
1861 key is v3 and forbid most commands.
1862 (is_cmd_openpgp): New.
1863
1864 2003-05-28 Timo Schulz <[email protected]>
1865
1866 * wptKeyManager.cpp (km_set_clip_info): New.
1867 * wptKeyManagerDlg.cpp (key_manager_dlg_proc): Use it here.
1868 * wptImportList.cpp (implist_build): Some column changes for
1869 the listview control.
1870 (implist_load): Return if secret keys were found.
1871 * wptClipImportDlg.cpp (data_cb_dlg_proc): Store if secret keys
1872 were found.
1873 (clip_import_dlg_proc): New message if secret keys were found.
1874
1875
1876 2003-05-25 Timo Schulz <[email protected]>
1877
1878 * wptImportList.cpp (implist_add_key): Address charset problem.
1879 * wptVerifyList.cpp (verlist_add_sig_log): Use UTF8 decoding.
1880 * wptKeyserver.cpp (set_default_kserver): New.
1881 (wsock_init): Call the new function.
1882 (kserver_load_conf): If the FP is invalid, skip to read the file.
1883 * WinPT.cpp (WinMain): Call set_default_kserver to make sure the
1884 item has a value.
1885
1886 2003-05-24 Timo Schulz <[email protected]>
1887
1888 * wptKeyEditDlgs.cpp (keyedit_main_dlg_proc): Subclass the two lists
1889 to allow to use virtual keys (DEL, INS).
1890 Release the uid control context when the dialog will be destroyed.
1891
1892
1893 2003-05-22 Timo Schulz <[email protected]>
1894
1895 * wptMainProc.cpp (winpt_main_proc): Set use_hotkey for current
1896 window mode sign+encrypt. This fixes a couple of other problems.
1897 * wptKeyPropsDlg.cpp (keyprops_dlg_proc): Get new values of the
1898 key when the cache was reloaded.
1899
1900
1901 2003-05-21 Timo Schulz <[email protected]>
1902
1903 * wptSiglist.cpp (siglist_add_key): Only list signatures which are
1904 user-id certificates (0x10-0x13) and ignore key and subkey sigs.
1905 c-strings are now handle correctly and decoded into GPGME.
1906
1907 2003-05-20 Timo Schulz <[email protected]>
1908
1909 * wptKeyPropsDlg.cpp (key_props_dlg_proc): Factor out code to change
1910 the passphrase from here to...
1911 * wptKeyEditDlgs.cpp (keyedit_change_passwd): ...this place.
1912
1913 2003-05-19 Timo Schulz <[email protected]>
1914
1915 * wptPasswdDlg.cpp (create_passwd_dlg): Removed.
1916 (request_passphrase): New.
1917 The passphrase_s context is now internal, all externl function use now
1918 request_passphrase. Changed all callers.
1919 * wptKeygenDlg.cpp (keygen_dlg_proc): Reworded the passphrase
1920 warning and a check for the comment field was added.
1921 * wptKeyEditDlgs.cpp: New. This file now combines the dialogs which
1922 has shown the subkeys and the userids.
1923 * wptKeySubkeyDlg.cpp: Deleted and stuff merged into wptKeyEditDlgs.cpp.
1924
1925 2003-05-17 Timo Schulz <[email protected]>
1926
1927 * wptFileManager.cpp: Moved gpgme_file_get_extension to this file
1928 and renamed it to...
1929 (file_get_extension): this. gpgme_control now also returns the
1930 (get_file_name): Corrected the calculation of the basename.
1931 state of the command if you use -1 as the value.
1932 * wptImportList.cpp (implist_load): Make sure we really have the key ID.
1933 * wptClipEditDlg.cpp (clip_edit_dlg_proc): Some small changes all over
1934 the place.
1935
1936 2003-05-14 Timo Schulz <[email protected]>
1937
1938 * wptKeyManager.cpp (km_enable_disable_key): New.
1939
1940 2003-05-13 Timo Schulz <[email protected]>
1941
1942 * wptKeyList.cpp (keylist_add_key): Add 'DISABLED' flag for keys.
1943 (key_check_validity): Moved from GPGME to this file.
1944 * wptKeyManager.cpp (km_get_key_status): New.
1945
1946 2003-05-09 Timo Schulz <[email protected]>
1947
1948 * wptMDSumDlg.cpp (mdsum_dlg_proc): New.
1949 * wptFileManager.cpp (fm_print_md): New.
1950 * wptFileManagerDlg.cpp (file_manager_dlg_proc): Support for the Print MD
1951 command.
1952
1953 2003-05-08 Timo Schulz <[email protected]>
1954
1955 * wptMainProc.cpp (winpt_main_proc): Symmetric encryption for the current
1956 window mode.
1957 (currwnd_gpg_dlg): Likewise.
1958 * wptCurrWnd.cpp (wnd_msg_em_set_pos): Fix an off-by-one bug.
1959 * WinPT.cpp (WinMain): If the default key was not found, show the string
1960 in the error message to make it easier for the user to fix the problem.
1961 * wptImportStatusDlg.cpp (import_status_dlg_proc): Take care of secret
1962 keys.
1963 * wptfileManager.cpp (fm_get_file_type): Fix packet type detection error.
1964 This makes the priority of the rc2 update more urgent.
1965
1966 2003-05-07 Timo Schulz <[email protected]>
1967
1968 * Clean up the outer GPGME interface. Internal functions should be
1969 invisible in gpgme.h.
1970 Merge the photo-id, formerly attribute id stuff with gpgme_key_get_xxx_attr.
1971 * wptKeyserver.cpp: Some cleanups.
1972 (finger_recvkey): Skip URL postfix if there.
1973
1974 2003-05-06 Timo Schulz <[email protected]>
1975
1976 * wptKeySigDlg.cpp (keysig_dlg_proc): Disable the button when all keys
1977 are available. Removed old [unused] code.
1978 Make sure we really have the key in the cache.
1979
1980 2003-05-04 Timo Schulz <[email protected]>
1981
1982 * wptClipEncryptDlg.cpp (clip_encrypt_dlg_proc): If invalid recipients
1983 were found, output a more precise error message. Now the GPGME code
1984 first tests for special cases and if no one hit the nail on the head,
1985 a general error is used.
1986
1987 2003-05-03 Timo Schulz <[email protected]>
1988
1989 * wptParser.cpp: Renamed to...
1990 * wptGPGParser.cpp: this.
1991 (release_option): Renamed to...
1992 (release_gpg_options): this.
1993 (commit_option): Renamed to...
1994 (commit_gpg_options): this.
1995 (parse_option): Renamed to...
1996 (parse_gpg_options): this.
1997 * wptGPG.cpp: Use new parser function names.
1998 (set_gnupg_default_key): Free memory.
1999 * wptKeylist.cpp (keylist_add_groups): New group code.
2000 * wptGroups.{c,h}: Removed. Now we use the GPG group command.
2001 * wptKeySigListDlg.cpp (keysig_dlg_proc): Change column from
2002 2 to 4.
2003 (recv_missing_keys): Likewise. Now it is possible to retrieve
2004 missing keys. Thanks to Klaus.
2005 * wptKeyserverDlg.cpp (hkp_recv_key): Use a dymanic buffer rather
2006 than a static buffer to avoid garbled keys. There are some very
2007 large keys and these cause some trouble with a 16k buffer.
2008 (keyserver_dlg_proc): Localized some strings.
2009 * wptKeyserverSearchDlg.cpp (hkpsearch_dlg_proc): Use new column
2010 names which are equal to the names we use in the Key Manager.
2011 * wptKeySignDlg.cpp (keysign_dlg_proc): Fix a silly '=' but
2012 should be "==" bug.
2013 * wptKeygenDlg.cpp (mbox): Removed. Too much overhead.
2014 * Add --expert option for the GPG procedure call if needed.
2015
2016 2003-05-02 Timo Schulz <[email protected]>
2017
2018 * wptW32API.cpp (set_foreground_wnd): Removed. Changed all callers.
2019
2020 2003-04-30 Timo Schulz <[email protected]>
2021
2022 * wptKeyManagerdlg.cpp (keymanager_dlg_proc): Support for the
2023 next context menu ("Add"). Make sure the entries are disabled
2024 when the key has no secret key.
2025 * wptKeyEditAddPhotoDlg.cpp (keyedit_addphoto_dlg_proc): New.
2026 * wptFileManager.cpp (fm_decrypt): Set sig to NULL so it won't
2027 cause a segfault when the pointer free tries to deallocate the
2028 pointer.
2029
2030 2003-04-27 Timo Schulz <[email protected]>
2031
2032 * wptKeysigDlg.cpp (keysig_dlg_proc): A double click now allows
2033 to show the properties of the signers keys.
2034 * wptKeyEditAddRevokerDlg.cpp (keyedit_addrevocer_dlg_proc): New.
2035
2036 2003-04-26 Timo Schulz <[email protected]>
2037
2038 * wptParser.cpp: A lot of structural changes. Always add items
2039 at the end of the list so we don't need to make a copy of the list
2040 to restore the original order. Fix the group problem.
2041 * wptKeylist.cpp (keylist_build): Use OR to get the flags and
2042 not ==.
2043 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): The export command
2044 (file) does not use the keyid as the file name when more than one
2045 keys were selected.
2046 Allow allow to set default keys which are not revoked or expired.
2047 * wptFileEncryptDlg.cpp (file_encrypt_dlg_proc): Allow to sort
2048 the columns.
2049 Set the force trust flag in GPGME if there are some recipients
2050 with no validity.
2051
2052 2003-04-25 Timo Schulz <[email protected]>
2053
2054 * wptVerList.cpp (verlist_build): Change the name of some columns.
2055 * wptClipVerifyDlg.cpp (clip_verify_dlg_proc): Instead of just the
2056 notation (if present!) present the user a general message box
2057 with extended signature information. This means the notation
2058 data and a possible policy URL.
2059
2060
2061 2003-04-24 Timo Schulz <[email protected]>
2062
2063 * wptKeyEditAddSubKeyDlg.cpp (keyedit_addsubkey_dlg_proc): Init
2064 default values to make it easier for newbies.
2065 * wptClipDecryptDlg.cpp (clip_decrypt_dlg): Use a better error
2066 when no secret key was found. Also mention the public key algo.
2067 * wptFileManager.cpp (fm_decrypt): Likewise.
2068
2069 2003-04-23 Timo Schulz <[email protected]>
2070
2071 * wptKeyPropsDlg.cpp (ownertrust_to_string): Moved the function
2072 from GPGME#gpgme_ownertrust_to_string into WinPT.
2073
2074 2003-04-20 Timo Schulz <[email protected]>
2075
2076 * wptClipboard.cpp: Removed. All these functions and constants
2077 are now available in MyGPGME/clip.c and thus part of GPGME.
2078 * wptKeylist.cpp (keylist_add_to_recipients): Renamed to...
2079 (keylist_get_recipients): this. Return the context instead of
2080 an argument.
2081 (get_key_size): Add key index.
2082 (get_key_algo): Likewise.
2083 (keylist_build): Use a special mode when signing is used.
2084 (keylist_enum_recipients): Return a malloced pointer to the
2085 recipients.
2086 * wptClipDecryptDlg.cpp (clip_decrypt_dlg): Add primary fingerprint
2087 when we have a signature result and we do not trust the key.
2088
2089 2003-04-20 Timo Schulz <[email protected]>
2090
2091 * wptFindWnd.h: Removed. We don't use it any longer.
2092 * wptGPG.h: Merged GPGERR_xxx constants with WPTERR_xxx.
2093 (gpg_strerror): Removed. Now it is handled in winpt_strerror.
2094 * wptFileManager.cpp (fm_get_file_name): move this to
2095 * wptVerifyList.cpp (get_file_name): ..this place and declare
2096 it as static because no other file need this function.
2097
2098 2003-04-15 Timo Schulz <[email protected]>
2099
2100 * wptClipImportDlg.cpp (data_cb_dlg_proc): New.
2101 (data_cb_thread): New.
2102 (data_cb_dlg_create): New.
2103 (data_cb_dlg_destroy): New.
2104 (data_cb_new): New.
2105 (clip_import_dlg_proc): Use a callback dialog to
2106 show the user the data decoding procedure is in
2107 progress. This dialog is destroyed in the key
2108 import statistics dialog.
2109
2110
2111 2003-04-13 Timo Schulz <[email protected]>
2112
2113 * wptSubkeyDlgProc.cpp (key_subkey_dlg_proc): Use a callback
2114 context.
2115 * wptUidDlgProc.cpp (keyuid_dlg_proc): Likewise.
2116 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Set the protect
2117 flag inside the KEY contect if needed.
2118 * wptKeySubkeyDlg.cpp (key_subkey_dlg_proc): Only ask for a
2119 passphrase if the protect flag is set.
2120 Display the callback dialog to show the progress.
2121 Implemented the "revkey" feature.
2122 * wptKeyUidDlg.cpp (key_uid_dlg_proc): Likewise.
2123 (do_add_new_userid): New. Add an entry to the list box
2124 after the GPG process finished.
2125 * wptClipDecryptDlg.cpp (clip_decrypt_dlg): Initialize sig
2126 to zero to avoid segfaults.
2127
2128 2003-04-12 Timo Schulz <[email protected]>
2129
2130 * wptClipVerifyDlg.cpp (clip_verify_dlg_proc): Use the new
2131 GPGME code.
2132 * wptVerifyList.cpp (verlist_add_sig_log): Likewise.
2133 * wptClipDecryptDlg.cpp (clip_decrypt_dlg_proc): Likewise.
2134 * wptFileManager.cpp (fm_decrypt): Likewise.
2135 * WinPT.cpp (check_default_key): Check if the keys in gpg.conf
2136 are valid and in the keyring.
2137 * wptKeySignDlg.cpp (do_check_protection): Disable the passphrase
2138 item if the key is not protected.
2139
2140
2141 2003-04-09 Timo Schulz <[email protected]>
2142
2143 * wptFirstRunDlg.cpp (first_run_dlg_proc): Mark selection as
2144 invalid for cancel.
2145
2146 2003-03-20 Timo Schulz <[email protected]>
2147
2148 * wptFindWnd.cpp: Removed.
2149 * wptW32API.c (dialog_box_param): Use FindWindowEx() instead of
2150 find_window.
2151 * Whenever it's possible, use case insentensive searches to avoid
2152 problems.
2153
2154 2003-03-19 Timo Schulz <[email protected]>
2155
2156 * wptMainProc.cpp (winpt_main_proc): Put the init_dtp code here.
2157 * wptPassphraseCB.cpp (hide_typing): Removed. Use short code directly
2158 in the code.
2159 * wptPasswdDlg.cpp: Likewise.
2160 (passphrase_cb_init): Declare as static.
2161 (passphrase_cb_gpgme): Modified to use the static function and rename
2162 it to...
2163 (passphrase_gpgme_set_cb): ..this. New.
2164 * wptSecListDlg.cpp: Complete new appraoch. Now we use CB_SETITEMDATA
2165 and friends to assign data to each item.
2166 Move dialog code to...
2167 * wptClipSignEncDlg.cpp: ..here.
2168 * MyGPGME/keycache.c: We first look for directly key signatures and
2169 then we skip all other signatures if we've already seen the key. This
2170 is needed to gather the designated revoker keys.
2171
2172 2003-03-18 Timo Schulz <[email protected]>
2173
2174 * wptKeyImportStatDlg.cpp (import_status_dlg_proc): Fix index
2175 of revocation from 9 to 8.
2176 Set the text that no key was updated only if no new sig, subkey,
2177 userid and no public were added.
2178 Add more information: new {subkeys, signatures, userid}.
2179 * wptKeyManager.cpp (km_delete_keys): Fixme lame, '=' instead of '==' bug.
2180 * wptDlgs.cpp: Removed.
2181 * wptDlgs.h: (dlg_fatal_error): New. Macro.
2182
2183 2002-03-16 Timo Schulz <[email protected]>
2184
2185 * wptKeyRevokeDlg.cpp (key_revoke_dlg_proc): Encode the
2186 optional text in UTF-8 to avoid charset problems.
2187 * wptKeyManager.cpp (km_quote_uid): Use dynamic memory instead
2188 of a static buffer. Changed all callers.
2189 * wptKeylist.cpp (keylist_cmp_cb): Implemented sort functions
2190 for the rest of the columns.
2191 (keylist_handle_column_click): New.
2192 * wptKeyEditOwnertrustdlg.cpp (keyedit_ownertrust_dlg_proc):
2193 Removed the 'Advanced' button because it only confuses users
2194 and it is not often used.
2195 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Support to ex-
2196 and import the trustdb values (ownertrust).
2197 * wptClipEncryptDlg.cpp (clip_encrypt_dlg_proc): Ability to
2198 sort columns.
2199
2200 2002-03-09 Timo Schulz <[email protected]>
2201
2202 * 64-bit support for wipe operations.
2203
2204 2002-03-08 Timo Schulz <[email protected]>
2205
2206 * wptFileManager.cpp (fm_parse_command_line): Ignore lines with '--'
2207 because they are options rather than files.
2208 * WinPT.cpp (WinMain): Allow to start the key manager directly
2209 via --keymanager.
2210 * wptFileManagerDlg.cpp (file_secdel_confirm_dlg_proc): New.
2211 (wipe_cb): New. Wipe callback function.
2212 (fill_drive_combobox): New. Fill in all logical drives into
2213 the given combo box.
2214 (wipe_thread): New. Worker thread.
2215 (update_disc_stats): New. Set the disc statistics for the
2216 given drive entry.
2217 (space_wipefrees_dlg_proc): New.
2218
2219 2002-03-01 Timo Schulz <[email protected]>
2220
2221 * wptFileManager.cpp (fm_check_file_type): Fix bug in the detection
2222 logic. Now we can decrypt symmetrically encrypted files again.
2223 Be stricter on memory alloaction checks.
2224 (fm_get_file_type): Be more strict with the return code of
2225 parse_packet. This avoids bogus file types for MS-Word files and
2226 other non-PGP data.
2227 (fm_wipe): Use the wipe mode from the registry and not a fixed value.
2228 * WptRegistry.cpp (set_reg_winpt_prefs): Support wipe mode.
2229 (get_reg_winpt_prefs): Likewise.
2230 * wptFilePrefsDlg.cpp: Removed. We don't use it any longer.
2231 * wptDlgs.h: Corrected all dialog protypes to BOOL.
2232 LRESULT was not correct.
2233
2234 2002-02-08 Timo Schulz <[email protected]>
2235
2236 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Only export
2237 the secret key when a file was chosen.
2238
2239 2002-02-01 Timo Schulz <[email protected]>
2240
2241 * wptKeyserver.cpp (kserver_search): Fix <KEYID bug.
2242
2243 2002-01-25 Timo Schulz <[email protected]>
2244
2245 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Support to copy the key id
2246 and the fingerprint to the clipboard. Closes #674455.
2247 Automatically reload the keycache when a command is chosen and the cache
2248 state is set to 'reload requested'. Closes #671218.
2249 * wptKeySignDlg.cpp (do_fill_seckeylist): Make sure the public key parts
2250 are not invalid.
2251 * WinPT.cpp (check_permissions): Make sure we have the permission to
2252 write the keyring. Stop if not because it's expected at many other places.
2253 * wptSigList.cpp (siglist_add_key): Indent signatures under the root entry.
2254 (siglist_build): Use a placeholder sig to avoid the position chaos.
2255 * wptKeyUidDlg.cpp: Unified text for 'user-ID'.
2256 * wptClipVerifyDlg.cpp (clip_verify_dlg_proc): If a key is not found,
2257 display more information and use a GPG like output.
2258 * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Force trust if there is
2259 an invalid key in the list of recipients. Closes #674965.
2260
2261
2262 2002-01-21 Timo Schulz <[email protected]>
2263
2264 * wptSymEnc.cpp (gpgme_encrypt_symmetric): Ask the passphrase twice to
2265 avoid typing mistakes.
2266
2267 2003-01-19 Timo Schulz <[email protected]>
2268
2269 * winpt.cpp (WinMain): Fixed spelling mistake. Closes #669321.
2270 * wptKeyManagerDlg.cpp (do_resize_window): New.
2271 (do_create_minpopup): New. Closes #669730.
2272 * wptVerifyList.cpp (get_sig_date): Renamed to...
2273 (longdate_to_strdate): New. Changed all callers.
2274 * wptClipDecryptDlg.cpp (clip_decrypt_dlg): If the ciphertext contains
2275 a signature, also display the time of it. Closes #669780.
2276 * wptKeyImportStatusDlg.cpp (import_status_dlg_proc): Localize 2 strings.
2277 * wptEditKeyOwnertrust.cpp (keyedit_ownertrust_dlg_proc): Fixed a typo.
2278 * wptKeySignDlg.cpp (do_add_local_user): New. Now the dialog has the ability
2279 to choose the signer.
2280 (keysign_dlg_proc): Implemented a feature request. See above.
2281
2282 2003-01-08 Timo Schulz <[email protected]>
2283
2284 * wptKeyEditAddUidDlg.cpp (keyedit_adduid_dlg_proc): Output a warning
2285 if the user tries to add the email address in the name field.
2286 * wptKeyserver.cpp: Add support for protocols.
2287 (finger_readline): New.
2288 (finger_recvkey): New.
2289 * wptKeyUidDlg.cpp (keyuid_dlg_proc): Add a warning icon to the revoke
2290 message box to show it's a serious decision.
2291 * wptPasswdDlg.cpp (passwd_dlg_proc): Center dialog window.
2292 * wptRegistry.cpp (regist_single_filetype): Now internal and we use
2293 an easier way to get the location of the binary.
2294 (regist_inst_winpt): Implemented the 'with_ext' part and add a registry
2295 entry to avoid double file registering.
2296
2297 2003-01-07 Timo Schulz <[email protected]>
2298
2299 * wptKeyManagerDlg.cpp (do_center_window): New. Try to set the window
2300 pos from the coordinates from the registry.
2301 (keymanager_dlg_proc): Store the window pos in the registry.
2302 * wptKeyRevokeDlg.cpp (key_revoke_dlg): Check box for PGP compatible certs.
2303 * wptKeyImportStatusDlg.cpp (import_status_dlg_proc): Print out a hint when
2304 a revcert was found.
2305 * wptKeyserverDlg.cpp (hkp_recv_key): Print an error if the LDAP import does
2306 not succeed.
2307 (keyserver_dlg_proc): Corrected some listview index values.
2308 * wptKeylist.cpp (keylist_add_key): Use primary user-id when possible.
2309
2310 2002-12-23 Timo Schulz <[email protected]>
2311
2312 * wptRegistry.cpp (regist_inst_winpt): Try to create \Keyserver
2313 directory if does not exist.
2314 * wptKeyserver.cpp: Simpliefied config file.
2315 (kserver_change_proxy): Write config to the registry. Remove
2316 code for the config file.
2317 * wptProxySettingsDlg.cpp (read_proxy): More robust code.
2318 * wptKeyserverDlg.cpp (keyserver_dlg_proc): Removed the feature
2319 to send keys. The Key Manager is better for this.
2320
2321
2322 2002-12-21 Timo Schulz <[email protected]>
2323
2324 * Fixed some language mistakes.
2325 * wptMainproc.cpp: Use the desktop window as the parent window
2326 for the main dialogs so they are visible in the taskbar.
2327 * wptKeyManagerDlg.cpp: Enable minimize.
2328 * wptFileManager.cpp (fm_parse_command_line): Support for detached
2329 signatures.
2330 (fm_encrypt_directory): New.
2331 * wptKeylist.cpp (keylist_add_key): Check the current key if it
2332 is not expired, not the primary (idx=0).
2333
2334 2002-12-18 Timo Schulz <[email protected]>
2335
2336 * wptGPG.cpp (get_gnupg_optfile): Support for gpg.conf instead
2337 of the old name "options".
2338 * WinPT.cpp (WinMain): Try to repair broken home directories
2339 in the registry. Thanks to Gustavo who reminded me of it.
2340 * wptKeyserver.cpp (check_hkp_response): Only copy the text
2341 between <p> and </p> when possible.
2342 * wptAgent.cpp: Re-activated the old code. Now the passphrase
2343 timer can be used.
2344
2345 2002-12-14 Timo Schulz <[email protected]>
2346
2347 * wptKeyManager.cpp (km_check_for_seckey): Ultimate doesn't mean
2348 any longer there is also a secret key.
2349 (km_check_photo): New.
2350 (km_complete_status_bar): New.
2351 * wptFileManager.cpp (fm_verify): Support for bad signatures.
2352 Set the sigmode if not set.
2353 * wptKeyPropsDlg.cpp (keyprops_dlg_proc): Output a warning when
2354 the ownertrust of a non-valid (not signed) key is changed.
2355 * wptRegistry.cpp (expand_path): New. Use this code because it's
2356 much shorter.
2357
2358 2002-10-14 Timo Schulz <[email protected]>
2359
2360 * wptKeyserver.c: Replaced all strdup's with m_strdup and free
2361 with free_if_alloc.
2362 (ldap_recvkey): Fill with life. We use the GPG plugin to avoid
2363 all the LDAP overhead.
2364
2365 2002-10-13 Timo Schulz <[email protected]>
2366
2367 * wptKeyManager.cpp (km_file_import): Alloc buffer, it's not static
2368 any longer.
2369
2370 2002-10-31 Timo Schulz <[email protected]>
2371
2372 * wptKeyManager.cpp (km_update_default_key_str): Fixed '0x' handling.
2373 Thanks to Gustavo.
2374 * wptKeylist.cpp (add_key): Now we only use find_secret_key to detect
2375 whether it's a key pair or not.
2376 * Callback struct into KEY so we can modify the values in the background.
2377 * wptKeyPropsDlg.cpp (change_ownertrust): New.
2378
2379 2002-10-30 Timo Schulz <[email protected]>
2380
2381 * wptLDAP.cpp, wptLDAP.h: Removed. The plan is to use the gpgkey_xxx.exe
2382 LDAP plugin for this purpose.
2383 * wptMainproc.cpp (winpt_main_proc): Removed all LDAP stubs.
2384 * wldap32.lib is now not longer needed.
2385 * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Copy userid to clipboard.
2386 * Updated the resource file.
2387 * wptFileManager.cpp (fm_parse_command_line): Implemented the stuff
2388 for 'Decrypt', 'Verify', 'Import'.
2389
2390 2002-10-15 Timo Schulz <[email protected]>
2391
2392 * Changed all s(n)printf -> msg_box constructs to log_box.
2393
2394 2002-10-13 Timo Schulz <[email protected]>
2395
2396 * wptKeylist.cpp (get_key_expire_date): New.
2397 * wptKeyPropsDlg.cpp (key_props_dlg_proc): Use it here.
2398
2399 * Removed global keycache from GPGME. It's a bad style to mix
2400 general and specific interfaces.
2401
2402 * wptGPGME.cpp (get_pubkey): New. Used to hide keycache implementation
2403 details. Useful to replace it later.
2404 (get_seckey): Ditto.
2405 (keycache_reload): Moved from the GPGME library.
2406 (keycache_release): New.
2407 (keycache_init): New.
2408 (keycache_set_reload): New.
2409 (keycache_get_reload): New.
2410 (keycache_get_ctx): New.
2411
2412 * wptSigList.cpp (siglist_add_key): Use the new code.
2413 (siglist_build): Ditto.
2414
2415
2416 2002-10-10 Timo Schulz <[email protected]>
2417
2418 * wptW32API.cpp (get_filename_dlg): Added default filename parameter.
2419 Changed all callers.
2420 * wptKeyManagerDlg.cpp (keymisc_dlg_proc): Adjusted the code for the
2421 new get_filename_dlg.
2422 * wptFileManager.cpp (fm_export): Likewise.
2423 * wptClipDecryptDlg (clip_decrypt_dlg): Modified the verify message box.
2424 * wptKeySignDlg.cpp (keysign_dlg_proc): Changed the code for edit-key.
2425 Use signature class dialog.
2426 * wptKeyRevokeDlg.cpp (key_revoke_dlg_proc): Use the new code and the
2427 keyid instead of the userid to avoid charset problems.
2428 (err_message): New.
2429
2430 * Moved all wipe specific code (random, rmd160) to the DLL so we can
2431 save some memory for the tray section.
2432
2433 * wptKeyRevokersDlg.cpp (revokelist_build): New.
2434 (revokelist_init): New.
2435 (key_revokers_dlg_proc): New.
2436
2437 * wptKeyPropsDlg.cpp (key_props_dlg_proc): Use the designated revoker
2438 code here when available.
2439
2440 2002-09-25 Timo Schulz <[email protected]>
2441
2442 * wptClipboard.cpp (clip_parse_pgp_id): Add a flag when the text
2443 is dash escaped. This is useful for keys to avoid errors.
2444 * wptKeyManager.cpp (extract_dash_escaped_key): New. Extract an
2445 OpenPGP key from the clipboard which is dash escaped.
2446 (km_clip_import): Use the new code here.
2447
2448 2002-09-23 Timo Schulz <[email protected]>
2449
2450 * wptParser.cpp (add_multi_option): Support for values with more ' 's
2451 and skip the ' ' after the name.
2452 (modify_entry): New.
2453 * wptGPG.cpp (gnupg_save_options): Removed.
2454 (gnupg_load_options): Removed.
2455 (gnupg_release_options): Removed.
2456 * wptGPGPrefsDlg.cpp (gpgprefs_dlg_proc): Use the new code.
2457
2458 2002-09-17 Timo Schulz <[email protected]>
2459
2460 * winpt.cpp (WinMain): Use make_filename and no static buffer.
2461 Modified for the new gnupg interface.
2462 * wptFile.cpp (make_filename): New.
2463 * wptGpgCmds.h: New from GPG 1.1.92
2464 * wptGPG.cpp (gnupg_import_keyrings): Use dynamic buffers
2465 and make_filename.
2466 * wptKeygenDlg.cpp (ask_for_backup): Use new gpg code and
2467 make_filename instead of static buffers.
2468 * wptKeyCacheDlg.cpp (keycache_dlg_proc): Likewise.
2469 * wptParser.cpp: Changed to new allocation instead of malloc.
2470 * wptGPGOptSkel.h: Updated from GPG 1.1.92
2471 * wptRegistry.cpp (get_reg_entry): Expand %s like registry strings.
2472
2473 2002-09-13 Timo Schulz <[email protected]>
2474
2475 * wptKeyManager.cpp (km_show_photo): Use a const buffer for the
2476 image and do NOT free it.
2477 * wptKeyUidDlg.cpp (keyuid_dlg_proc): Implement "revoke" function.
2478 (find_user_id): Use keyid to find the key. Changed all callers.
2479
2480 * Removed global gpg_version variable. Now we also support GPG 1.1.9x
2481 so we don't need to check this after the start again.
2482
2483 2002-09-12 Timo Schulz <[email protected]>
2484
2485 * wptPasswdDlg.cpp (passwd_dlg_proc): Implement the "Hide Typing" fature.
2486 * wptKeyManagerDlg.cpp (keymisc_dlg_proc): Off by one bug for secret
2487 key export.
2488 * wptKeyManager.cpp (fm_encrypt): Use the new GPG status messages to
2489 check if the encryption failed.
2490 (km_show_photo): Fixed offset calculation.
2491 Use keyid as filename and delete the tempfile after use.
2492 * wptFile.cpp (init_file_lock): Use dynamic buffer.
2493 (release_file_lock): Free this buffer.
2494 * wptFileManager.cpp (quote_filename): Removed.
2495 (quote_file): New. Use dynamic buffers.
2496 (fm_import, fm_decrypt, fm_encrypt, fm_sym_encrypt, fm_export):
2497 Use it here.
2498 * wptFileStatDlg.cpp (do_list_packets): Do not cache FD.
2499 Initalize packet at the begin and during the loop.
2500 * wptFileManager.cpp: Replaced all static memory handling with
2501 dynamic routines.
2502 * wptKeyCacheDlg.cpp (key_cache_dlg): Remove obsolete ownertrust
2503 functions.
2504 * wptKeyPropsDlg.cpp (keyprops_dlg_proc): Ditto.
2505
2506 2002-09-10 Timo Schulz <[email protected]>
2507
2508 * wptFileManager.cpp (fm_get_file_type): Disable FD cache.
2509 (fm_decrypt): Only cut off the extension if it belong to GPG.
2510 Added user ID to the box if the file was signed.
2511 Ask for the filename if the name has no valid GPG extension.
2512
2513 2002-09-09 Timo Schulz <[email protected]>
2514
2515 * wptKeyManagerDlg.cpp (keymisc_dlg_proc): Improved code for
2516 the privat key (export).
2517
2518 2002-09-08 Timo Schulz <[email protected]>
2519
2520 * wptKeygenDlg.cpp (ask_for_backup): Check if the copy process
2521 really succeeded.
2522 (mbox): Alias for msg_box with fixed title to avoid long lines.
2523 * wptKeyEditAddSubkeyDlg.cpp (keyedit_addsubkey_dlg_proc): Allow
2524 to generate keys with a length til 4096 bits.
2525 * wptClipEncryptDlg.cpp (clip_encrypt_dlg_proc): Check for
2526 invalid recipients and print out the reasons.
2527 * wptKeylist.cpp (keylist_add_to_recipients): Improved error message
2528 and corrected the validity checking.
2529
2530 2002-09-07 Timo Schulz <[email protected]>
2531
2532 * wptClipVerifyDlg.cpp (clip_verify_dlg_proc):
2533 Print notation data when available.
2534 Show if the signature is expired or not.
2535
2536 * wptKeyManagerDlg.cpp (keymisc_dlg_proc): Added the show photo
2537 command to the context menu.
2538
2539 * wptKeygenDlg.cpp (keygen_dlg_proc): New default keysize is 1792.
2540 This is 256 bits more than the old size. Hopefully it's enough
2541 security to protect against the most enemies ;-).
2542
2543 2002-09-04 Timo Schulz <[email protected]>
2544
2545 * wptKeyManager.cpp (km_check_key_status): Parse new fields.
2546
2547 2002-09-03 Timo Schulz <[email protected]>
2548
2549 Removed all OpenCDK code from PTD. The code is not tested very
2550 well and it might contain some errors. Now we used a stripped down
2551 version of GnuPG code. This has two advantages. First the code is
2552 stable and second we can easier port other parts to native GPG code.
2553
2554 * wptFileManager.cpp (fm_get_file_type): Use native GPG code.
2555 * wptKeyCacheDlg.cpp (keycache_dlg_proc): Add photos from the
2556 keyring when present to the keycache.
2557 * wptKeyManager.cpp (km_show_photo): Fixes to work again with the
2558 modified code.
2559 (km_check_for_seckey): Check substrings of the value because we
2560 don't use '**' values any longer.
2561 * wptFileStat.cpp (do_list_packets): New. Adapted from the old code.
2562 (file_stat_dlg_proc): Uses the new code.
2563
2564 2002-09-02 Timo Schulz <[email protected]>
2565
2566 * wptKeyManager.cpp (km_privkey_export): Check return codes and
2567 some types has been changed.
2568 (km_file_export): Likewise.
2569
2570 2002-09-01 Timo Schulz <[email protected]>
2571
2572 * wptFirstRunDlg.cpp (get_setup_choice): New. Returns the choice
2573 of the dialog.
2574 * WinPT.cpp (WinMain): Use it here. Reworded the error message.
2575 * wptGPG.cpp (gpg_import_keyrings): New.
2576 Let the user chose the keyrings and then they are copied to the
2577 homedir. After the procedure, the key cache will be reloaded.
2578 * wptKeyManager.cpp (km_delete_keys): New delete confirmation messages.
2579 * wptSigClassDlg.cpp (sig_class_dlg_proc): New.
2580 (get_sig_class_choice): New.
2581 * wptKeySignDlg.cpp (get_printable_fpr): New. More human readable
2582 fingerprint.
2583 (keysign_dlg_proc): Added new value for the GPG callback to handle
2584 the signature class.
2585 * wptKeyUIDDlg.cpp (find_user_id): New. Find the index of the
2586 userID by calling edit-key with colons.
2587 (keyuid_dlg_proc): Use it here.
2588
2589 2002-08-31 Timo Schulz <[email protected]>
2590
2591 * wptGPG.cpp (gpg_check_homedir): Some fixes for the return codes.
2592 (check_homedir): Ask the user whether to create the directory.
2593 * wptKeysigDlg.cpp (keysig_dlg_proc): Fixed keyid. Now it works
2594 to retrieve missing keys from a HKP server.
2595 (recv_missing_keys): Likewise.
2596 * wptPassphraseCB.cpp (passphrase_callback_proc):
2597 Implemented the "Hide Typing" feature.
2598 (hide_typing): New.
2599 * wptGPGPrefsDlg.cpp (gpgprefs_dlg_proc): Improved error messages.
2600 * wptClipDecryptDlg.cpp (clip_decrypt_dlg): Improved MDC handling.
2601 Due to some attacks a MDC error is treated as a fatal error and a
2602 possible security risk.
2603 * wptClipImportDlg.cpp (print_import_status): Use a dialog instead
2604 of a silly message box. Furthermore the user gets more information
2605 about the import procedure.
2606 * wptKeyImportStatusDlg.cpp (import_status_dlg_proc): New.
2607 * wptFileManager.cpp (fm_import): Report invalid user ID's.
2608 (fm_verify): Try to guess the data name for detached signatures
2609 before we bother the user. When it's found, use it.
2610 * wptKeyManager.cpp (km_file_import): Ditto.
2611
2612 2002-08-28 Timo Schulz <[email protected]>
2613
2614 * wptClipboard.cpp (clip_parse_pgp_id): Support for PGP 2.6.x types.
2615 * wptFileMananger.cpp (fm_check_armor_type): Ditto.
2616
2617
2618 2002-08-26 Timo Schulz <[email protected]>
2619
2620 * wptTypes.h (free_if_alloc, CHECK_BOUND): New.
2621 * wptClipEditDlg.cpp (gpgopt_dlg_proc): Use free_if_alloc to make sure
2622 the memory is really released. Some strict checks for return values.
2623 Ident file.
2624
2625 * wptAboutDlg.cpp: Ditto. (ident)
2626 * wptGPGAboutDlg.cpp: Ditto.
2627 * wptClipDecryptDlg.cpp: Ditto.
2628 (clip_decrypt_dlg): Stricter return value checkings.
2629 Avoid one indent level.
2630
2631 * wptImportList.cpp (implist_add_key): More strict return value
2632 checking.
2633 * wptKeylist.cpp (keylist_cmp_cb): Fixed a typo.
2634 (add_key): New key status system.
2635 (keylist_get_keyflags): New.
2636 (keylist_enum_recipients): Simplified and use the new key flags.
2637
2638 * wptSiglist.cpp (siglist_add_key): Fix possible overflows.
2639 (verlist_add_sig_log): More stricter checks.
2640
2641 * wptRegistry.cpp (get_reg_winpt_prefs): Fixed possible bug.
2642
2643 2002-06-16 Timo Schulz <[email protected]>
2644
2645 Don't put the questions in the message box title bar.
2646
2647 * wptGPGPrefsDlg.cpp (gpg_prefs_dlg_proc): Only close FP if it
2648 is really opened. Thanks to Nelson.
2649
2650 * wptKeyProps.cpp (keyprops_dlg_proc): Use a more informative title
2651 for chaning the passphrase. Suggested by Ed.
2652
2653 2002-06-07 Timo Schulz <[email protected]>
2654
2655 * wptMainProc.cpp (winpt_main_proc): Support for sign & encrypt hotkeys.
2656 * wptKeyManagerDlg.cpp: Refresh keys was added in the menu.
2657 * wptListView.cpp (listview_select_all): New.
2658 * wptClipSignDlg.cpp (clip_sign_dlg_proc): Fixed the return code.
2659
2660 2002-05-31 Timo Schulz <[email protected]>
2661
2662 * wptTrayPop.cpp: Revamped some parts of the code.
2663
2664 Changed all status_box functions to show_msg. The advantage
2665 is that we only wait a fixed time and the user doesn't need
2666 to hit the OK key. We should add the time delay in the preferences.
2667
2668 * wptKeyManager.cpp (km_show_photo): New.
2669
2670 2002-05-30 Timo Schulz <[email protected]>
2671
2672 * wptFileManager.cpp (fm_verify): Corrected the handling
2673 for detached RSA signatures.
2674 (fm_add_sig_stat): Added support for short fingerprints.
2675
2676 2002-05-08 Timo Schulz <[email protected]>
2677
2678 * wptKeyserver.cpp (kserver_change_proxy): Check the values.
2679 Thanks to njek for reporting it.
2680
2681 2002-05-07 Timo Schulz <[email protected]>
2682
2683 * wptGPG.cpp (check_gpg_engine): New.
2684
2685 * wptKeyCacheDlg.cpp (keycache_dlg_proc): Add GPG 1.0.6 compatible
2686 routines.
2687
2688 * wptKeyPropsDlg.cpp (keyprops_dlg_proc): Ditto.
2689
2690 * wptKeyEditOwnertrustDlg.cpp (keyedit_owerntrust_dlg_proc): Ditto.
2691
2692 2002-05-06 Timo Schulz <[email protected]>
2693
2694 * wptClipEditDlg.cpp (clip_edit_dlg_proc): Change the wording of
2695 the buttons.
2696
2697 2002-05-05 Timo Schulz <[email protected]>
2698
2699 * Fixed problem with rev certs for imports stats.
2700
2701 * Cosmetical changes for the GPGME libraray.
2702
2703 2002-05-01 Timo Schulz <[email protected]>
2704
2705 * wptKeygenDlg.cpp (fill_keytype_box): New.
2706 (keygen_dlg_proc): Use a combo box for various key types. With GPG 1.0.7
2707 there is full RSA support.
2708
2709 Now we use the new status code by GPG (INV_RECP, NO_RECP) to figure out
2710 what the problem was when no encryption was done.
2711
2712 * wptKeysignDlg.cpp (keysign_dlg_proc): Before we sign a key, we make
2713 sure it was not already signed (ALREADY_SIGNED).
2714
2715 * wptKeyManagerDlg.cpp (keymisc_dlg_proc): Due to the new trust system,
2716 now we also support to sign ultimate trusted keys.
2717
2718 * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Try to check if the button
2719 is checked and do not check it.
2720
2721 * wptClipDecryptDlg.cpp (clip_decrypt_dlg_proc): New format for the verify
2722 box and now we also support the date of the signature.
2723
2724 Applied Rich's spelling and grammer mistakes.
2725 Fixed a lot of minor spelling mistakes and capital letters for dialogs.
2726
2727 2002-04-30 Timo Schulz <[email protected]>
2728
2729 Merge ownertrust handling into the keycache. Now GPG outputs the
2730 ownertrust in the key listing which means we can get the ownertrust
2731 value from the keycache.
2732
2733 (keymisc_dlg_proc): Add a button to rebuild the sig database cache.
2734 Please not that this is not the same as the key cache! The key cache
2735 will be updated when a new key was imported or a subkey was added/changed.
2736 The signature cache only affects the validity of the keys.
2737
2738 Removed the MyGPGME trustlist code. Now we can use the field in the key
2739 listing to determine the ownertrust (which makes things a lot of easier).
2740
2741 2002-04-29 Timo Schulz <[email protected]>
2742
2743 Adjustments for GPG 1.0.7
2744
2745 * wptKeyEditDlg.cpp (keyedit_ownertrust_dlg_proc): Support ultimate trust
2746 and ask the user if he knows what he's doing.
2747 * wptKeyManager.cpp
2748 (keylist_subclass_proc): Use double click to open the props.
2749 * wptKeyPropsDlg.cpp (keyprops_dlg_proc): Allow the user even to modify a
2750 ultimate ownertrust value.
2751 * wptKeyEditAddSubkeyDlg.cpp (keyedit_addsubkey_dlg_proc): Support for
2752 new RSA keys.
2753
2754 2002-04-28 Timo Schulz <[email protected]>
2755
2756 * wptRegistry.cpp (get_reg_winpt_prefs): New option for keylist mode.
2757 (set_reg_winpt_prefs): Ditto.
2758 * wptPreferencesDlg.cpp (prefs_dlg_proc): Support for keylist mode option.
2759 (set_keylist_mode): New.
2760
2761 Implement minimal keylist mode. Suggested by Fabian.
2762
2763 * wptClipEncryptDlg.cpp (clip_encrypt_dlg_proc): Implement it here.
2764 * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Ditto.
2765 * wptKeylist.cpp (keylist_add_key): Ditto.
2766 (keylist_load): Ditto.
2767 (keylist_build): Ditto.
2768
2769 2002-04-27 Timo Schulz <[email protected]>
2770
2771 * wptClipVerifyDlg.cpp (clip_verify_dlg_proc): Support for the new dialog.
2772 * wptFileSaveDlg.cpp (file_save_dlg_proc): New.
2773 * wptClipboard.cpp (clip_parse_pgp_id): use logical OR to concat the values.
2774 * wptMainProc.cpp (clip_gpg_dlg): Use the new PGP id's.
2775 (currwnd_gpg_dlg): Ditto.
2776
2777 Now it's possible to parse cleartext signatures which contains an
2778 encrypted message inside the body.
2779
2780 * wptTextInputDlg.cpp (load_file_contents): New.
2781 (text_input_dlg_proc): Support for choosing the data file.
2782
2783 * wptFileManager.cpp (fm_verify): Support for detached signatures.
2784 (fm_parse_files): Ditto.
2785
2786
2787 2002-04-26 Timo Schulz <[email protected]>
2788
2789 * wptKeyUidDlg.cpp: Fixed a typo. Kudos to Dugan Chen.
2790 * wptKeyUidDlg.cpp: Ditto.
2791
2792 2002-04-25 Timo Schulz <[email protected]>
2793
2794 * wptImplist.cpp (implist_add_key): Catch possible segfault.
2795 * wptVerifyList.cpp (verlist_add_sig): Ditto.
2796 * wptKeyManager.cpp (km_check_for_seckey): Modified for GPG 1.0.7.
2797 * wptKeylist.cpp (find_secret_key): New.
2798 (add_key): Use it here.
2799 (keylist_add_key): And here.
2800
2801 * wptClipVerifyDlg.cpp (clip_verify_dlg_proc): Fixed a bug that prevent
2802 to fetch the key.
2803
2804 2002-04-24 Timo Schulz <[email protected]>
2805
2806 * wptKeyManagerDlg.cpp (key_misc_dlg_proc): Support to maximize windows.
2807
2808 Changed the way to modify the "Version:" string.
2809
2810 * wptKeyserver.cpp (add_node): New.
2811 (kserver_change_proxy): New.
2812 (kserver_read_config): New.
2813 (kserver_write_config): New.
2814 (kserver_cfgfile_release): New.
2815 (proxy_release): New.
2816
2817 * wptProxySettingsDlg.cpp (read_proxy): New.
2818 * wptFileStatDlg.cpp (file_stat_dlg_proc): New.
2819 * wptFileManager.cpp (fm_list): New.
2820 (fm_parse_files): Support the new list command.
2821
2822 2002-04-23 Timo Schulz <[email protected]>
2823
2824 * wptRFC2440.cpp: Removed. We now use the OpenCDK package.
2825 * wptFileManager.cpp (fm_get_file_type): Removed the old RFC2440 code.
2826 (fm_encrypt): Modified code to allow sign & encrypt.
2827 (fm_parse_file): Ditto.
2828 (fm_decrypt): Support for checking signatures.
2829 * wptFileManagerDlg.cpp (file_manager_dlg_proc): Ditto.
2830
2831 2002-04-19 Timo Schulz <[email protected]>
2832
2833 * wptImplist.cpp (implist_load): Support for the advanced PGP parser code.
2834
2835 2002-04-05 Timo Schulz <[email protected]>
2836
2837 * wptSigList.cpp (siglist_add_key): Added UTF8 support. Thanks to Scire.
2838 * wptKeyUidDlg.cpp (keyuid_dlg_proc): Ditto.
2839 * wptKeySignDlg.cpp (keysign_dlg_proc): Ditto.
2840 * wptKeyAddUidDlg.cpp (keyedit_adduid_dlg_proc): Ditto.
2841
2842 2002-03-31 Timo Schulz <[email protected]>
2843
2844 * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Ask if the user wants to
2845 select the key used for signing.
2846 * wptSeclistDlg.cpp (seclist_dlg_proc): New. Dialog for secret selecting.
2847 * wptFilePrefsDlg.cpp (file_prefs_dlg): Fixes for the combo box ;-).
2848 * wptClipVerifyDlg.cpp (clip_verify_dlg_proc): Reload the keycache after
2849 fetching keys via HKP and try to update the Gpgmekey inside.
2850 * wptVerifyList.cpp (verlist_add_sig): Check if the key context was
2851 set inside the signature. Fixes some segfaults related to the HKP key
2852 fetching during verification. Thanks to Julian. And force to use UTF8
2853 for user ID's.
2854 * wptClipSignDlg.cpp (one_key_proc): If only one secret exists,
2855 prevent that the dialog is loaded and ask for the passphrase directly.
2856
2857
2858 2002-03-29 Timo Schulz <[email protected]>
2859
2860 * wptGPG.cpp (create_groupdb): Only close the file handling if it
2861 really exists. Thanks to Mark.
2862 (gpg_check_homedir): Applied the patch. Now we're a little stricter
2863 about the homedir checks.
2864 (check_homedir): Fixed a possible memory leak.
2865 * WinPT.cpp (WinMain): Check the homedir functions to exit the program
2866 if we've found some problems.
2867 * wptErrors.cpp (winpt_strerror): New value if a directory could not
2868 created.
2869 * wptMainProc (winpt_main_proc): Use new code for the current window mode.
2870 * wptCurrWnd.cpp (get_curr_wnd): Ditto.
2871 (get_window_contents): Always set focus to the current window.
2872
2873 2002-03-22 Timo Schulz <[email protected]>
2874
2875 * wptMainProc.cpp (currwnd_gpg_dlg): If the viewer is used, doesn't
2876 set window contents for some commands.
2877 (winpt_main_proc): Use the code here.
2878 * wptKeygenDlg.cpp (keygen_dlg_proc): Allow to generate keys > 2048 bits.
2879 * wptProxySettingsDlg.cpp: (keyserver_proxy_dlg_proc): New.
2880 * wptKeyserverDlg.cpp (keyserver_dlg_proc): Use the proxy dialog here.
2881 * wptKeyserver.cpp (kserver_load_conf): Fixed malformed strings.
2882
2883 2002-03-02 Timo Schulz <[email protected]>
2884
2885 * Use capital letters in the main menus and applied Patricks spelling
2886 corrections.
2887
2888 * wptClipDecryptDlg.cpp (clip_decrypt_dlg): keyID is a string
2889 not an integer. Thanks to scrumpy.
2890 * wptWipeFile.cpp (rename_unlink): Use '\' instead of '/'.
2891 (overwrite): Some bugfixes to set the pointer to the begin of the file.
2892 * wptVerlist.cpp (verlist_build): New keyID column.
2893 (verlist_add_sig): Use it here.
2894
2895 2002-03-01 Timo Schulz <[email protected]>
2896
2897 * wptWipeFile: Replaced all low level I/O functions with W32 API
2898 functions. And support for more wiping modes. I don't know to
2899 support all, but those makes sense for me:
2900 1. Simple (2 random passes)
2901 2. DoD (as described in the standard)
2902 3. Peter Gutmanns method (from the paper)
2903
2904
2905 2002-02-28 Timo Schulz <[email protected]>
2906
2907 * wptImplist.cpp (implist_add_key): UTF8 support.
2908 Handle invalid userID's.
2909 * wptPassphraseCB.cpp (parse_gpg_description): UTF8 support.
2910 (passphrase_callback_proc): Ditto.
2911
2912
2913 2002-02-23 Timo Schulz <[email protected]>
2914
2915 * wptListview.cpp (listview_del_items): New.
2916 * wptKeyManager.cpp (km_delete_keys): Use it here.
2917 * wptKeygenDlg.cpp (keygen_dlg_proc): UTF8 support.
2918 * wptKeylist.cpp (add_key): UTF8 support.
2919
2920 2002-02-08 Timo Schulz <[email protected]>
2921
2922 * wptNLS.c: Now it's C-source because GPGME needs gettext too.
2923 (stpcpy): Makes it static.
2924 * errors.c: localize all error strings.
2925 * WinPT.cpp (get_gettext_lang): Move the code in this file because
2926 we can't use it in plain C.
2927
2928 2002-02-05 Timo Schulz <[email protected]>
2929
2930 * wptGPG.cpp (gpg_save_options): Catch the case when the options file
2931 exist but it has a length of zero.
2932 (gpg_display_error): Print out the data from the GPG stderr
2933 (when available).
2934 * w32-util.c (_gpgme_get_gpg_optfile): Check if the file exists and if
2935 not, return NULL.
2936 * wptKeyManagerDlg.cpp (keymisc_dlg_proc): Add support to export secret
2937 keys.
2938
2939 * Fixed a lot of memory allocation all over the place.
2940
2941 2002-02-05 Timo Schulz <[email protected]>
2942
2943 wptGPG.cpp (gpg_save_options): Fixed the code for the case the
2944 values don't exist in the options file. Thanks to Lutz who found this out.
2945 (get_gpg_default): First search for "default-key" then for "encrypt-to".
2946
2947 2002-02-04 Timo Schulz <[email protected]>
2948
2949 * WinPT.rc: Set LVS_SHOWSELALWAYS for all listview elements
2950 which need it. Thanks to Timo who find this out.
2951 * WinPT.cpp (WinMain): We don't quit in the case the user changed
2952 the preferences.
2953 (update_keycache): New. Handy function to update the keycache.
2954
2955 * Use quotation for the options file in any case.
2956
2957 * clipboard.c (gpgme_clipboard_verify): When the NO_PUBKEY status
2958 is set, we don' try to get the sig key.
2959
2960 * wptGPG.cpp (get_gpg_default_key): Revamped.
2961
2962 2002-01-26 Timo Schulz <[email protected]>
2963
2964 * wptKeylist.cpp (keylist_add_key): Use flags for the file manager
2965 to avoid to show all userid's. Thanks to Frank.
2966 * wptDateDlg.cpp (date_dlg_proc): New context to use different
2967 window texts and some other features.
2968 * wptKeygenDlg.cpp (keygen_dlg_proc): Use it here.
2969 * wptKeySubkeyDlg.cpp (subkey_dlg_proc): Ditto.
2970 * wptGPG.cpp (gpg_create_groupdb): Create the groupdb.gpg file if
2971 it doesn't exist.
2972 * WinPT.cpp (WinMain): Use the new code here.
2973
2974 2002-01-23 Timo Schulz <[email protected]>
2975
2976 * wptClipEditDlg.cpp (clip_edit_dlg_proc): Release the buffer for
2977 loading a file.
2978 Add new code to save file with clipboard contents.
2979
2980 2002-01-20 Timo Schulz <[email protected]>
2981
2982 * wptMainProc.cpp (winpt_main_proc): Fix the error, that the user
2983 have to click twice before the menu appears. Richard told me this.
2984
2985
2986 2002-01-18 Timo Schulz <[email protected]>
2987
2988 * wptMainProc.cpp (winpt_main_proc): NLS support for new menu style.
2989 * wptPassphraseCB.cpp (parse_gpg_description): Support when no
2990 description was given. One example is when symmetric was used.
2991
2992 2002-01-13 Timo Schulz <[email protected]>
2993
2994 * wptGPGPrefsDlg.cpp (gpgprefs_dlg_proc): Fixed some boolesche
2995 settings.
2996 * wptGPG.cpp (gpg_backup_options): New.
2997 (gpg_load_options): Ignore comment lines.
2998 (gpg_save_options): Rewritten.
2999
3000 2002-01-06 Timo Schulz <[email protected]>
3001
3002 * wptPreferencesDlg.cpp (prefs_dlg_proc): Support for the sign+encrypt
3003 hotkey.
3004 * wptRegistry.cpp: Ditto.
3005 * wptRegistry.h: Ditto.
3006 * wptHotkey.h: Ditto.
3007 * wptGPG.cpp (gpg_load_options): New.
3008 (gpg_save_options): New.
3009
3010 2002-01-01 Timo Schulz <[email protected]>
3011
3012 * wptFileManager.cpp (fm_verify): Support for the case there is
3013 no public key to verify the signature.
3014
3015 2001-12-30 Timo Schulz <[email protected]>
3016
3017 * wptFileManager.cpp (fm_sign): Always use callbacks for the
3018 passphrase.
3019 (fm_decrypt): Ditto.
3020 (fm_parse_files): Cache the passphrase for the session and check
3021 if the file still exists.
3022 * wptRFC2240.cpp (parse_ske_sesskey): Removed. We no longer use
3023 low level stuff here.
3024 * wptFile.cpp (get_keyid_from_file): Ditto.
3025
3026 2001-12-21 Timo Schulz <[email protected]>
3027
3028 * wptTextInputDlg.cpp (text_input_dlg_proc): New.
3029 * wptMainProc (clip_gpg_dlg): Support for deached signatures.
3030 * wptClipVerifyDlg.cpp (clip_verify_dlg_proc): Ditto.
3031
3032 2001-12-19 Timo Schulz <[email protected]>
3033
3034 * Completed work on the temporary file support for GPG.
3035 * wptRegistry.cpp (set_reg_winpt_prefs): Add mode for the
3036 plaintext viewer option. Suggested by Markus Winkler.
3037 (get_reg_winpt_prefs): Ditto.
3038 * wptPreferencesDlg.cpp (prefs_dlg_proc): Ditto.
3039 * wptMainProc.cpp (winpt_main_proc): Ditto.
3040
3041 2001-12-15 Timo Schulz <[email protected]>
3042
3043 * wptKeyManagerDlg.cpp (keymisc_dlg_proc): New menu items for
3044 copy and paste.
3045
3046 2001-12-02 Timo Schulz <[email protected]>
3047
3048 * wptGroups.c: Revamped from the base. Arggg.
3049
3050 2001-11-29 Timo Schulz <[email protected]>
3051
3052 * wptKeyManager.cpp (km_groupdb_expand_recipients): New.
3053 * wptMainProc.cpp (clip_gpg_dlg): New.
3054 Modify the whole event loop so we don't need all the same code
3055 for each command. And we use the new foreground code.
3056 * wptW32API.cpp (check_date): Fixed.
3057
3058 2001-11-27 Timo Schulz <[email protected]>
3059
3060 * wptKeyserver.cpp (base64_encode): New. Marco provided HTTP
3061 proxy authentifcation support for each command.
3062 (kserver_update_proxyuser): New. Ditto.
3063 (kserver_send_request): Ditto.
3064 (kserver_recv_request): Ditto.
3065 (kserver_search_init): Ditto.
3066
3067 2001-11-24 Timo Schulz <[email protected]>
3068
3069 * wptKeyManager.cpp (km_groups_new): New.
3070 (km_groups_release): New.
3071 (km_groups_load): Rewritten.
3072 (km_groups_add): New.
3073 (km_groups_del): New.
3074 (km_groupdb_open): New.
3075 * wptKeyManagerDlg.cpp (keymisc_dlg_proc): Added group support.
3076 * wptGroups.c (groupdb_enum_read): Store the record before increment it.
3077
3078 2001-11-23 Timo Schulz <[email protected]>
3079
3080 * wptW32API.cpp (set_active_window): New.
3081 (reset_active_window): New.
3082 (window_reminder): New. This is a delayed thread procedure to
3083 force the focus (foreground) to the dialogs for the current
3084 window mode.
3085 * wptMainProc.cpp (winpt_main_proc): Use it here.
3086 * wptClipEncryptDlg.cpp (clip_encrypt_dlg_proc): Ditto.
3087 * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Ditto.
3088 * wptClipSignDlg.cpp (clip_sign_dlg_proc): Ditto.
3089 * wptClipVerifyDlg.cpp (clip_verify_dlg_proc): Ditto.
3090
3091 2001-11-22 Timo Schulz <[email protected]>
3092
3093 * wptW32API.cpp (set_foreground_wnd): New.
3094
3095 Fixed the return value of all EndDialogs.
3096
3097 * wptMainProc.cpp: Remove all code parts which did the same for the
3098 current window support. Now the code uses a dialog switch which is
3099 much smaller.
3100
3101 2001-11-18 Timo Schulz <[email protected]>
3102
3103 * wptKeyManager.cpp: New. Contains all handy functions from the
3104 wptKeyManagerDlg.cpp. This should help to cleanup the dialog code.
3105 (km_quote_uid): New.
3106 (km_check_for_seckey): New.
3107 (km_check_key_status): New.
3108 (km_clip_export): New.
3109 (km_clip_import): New.
3110 (km_file_export): New.
3111 (km_file_import): New.
3112 (km_delete_keys): New.
3113 (km_send_to_keyserver): New.
3114 (km_refersh_from_keyserver): New.
3115 (km_update_default_key_str): New.
3116 * wptKeygenDlg.cpp (ask_for_backup): New.
3117 (keygen_dlg_proc): Use new function to give the chance to the
3118 user for a complete backup.
3119
3120 2001-11-13 Timo Schulz <[email protected]>
3121
3122 * wptGPG.cpp (get_gpg_optfile): Check for the case the OptFile entry
3123 is set but to "". Then use default gpg directory.
3124 * wptKeyManagerDlg.cpp (send_to): New. Context entry for sending keys.
3125 (refresh_from_keyserver): New. Context entry for update keys.
3126 (keymisc_dlg_proc): Modify the way the popup is shown.
3127
3128 2001-11-07 Timo Schulz <[email protected]>
3129
3130 * wptGPG.cpp (set_gpg_default_key): Rewrote the part of changing
3131 the key id.
3132 * wptKeyManagerDlg.cpp (file_import): Use force trust to allow secret
3133 key imports.
3134 * wptGPGOptDlg.cpp (gpgopt_dlg_proc): If the options file exists and
3135 the user doesn't set the field, try to do this automatically.
3136
3137 2001-11-03 Timo Schulz <[email protected]>
3138
3139 (fm_remove_crit_file_attrs): First check if the file exists.
3140 Thanks to Peter.
3141
3142 2001-11-02 Timo Schulz <[email protected]>
3143
3144 * WinPT.cpp (WinMain): Add the chance to start the preferences dialog
3145 in the case a GPG error was detected.
3146 * wptKeyManagerDlg.cpp (delete_keys): Interface to delete all selected
3147 keys.
3148
3149 2001-10-30 Timo Schulz <[email protected]>
3150
3151 * wptHotkey.h: Fixed typo. Thanks to Timo.
3152 * wptGPG.cpp: (gpg_check_homedir): Fixed memory leak. By Timo.
3153 (get_gpg_default_key): Skip comment lines immediately.
3154 * wptRegisty.cpp (get_reg_winpt_prefs): Ditto.
3155 * wptKeyManagerDlg.cpp (keylist_subclass_proc): New. Procedure
3156 for subclassing.
3157
3158 Remove all unsafe WM_NOTIFY stuff because this was propably the
3159 reason for the crashes. And add as a sanity check if the control
3160 sent the message.
3161
3162 2001-10-28 Timo Schulz <[email protected]>
3163
3164 * wptKeyMiscDlg.cpp (key_misc_dlg_proc): New virtual key support
3165 for ENTER/SPACE and DELETE. Suggested by Graham.
3166 * wptKeyList.cpp (add_key): New code to figure out how trustworthy
3167 a expired/revoked secret key is.
3168 (keylist_enum_recipients): Show the key ID of the key when it's
3169 revoked.
3170 * wptFileManager.cpp (fm_decrypt): Parse all PKE packets and not
3171 only the first to figure out if a secret is available. Thanks to
3172 Graham.
3173 * wptFile.cpp (get_keyid_from_file): Ditto.
3174
3175 2001-10-27 Timo Schulz <[email protected]>
3176
3177 * wptKeylist.cpp (keylist_enum_recipients): Add a type to make
3178 the code more flexible.
3179 * wptKeyMiscDlg.cpp (file_import): New.
3180 (file_export): New.
3181 * wptKeySigDlg.cpp (recv_missing_keys): Fixed a typo.
3182
3183 Removed all OE code snippets.
3184
3185 2001-10-26 Timo Schulz <[email protected]>
3186
3187 * wptExtensions.cpp: Removed.
3188 * wptLDAPExt.cpp: Removed.
3189 * wptLDAP.cpp: New. This code now contains a direct interface to
3190 the WLDAP library so we don't need extra DLL's to handle LDAP keyservers.
3191 (wldap_init): New.
3192 (wldap_end): New.
3193 (ldap_set_verbose): New.
3194 (ldap_get_key_info): New.
3195 (ldap_recvkey): New.
3196 (init_ldap): New. Internal use only.
3197 (get_key): New. Ditto.
3198 (send_key): New. Ditto.
3199 * wptMainProc.cpp (wpt_main_proc): Init and de-init the LDAP dll.
3200
3201 2001-10-25 Timo Schulz <[email protected]>
3202
3203 * wptGPG.cpp (get_gpg_default_key): Support for the users options file.
3204 (check_gpg_path): Ditto.
3205 (get_gpg_options): Ditto.
3206 (set_gpg_default_key): Ditto.
3207 (set_gpg_options): Ditto.
3208 (gpg_check_keyring): Ditto.
3209 (set_gpg_default_keyid): Fix a typo.
3210 * wptGPGME.cpp (get_default_keyid): Rewrote most of the code.
3211
3212 2001-10-23 Timo Schulz <[email protected]>
3213
3214 * wptClipSignDlg.cpp (clip_sign_dlg_proc): Replace for with while
3215 because it's shorter.
3216 * wptFileSignDlg.cpp (file_sign_dlg_proc): Use keylist instead of
3217 the default keyid.
3218 * wptFileManager.cpp (fm_sign): Remove the default key ID code. Now
3219 we use the signer from the keylist.
3220 * wptGPGME.cpp (get_default_keyid): Revamp most of the code and fix
3221 some silly bugs.
3222 * WinPT.cpp (WinMain): if there is no valid keyring after the new
3223 preferences, start the key generation dialog.
3224
3225 2001-10-22 Timo Schulz <[email protected]>
3226
3227 Remove all MyGPGME code from the main project. Now we use the
3228 libmygpgme.dll to provide all cryptographic functions and interfaces.
3229
3230 * wptKeylist.cpp (key_array_new): New.
3231 (key_array_release): New.
3232 (key_array_search): New.
3233 * wptKeylist.cpp (keylist_add_to_recipients): Check if an untrusted key was
3234 already checked and don't bother the user if all userid's were selected.
3235 * wptPassphraseCB.cpp (passphrase_cb_init): Now void.
3236 (passphrase_cb_gpgme): Ditto.
3237 (passphrase_callback_proc): Support for a list of recipients.
3238 * wptImportList.cpp (implist_add_key): Support for secret keys.
3239
3240 2001-10-19 Timo Schulz <[email protected]>
3241
3242 * wptGPGPrefsDlg.cpp (gpg_prefs_dlg_proc): Support for various
3243 option files.
3244 * wptMainProc.cpp (wpt_main_proc): Remove the preferences menu and
3245 use a popup menu.
3246 * wptExtensions.cpp (gpgoe_load_plugin): New. Try to load the GPGOE
3247 plug-in.
3248 (gpgoe_unload_plugin): New.
3249
3250 2001-10-17 Timo Schulz <[email protected]>
3251
3252 * wptCurrWnd.cpp (get_window_contents): Only minimize the window
3253 when the clipboard contains text.
3254 * wptKeylist.cpp (keylist_add_key): Check only for invalid keys
3255 in the mainloop. The other flags are checked in the various cases.
3256 (add_key): Use the ** foo ** notation for invalid flags instead of
3257 skipping the key.
3258 * wptKeyMiscDlg.cpp (clip_export): Check for revoked keys and print
3259 out a warning.
3260 Change all error messages to one header.
3261 (check_key_status): Check if the key is valid in the sense of
3262 revocation and expire dates. If not, print out a warning.
3263 (keymisc_dlg_proc): Use the new code.
3264
3265 2001-10-16 Timo Schulz <[email protected]>
3266
3267 * wptW32API.cpp (check_date): New.
3268 (get_open_filename): New.
3269 * wptDlgs.cpp (init_dtp): New. Initialize a special common control.
3270 * wptKeygenDlg.cpp (keygen_dlg_proc): Add support for exipre dates.
3271
3272 2001-10-15 Timo Schulz <[email protected]>
3273
3274 * wptFileManager.cpp (fm_wipe): New.
3275 (fm_set_status): Add temporary wipe status and handle default values.
3276 (fm_parse_files): Use fm_wipe instead of sunlink. Delete all wiped
3277 files with a successful opeation.
3278 * wptKeygenCbDlg.cpp (keygen_cb_dlg_proc): New. Static dialog procedure.
3279 (keygen_cb_thread): New. Static dialog thread.
3280 (keygen_cb_dlg_create): New. Interface.
3281 (keygen_cb_dlg_destroy): New. Destroy the dialog.
3282 (keygen_cb): GPGME interface.
3283
3284 2001-10-13 Timo Schulz <[email protected]>
3285
3286 Set all ListviewControls to 'NULL' in all dialogs to be more crash
3287 resistent.
3288
3289 * wptFileEncryptDlg.cpp (file_encrypt_dlg_proc): Rebuild interface.
3290 * wptFileExportDlg.cpp (file_export_dlg_proc): Ditto.
3291 * wptFileImportDlg.cpp (file_import_dlg_proc): Ditto.
3292 * wptFileSignDlg.cpp (file_sign_dlg_proc): Ditto.
3293 * wptFileVerifyDlg.cpp (file_verify_dlg_proc): Ditto.
3294 * wptStringUtil.cpp: Removed.
3295 * wptFileManager.cpp: Rewrote the complete interface code for
3296 the file manager.
3297 * wptFileManagerDlg.cpp: Rewrote the whole file manager dialog.
3298
3299 2001-10-10 Timo Schulz <[email protected]>
3300
3301 * wptGPG.cpp (set_gpg_default_key): Use spaces if the entry in the
3302 file is longer then the keyid.
3303 (get_gpg_default_key): Replaced get_gpg_default_keyid. Check if the
3304 entry is an userid.
3305 * wptFileManager.cpp (fm_check_for_entry): New. Avoid to add a file
3306 more then one time.
3307 (fm_add_dropped_files): Use it here.
3308 * wptFileManagerDlg.cpp (file_manager_dlg_proc): Support for common
3309 keys.
3310
3311 2001-10-09 Timo Schulz <[email protected]>
3312
3313 * wptFileManagerDlg.cpp (file_manager_dlg_proc): Check the return
3314 code of sunlink.
3315 * wptGPG.cpp (get_keyring_from_optfile): New.
3316 Renamed gpg_errstr to gpg_strerror.
3317 (set_default_key): New.
3318 * wptKeyMiscDlg.cpp (keymisc_dlg_proc): Support for default key setting.
3319
3320 2001-10-08 Timo Schulz <[email protected]>
3321
3322 * wptKeyserver (kserver_connect): If the proxy settings are valid,
3323 use the proxy port instead of the HKP port.
3324 (kserver_recvkey): Proxy support.
3325 (kserver_search_init): Ditto.
3326
3327 2001-10-06 Timo Schulz <[email protected]>
3328
3329 * wptPassphraseCB.cpp (parse_gpg_description): Fixed a memory leak.
3330
3331 2001-10-05 Timo Schulz <[email protected]>
3332
3333 * wptKeylist.cpp: (addkey): Check if the used userID is not revoked.
3334 In the case it is, use the first userID.
3335 * wptKeySubkeyDlg.cpp (key_subkey_dlg_proc): Change the listbox.
3336 Remove the Pos column and add a status column instead.
3337 Add expire stuff for subkeys.
3338 (init_dtp): Initialize the common control.
3339 * wptClipEditDlg.cpp (clip_edit_dlg_proc): New code to load a file
3340 into the clipboard.
3341 * wptKeyPropsDlg.cpp (ot_id_to_string): New. Returns a long description
3342 of the ownertrust value.
3343 (keyprops_dlg_proc): Fixed ownertrust handling.
3344
3345 2001-10-04 Timo Schulz <[email protected]>
3346
3347 * wptPassphraseCB.cpp (parse_gpg_describtion): Free buffer.
3348 * wptKeyserver.cpp (kserver_search_init): Set buffer to NULL.
3349 Both were pointed out my Timo (not me ;-)).
3350 * wptKeylist.cpp (add_key): Fix a typo and now the code is more
3351 strict with returned attributes.
3352 * wptKeysignDlg.cpp (keysign_dlg_proc): Modify GPGME interface
3353 for local signatures.
3354
3355 2001-09-28 Timo Schulz <[email protected]>
3356
3357 * wptClipEncryptDlg.cpp (clip_encrypt_dlg_proc): WM_NOTIFY to handle
3358 the double click messages.
3359 * wptClipSignDlg.cpp (clip_sign_dlg_proc): Ditto.
3360 * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Ditto.
3361 * wptFileManager.cpp (overwrite_file): Check if the file exists and
3362 then let the user decide.
3363 (fm_encrypt): Use the code here.
3364 (fm_sign): And here.
3365 (fm_sym_encrypt): And here. Now we use the passphrase dialog.
3366 (fm_decrypt): And here.
3367 * wptFile.cpp (unlink_file): Removed. We can use sunlink if we need
3368 a secure wipe.
3369
3370 Make the memory checking more strict.
3371
3372 2001-09-27 Timo Schulz <[email protected]>
3373
3374 * wptMainProc.cpp (wpt_main_proc): Fixed typo. Thanks to Andy who
3375 discovered this.
3376 * wptPasswdDlg.cpp (passwd_dlg_proc): New. Handy dialog to get the
3377 passphrase.
3378 * wptEditKeyDlg.cpp: Removed. The edit-key code is now moved to
3379 the various other dialogs to make the use more easier.
3380 * wptKeyUIDDlg.cpp: (keyuid_dlg_proc): ADDUID code, use it here.
3381 * wptSubkeyDlg.cpp: (subkey_dlg_proc): ADDKEY code. Ditto.
3382
3383
3384 2001-09-26 Timo Schulz <[email protected]>
3385
3386 * wptW32API.cpp (listbox_add_string): New. Shortcut to avoid long casts.
3387 (listbox_get_cursel): Ditto.
3388
3389
3390 2001-09-23 Timo Schulz <[email protected]>
3391
3392 * wptSubkeyDlg.cpp (key_subkey_dlg_proc): New. Lists the subkeys.
3393 The same as the userid dialog.
3394 * wptWndSwitchDlg.cpp: Removed.
3395 * wptWipeExt.cpp: Removed. Code is now included.
3396 * wptGPGME.cpp (get_default_keyid): If the keyid from the options
3397 file is in the keycache.
3398 * wptKeylist.cpp (keylist_reload): New. Reload a keylist.
3399
3400 2001-09-17 Timo Schulz <[email protected]>
3401
3402 * wptClipboard.cpp (clip_isalready_secured): Fixed two silly bugs
3403 who prevent the correct return value in the case of an clipboard error.
3404 (clip_parse_pgp_id): New. Returns the PGP message type.
3405 * wptHotkey.cpp (hotkeys_strerror): Fixed bug in the indexes.
3406 (hotkey_single_register): Return correct error value.
3407 (hotkey_single_unregister): Ditto.
3408 * wptW32API.cpp (get_thread_id): Removed.
3409 (attach_thread_input): Ditto.
3410 (detach_thread_input): Ditto.
3411 * wptCurrWnd.cpp (get_window_contents): Store main and focused window
3412 for later use.
3413 (set_window_contents): Use the new code.
3414
3415 2001-09-16 Timo Schulz <[email protected]>
3416
3417 * wptExtensions.h: New. This file is now used for the extenion
3418 declarations.
3419 * wptExtensions.new: (register_extensions): New. Enumerate and
3420 load all possible extensions.
3421 (unregister_extentions): New. Release all loaded extensions.
3422 * wptKeyserver.cpp (kserver_load_conf): Added support for different
3423 keyservers. Currently only HTTP/LDAP.
3424 * wptKeyserverDlg.cpp (keyserver_dlg_proc): Added LDAP support.
3425 (hkp_recv_key): Ditto.
3426 * wptMailPlugin.cpp (oe_set_focus): Fixed silly bug that prevents
3427 to set the focus.
3428 * (oe_check_recipient): New. Checks if the key is able to encrypt
3429 and valid in the sense of revocation.
3430
3431 2001-09-14 Timo Schulz <[email protected]>
3432
3433 * wptWAB.cpp: (wab_read): New. Interface to read all address book
3434 entries.
3435 (wab_open): New. Internal function to load the WAB.
3436 (wab_release): New. Release the WAB contexts.
3437 (wab_load): New. Load the contents of the WAB into a linked list.
3438 (addr_list_new): New. Linked address list.
3439 (addr_list_add): New.
3440 (addr_list_release): New.
3441
3442 2001-09-13 Timo Schulz <[email protected]>
3443
3444 * Revamped the whole plugin code for OE5.
3445 * wptMailPlugin.cpp (oe_plugin_new): New. Allocates new structure.
3446 (oe_plugin_releae): New.
3447 (oe_plugin_init): New. Searches for the OE main window and select
3448 all the recipients from the fields.
3449 (oe_get_msg): This code now uses the menu command id's to
3450 execute the commands.
3451 (oe_set_msg): Ditto.
3452 (oe_encrypt): Changed for the new code.
3453 * wptMainProc.cpp (wpt_main_proc): Re-activate the code.
3454 * wptHotkeys.cpp: Ditto.
3455 * Removed the hook project.
3456
3457 2001-09-12 Timo Schulz <[email protected]>
3458
3459 * wptClipDecryptDlg.cpp (clip_decrypt_dlg): Fixed a format error.
3460 Thanks to Rich who pointed this out.
3461
3462 2001-09-07 Timo Schulz <[email protected]>
3463
3464 * wptFileManagerDlg.cpp (file_manager_dlg_proc): Fix memory leaks.
3465
3466 2001-09-05 Timo Schulz <[email protected]>
3467
3468 * wptKeyMiscDlg.cpp (clip_export): New. Handy function to export keys.
3469 (clip_import): New. Handy function to import keys.
3470 * wptKeygenDlg.cpp (keygen_dlg_proc): Added a warning when the passphrase
3471 is too short.
3472
3473 2001-09-04 Timo Schulz <[email protected]>
3474
3475 * Rewrote most parts of the keymanager.
3476 * Ditto for the filemanager.
3477
3478 2001-09-01 Timo Schulz <[email protected]>
3479
3480 * wptMainProc.cpp (wpt_main_proc): Remove the im- and export operations.
3481 These code is now part of the key manager.
3482 * wptKeyPropsDlg.cpp (key_props_dlg): Removed the get_key_xxx functions.
3483 * wptKeylist.cpp (get_key_algo): New.
3484 (get_key_created): New.
3485 (get_key_type): New.
3486 (get_key_size): New.
3487 (get_key_fpr): New.
3488 * wptClipExportDlg.cpp (clip_export_dlg_proc): Removed. This is now
3489 a part of the keymanager.
3490
3491 2001-08-31 Timo Schulz <[email protected]>
3492
3493 * wptFileManager.cpp (fm_add_opened_files): New. Use a standard
3494 file open dialog instead of drag & drop.
3495 * wptHotkeys.cpp (hotkey_strerror): More detailed information which
3496 hotkey couldn't set up.
3497 (hotkey_register_single): Ditto.
3498
3499 2001-08-30 Timo Schulz <[email protected]>
3500
3501 * wptFilemanager.cpp (fm_encrypt): Add minor changes.
3502 (fm_decrypt): Ditto.
3503 (fm_sign): Ditto.
3504 (fm_verify): Make the code more modular.
3505 (fm_add_sig_stat): New. For new fm_verify code.
3506
3507 2001-08-28 Timo Schulz <[email protected]>
3508
3509 * wptKeylist.cpp (strlist_add_recipients): Fixed the listview handling.
3510 * wptKeyserver.cpp (kserver_load_conf): Proxy support
3511 (kserver_connect): Ditto.
3512
3513 2001-08-26 Timo Schulz <[email protected]>
3514
3515 * wptFileManager.cpp (fm_entry_new): New.
3516 (fm_entry_release): New.
3517 (fm_state_new): New.
3518 (fm_state_release). New.
3519 (fm_get_current_file): New.
3520 * wptKeylist.cpp (strlist_add_recipients): New.
3521
3522 2001-08-25 Timo Schulz <[email protected]>
3523
3524 * wptStringUtil.cpp (strlist_new): New. Linked list to hold strings.
3525 (strlist_release): New. Release the linked list.
3526 (strlist_add): New.
3527
3528 2001-08-21 Timo Schulz <[email protected]>
3529
3530 * wptGPG.cpp (get_gpg_default_keyid): Modify the code and now it
3531 also supports "encrypt-to" entries as default keys.
3532 * wptWipeExt.cpp (wipe_init_ext): New. Load the DLL to provide
3533 secure wiping.
3534 (wipe_deinit_ext): New. Unload the DLL and free all pointer.
3535 (wipe_loaded_ext): New. Checks wether the DLL was loaded.
3536 * wptW32API.cpp (set_menu_state): New.
3537
3538 2001-08-20 Timo Schulz <[email protected]>
3539
3540 * wptGPG.cpp (create_gpg_options): Fixed nul byte bug. Thanks to Thomas.
3541 * wptPreferencesDlg.cpp (prefs_dlg_proc): Fixed the code to disable
3542 the hotkeys. Automatically enable or disable the hotkey field depend
3543 on the switch.
3544
3545 2001-08-17 Timo Schulz <[email protected]>
3546
3547 * wptClipSignDlg.cpp (clip_sign_dlg_proc): Choose key if there is only
3548 one by default.
3549 * wptKeyList.cpp (keylist_add_to_recipients): Ditto.
3550 * wptGPG.cpp (gpg_check_homedir): Creates the GPGME specific gpgProgram
3551 entry in the registry in the case it's missing (whenever it's possible!).
3552 (check_gpg_path): Rewrite parts of the code.
3553
3554 2001-08-11 Timo Schulz <[email protected]>
3555
3556 * wptKeyPropsDlg.cpp (keyprops_dlg_proc): Beautify the dialog and
3557 separate the fingerprint from the othr information.
3558 * wptGPG.cpp (check_opt_keyring): New. Do a sanity check if the
3559 file, specified in the options line, does exist.
3560
3561 2001-08-08 Timo Schulz <[email protected]>
3562
3563 * wptGPG.cpp (check_gpg_path): Sanity check for size of the options file.
3564 Support for more configurations.
3565 * wptFileSignDlg.cpp (file_sign_dlg_proc): Fixed error in signature mode.
3566 Add all strings to the translation suite.
3567 * Updated all NLS dialog strings.
3568 * wptRFC2440.cpp (get_pkttype): Fixed error to check the CTB.
3569 * wptFileManager.cpp (fm_decrypt): Support to decrypt armored file,
3570 with a dynamic callback for the passphrase.
3571
3572 2001-08-06 Timo Schulz <[email protected]>
3573
3574 * wptFilemanager.cpp (fm_sign): Set the keyid length to 16.
3575
3576 2001-08-05 Timo Schulz <[email protected]>
3577
3578 * wptKeylist.cpp (keylist_add_key): Change the schematics to support
3579 all keyids.
3580 * wptSigList.cpp (siglist_build): New. Interface code to load the
3581 signature list.
3582 * wptKeysigDlg.cpp (keysig_dlg_proc): Uses siglist_build.
3583
3584 2001-08-03 Timo Schulz <[email protected]>
3585
3586 * wptMainProc.cpp (wpt_main_proc): The GPG menu was removed, now
3587 we support this code in the key manager.
3588 * wptKeyMisc.cpp (key_misc_dlg_proc): Supports new GPG commands.
3589 * wptKeyserver.cpp (kserver_index_request), (kserver_recv_request):
3590 Removed. The code moved into the main functions.
3591 (kserver_send), (kserver_recv): Ditto.
3592 (sock_write): Improved code.
3593 (sock_read): Ditto and some additional timeout.
3594 (sock_select): New. Figure out the socket state.
3595 (kserver_search_init): New. Make connection to the server.
3596 * wptHKPSearchDlg.cpp (hkp_search_dlg_proc): Now it uses the new
3597 keyserver code.
3598 * wptFile.cpp (get_keyid_from_file): Add support for the PGP marker
3599 packet. Thanks to Alan.
3600 (check_for_symenc_data): Ditto.
3601 * wptFileManager.cpp (fm_get_file_type): Ditto.
3602 (fm_decrypt): Move the keycache in the if loop and fix the keycache
3603 type.
3604
3605 2001-08-02 Timo Schulz <[email protected]>
3606
3607 * wptGPG.cpp (check_gpg_path): Check the size of both keyrings too.
3608 Useful in the case the file was generated but it's empty.
3609 * wptKeyEditDlg.cpp (key_edit_dlg_proc): Fixed some typos.
3610
3611
3612 2001-08-01 Timo Schulz <[email protected]>
3613
3614 * wptKeyserver.cpp (kserver_urlencode): Create a HTTP compatible
3615 request for uploading a key.
3616 (kserver_send_request): Use the urlencode to send the key.
3617 (sock_read): New. Improved read function to replace recv.
3618 (sock_write): New. Improved write function to replace send.
3619 * wptFileManager.cpp (fm_get_file_type): If the data is armored,
3620 call fm_check_armor_type().
3621 (fm_check_armor_type): New. Figure out the armor type of the data.
3622 * wptKeyMisc.cpp (key_misc_dlg_proc): Use a menu instead of the
3623 buttons. Optimized the code.
3624
3625 2001-07-30 Timo Schulz <[email protected]>
3626
3627 * wptClipSignDlg.cpp (clip_sign_dlg_proc): Added the interface code
3628 for the agent.
3629 * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Ditto.
3630
3631 2001-07-29 Timo Schulz <[email protected]>
3632
3633 * wptKeyRevokeDlg.cpp (key_revoke_dlg_proc): New. Dialog for creating
3634 a key revocation certificate. Add a hint to show how sentensive this
3635 data is.
3636 * wptKeyMiscDlg.cpp (keymisc_dlg_proc): Added the code to handle the
3637 revocation.
3638 * wptAgent.cpp: Source for the server interface removed.
3639 (agent_is_avail): New. Checks if the agent is available.
3640 * wptClipDecryptDlg.cpp (clip_decrypt_dlg): Added the interface code
3641 for the agent.
3642
3643 2001-07-26 Timo Schulz <[email protected]>
3644
3645 * wptGPG.cpp (check_gpg_keyring): New. Check if a gpg keyring
3646 exists. Useful if the keyring was moved during some commands.
3647 * wptMainProc.cpp (wpt_main_proc): Use the new code. Thanks to
3648 Rich to discover this.
3649
3650 2001-07-25 Timo Schulz <[email protected]>
3651
3652 * WinPT.cpp (WinMain): Add a sanity check for the keycache to detect
3653 serious GPG errors.
3654 * wptFileManager.cpp (fm_sym_encrypt): New. Symmetric encryption.
3655 Suggested by Graham.
3656 (fm_decrypt): Change code to support symmetric decryption.
3657 (fm_get_file_type): Fixed some typos.
3658
3659 2001-07-24 Timo Schulz <[email protected]>
3660
3661 * wptKeyMiscDlg.cpp (keymisc_dlg_proc): Get new cache context after
3662 reloading the keycache. Fixed the memory leaks. Thanks to Andreas.
3663 * wptKeyEditDlg.cpp (keyedit_dlg_proc): Better GPGME callback to inform
3664 the user about errors.
3665 * wptKeyTrustPathDlg.cpp (copy_trust_item): New. Copy the GPGME structure
3666 in our own context.
3667 (treeview_insert_item): New. Handy function to insert an entry.
3668 (treeview_create_child_item): New. Insert a trustlist node.
3669 (treeview_add_trustpath): New. Add recursively the whole trust path
3670 int the tree view.
3671 * wptKeysigDlg.cpp (check_for_missing_keys): New. Checks if the
3672 signature list contains entries with a NOKEY status.
3673 (recv_missing_keys): New. Receive all keys with a NOKEY as the signature
3674 status.
3675 * wptImportList.cpp (implist_load): New. Initialize the listview item
3676 with an import overview.
3677 * wptClipImportDlg.cpp (clip_import_dlg_proc): Use implist_load instead
3678 of the code.
3679 (print_import_status): Summarize the results. We need this because file
3680 import needs the same function.
3681 * wptFileImportDlg.cpp (file_import_dlg_proc): New. Interface for the
3682 file manager.
3683 * wptFileManagerDlg.cpp (file_manager_dlg_proc): New code for the key
3684 import from file.
3685 * wptFileManager.cpp (fm_import): New. Ditto.
3686 * wptKeyserver.cpp (kserver_connect): Take care for some return values
3687 and set the socket to non blocking mode.
3688 Moved the Winsock2 init code to wptMainProc.cpp
3689 * wptMainProc.cpp (wpt_main_proc): Wsock2 code.
3690 * wptHKPSearchDlg.cpp (hkpsearch_dlg_prog): Remove Wsock2 init code.
3691
3692 2001-07-22 Timo Schulz <[email protected]>
3693
3694 * wptKeyPrefsDlg.cpp (keyprefs_dlg_proc): New.
3695 (get_key_created): New. Transform ulong timestamp to ascii.
3696 (get_key_algo): New. Returns a formatted algorithm (depend on subkeys).
3697 (get_key_size): New. Returns a formatted size depend (depend on subkeys).
3698 * wptSigList.cpp (siglist_add_key): Fix the timestamp.
3699 * wptKeyMiscDlg.cpp (keymisc_dlg_proc): Removed "list sigs" and replace
3700 this with list trust path.
3701 * wptKeySigDlg.cpp (keysig_dlg_proc): Remove the set_check_mode function
3702 because we always check the signatures.
3703 * wptKeyTrustPathDlg.cpp (keytrust_dlg_proc): New.
3704
3705 2001-07-21 Timo Schulz <[email protected]>
3706
3707 * wptFileEncryptDlg.cpp (file_encrypt_dlg_proc): Set cancel mode in
3708 the case of IDCANCEL.
3709 * wptFileSignDlg.cpp (file_sign_dlg_proc): Ditto.
3710 * wptKeyEditDlg.cpp (keyedit_dlg_proc): Check if the key is a key pair
3711 pair and only if activate the passphrase dlg items.
3712 Do sanity checks for all buttons that require key pairs.
3713 * wptKeyMiscDlg.cpp (keymisc_dlg_proc): Support the new code.
3714
3715 2001-07-20 Timo Schulz <[email protected]>
3716
3717 * wptKeyserver.cpp: (kserver_send_request): Correct the octect length
3718 of the request.
3719 (check_hkp_response): If an error ocurred, copy the error message into
3720 the static buffer.
3721 (kserver_strerror): Interface for the static error buffer.
3722 * wptKeyserverDlg.cpp (hkp_err_box): Generates a HKP specific message
3723 box.
3724 (hkp_send_key): Add more verbose messages at the end.
3725 (hkp_recv_key): Ditto.
3726 (check_pattern): Rewrote the entire code to be more bug proof.
3727 * wptKeylist.cpp (keylist_add_to_recipients): Add a flag to indicate
3728 that the recipient list contains untrusted entries.
3729 * wptClipEncryptDlg.cpp (clip_encrypt_dlg_proc): Use the new flag to
3730 force GPG to add the need options.
3731 * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Ditto.
3732
3733 2001-07-19 Timo Schulz <[email protected]>
3734
3735 * wptClipDecryptDlg.cpp (clip_decrypt_dlg_proc): Support for more
3736 detailed error messages in the case for a missing key or an included
3737 signature.
3738
3739 2001-07-17 Timo Schulz <[email protected]>
3740
3741 * wptKeylist.cpp (keylist_build_small): Support for a minimal keybox
3742 and increment the 'cols' variable inside the structure for further use.
3743 (add_key): Watch for the 'cols' variable to figure out how much columns
3744 are used.
3745 * wptListView.cpp (listview_set_ext_style): Set an extended style for
3746 the given listview.
3747 * wptKeyserverDlg.cpp (keyserver_dlg_proc): Use WM_NOTIFY to save the
3748 selected server.
3749 * wptClipSignDlg.cpp (clip_sign_dlg_proc): Ditto.
3750 * wptKeyserver.cpp (kserver_connect): IP address support. This is faster
3751 and no DNS lookup is needed.
3752
3753 2001-07-14 Timo Schulz <[email protected]>
3754
3755 * wptKeylist.cpp (keylist_add_key): Check for secret keys before adding
3756 it to the signing keylist.
3757 * wptClipSignDlg.cpp (clip_sign_dlg_proc): Add newline if the passphrase
3758 is empty.
3759 * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Ditto.
3760
3761
3762 2001-07-13 Timo Schulz <[email protected]>
3763
3764 * wptKeyserver.cpp (kserver_send_request): Add the "keytext" string to
3765 the request. Arggg!
3766 (check_hkp_response): Add flag to differ between 'send' and 'recv' mode.
3767
3768
3769 2001-07-12 Timo Schulz <[email protected]>
3770
3771 * wptClipDecryptDlg.cpp (clip_decrypt_dlg): If the dialog was canceled,
3772 just quit without any messages. Suggested by Rich.
3773
3774
3775 2001-07-11 Timo Schulz <[email protected]>
3776
3777 * wptKeyserver.cpp (wsock_strerror): If it's an unknown error, add
3778 the integer.
3779 (keyserver_create_conf): Create a config file instead of the error.
3780 * wptGPG.cpp (create_gpg_options): If the file doesn't exist create
3781 a default file. This prevents confusing error messages.
3782 (get_gpg_options): Use new code.
3783 * wptErrors.cpp (winpt_debug_msg): Improved debug message that tells
3784 the user how to find the files.
3785
3786 2001-07-05 Timo Schulz <[email protected]>
3787
3788 * wptHotkey.cpp (mod_hotkeys): Fix a small typo.
3789
3790 2001-07-04 Timo Schulz <[email protected]>
3791
3792 * wptClipVerifyDlg.cpp (clip_verify_dlg_proc): Auto retrieve key
3793 if the user agree.
3794 * wptKeylist.cpp (keyload_load): Use the mode from the param, not
3795 the hardcoded.
3796 * wptGPGOptDlg.cpp (gpgopt_dlg_proc): Load options file on startup.
3797 Rename 'load' to 'reload' to make sense with the new code.
3798 * wptHotkeys.cpp (mod_hotkeys): Rewrite the entire code for the
3799 registry stuff.
3800 * wptRegistry.cpp (set_reg_winpt_prefs): Ditto.
3801 (get_reg_winpt_prefs): Ditto.
3802 (regist_inst_winpt): Remove the old code.
3803 (register_single_filetype): Replacement for the old code.
3804
3805 2001-07-01 Timo Schulz <[email protected]>
3806
3807 * wptFileManager.cpp (fm_verify): New.
3808 (fm_decrypt): New.
3809 * wptFileEncryptDlg.cpp (file_encrypt_dlg_proc): New.
3810
3811
3812 2001-06-30 Timo Schulz <[email protected]>
3813
3814 * wptFilemanagerDlg.cpp (file_manager_dlg_proc): Uses the new passphrase
3815 code.
3816 * wptClipSignDlg.cpp (clip_sign_dlg_proc): Ditto.
3817 * wptClipSignEncDlg.cpp (clip_sign_dlg_proc): Ditto.
3818 * wptFileManager.cpp: New. (fm_build): New. Initialize the filemanager.
3819 (fm_delete): New.
3820 (fm_encrypt): New.
3821 (fm_get_current_pos): New.
3822 (fm_get_file_type): New.
3823 (fm_add_dropped_files): New.
3824
3825 2001-06-29 Timo Schulz <[email protected]>
3826
3827 * wptClipEditDlg.cpp (clip_edit_dlg_proc): Fix a small bug that prevent
3828 to send data to the clipboard.
3829 * wptMainProc.cpp (wpt_main_proc): Change the SetForegroundWindow to
3830 destroy the window immediately.
3831 * wptKeyserver.cpp (kserver_getip): Removed.
3832 (kserver_get_langname): Removed.
3833 (kserver_load_conf): New. Load the keyserver.conf file and set the
3834 included keyserver addresses into the global context.
3835 * WinPT.cpp (WinMain): Add the kserver_load_conf to intialize the
3836 keyserver context.
3837 * wptImplist.cpp (get_key_date): New. Transform integer timestamp
3838 to ISO date.
3839 (implist_add_key): Now it uses the context instead of all single
3840 variables.
3841
3842 2001-06-28 Timo Schulz <[email protected]>
3843
3844 * wptRFC2440.cpp (get_pkttype): Renamed from get_pkt_type and all new
3845 flag variables to support RFC1991.
3846 (get_rfc2440_pktlen): Renamed from get_pkt_len to support RFC1991.
3847 (get_rfc1991_pktlen): Ditto.
3848
3849 2001-06-27 Timo Schulz <[email protected]>
3850
3851 * wptRFC2440.cpp (get_pkt_type): New. Extract the OpenPGP packet type.
3852 (get_pkt_len): New. Extract the OpenPGP packet length.
3853 (parse_pke_sesskey): Read a public key encrypted session key
3854 but without data.
3855 * wptFilemanagerDlg.cpp (quote_filename): Do some quotings if the
3856 filename contains spaces. Just to make GPG happy.
3857 (file_manager_dlg_proc): Check if the file exist after encryption.
3858 * wptFile.cpp (get_keyid_from_file): Checks the file for an valid
3859 packet and then extract the keyid.
3860
3861 2001-06-25 Timo Schulz <[email protected]>
3862
3863 * wptKeylist.cpp (keylist_load): New. Initialize a keylist item with
3864 the contents from the given cache context.
3865 (keylist_add_to_recipients): New. Add the selected keys to the
3866 recipient set.
3867 * wptClipEncryptDlg.cpp (clip_encrypt_dlg_proc): Use the new keylist
3868 function to load the listview.
3869 * wptClipExportDlg.cpp (clip_export_dlg_proc): Ditto.
3870 * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Ditto.
3871 * wptClipDecryptDlg.cpp (parse_gpg_describtion): Beautify the userid
3872 and the keyid hint.
3873
3874 2001-06-24 Timo Schulz <[email protected]>
3875
3876 * wptGPG.cpp (get_gpg_path): Add null termination to the string.
3877 Thanks to Jonathan who pointed this out.
3878 (get_gpg_prog): Ditto.
3879 (gpg_check_file_ext): Check the file extension for the given GPG
3880 type.
3881 (get_gpg_default_keyid): Return null if there isn't an entry in the
3882 options file.
3883 * wptKeylist.cpp (add_key): Fixed the wrong return codes of listview_xxx
3884 style functions.
3885 * wptImpList.cpp (implist_add_key): Ditto.
3886 * wptSigList.cpp (siglist_add_key): Ditto.
3887 * wptVerifyList.cpp (verlist_add_key): Ditto.
3888
3889 2001-06-23 Timo Schulz <[email protected]>
3890
3891 * wptGPG.cpp (get_gpg_default_keyid): Determine the keyid with the
3892 options file.
3893
3894 2001-06-22 Timo Schulz <[email protected]>
3895
3896 * wptHKPSearchDlg.cpp (hkpsearch_dlg_proc): New. Dialog to perform
3897 keyserver seraching. As an additional feature it's also posible to
3898 import the keys directly.
3899
3900 2001-06-18 Timo Schulz <[email protected]>
3901
3902 * wptKeyserver.cpp (check_hkp_response): More detailed error check
3903 of the http response.
3904 (kserver_send_request): Debug mode now uses logfile.
3905 (kserver_recv_request): Ditto.
3906 (kserver_index_request): New. Create a request for a key index.
3907 (kserver_send): Now uses check_hkp_response.
3908 (kserver_recv): Ditto.
3909 (kserver_search): New. Start the key index loop.
3910 * wptKeyserverDlg.cpp (recv_key): Check if the key was really
3911 imported and received.
3912
3913 2001-06-17 Timo Schulz <[email protected]>
3914
3915 * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Force to use the
3916 default key for signing.
3917
3918 2001-06-16 Timo Schulz <[email protected]>
3919
3920 * wptKeyEditDlg.cpp (keyedit_dlg_proc): Added missing return.
3921 Corrected return values.
3922 * wptErrors.cpp (winpt_strerror): Removed all unused error strings.
3923 * wptGPG.cpp (get_gpg_path): Change to default path and prevent
3924 buffer overflows.
3925 (get_gpg_prog): Ditto.
3926
3927
3928 2001-06-15 Timo Schulz <[email protected]>
3929
3930 * wptKeylist.cpp (keylist_add_key): Change encrypt param to mode.
3931 Differ between the new keylist styles.
3932 * wptGPGME.cpp (keycache_xxx): Move the caching interface to this
3933 file. For an easier handling between dialogs and code.
3934 (keycache_rewind): New. Rewind a global keycache context.
3935 (keycache_next_key): New. Retrieve the next key from the keycache.
3936 (get_default_key): New. Return the default key, this is the secret
3937 key with the index 0.
3938 * wptClipSignDlg.cpp (clip_sign_dlg_proc): Modify the default key
3939 handling. Now the signer is set in any case. Prevent hanging GPG
3940 processes.
3941 * wptSecmem.cpp (vm_safe_init): New. Initialize the safe memory.
3942 (vm_safe_init_noswap): New. Initialize safe memory with tail data.
3943 See source for more information.
3944 (vm_safe_free): New. Free all used pointer and burn all buffers.
3945 (vm_safe_get): New. Get the begin of the alloced buffer.
3946 (vm_safe_set_swapfile): New. Set global swapfile name.
3947 (vm_safe_create_swapfile): New. Creats a swapfile and set its
3948 contents to zero.
3949
3950 2001-06-12 Timo Schulz <[email protected]>
3951
3952 * wptPreferencesDlg.cpp (check_hotkey): Check if the hotkey key is
3953 a big letter, otherwise convert.
3954 (preferences_dlg_proc): Check hotkeys.
3955 * wptKeylist.cpp (add_keys): Static functions to add a single key.
3956 (keylist_add_key): Now it adds all subkeys to the dialog.
3957 (keylist_alloc): Remove because it's not needed any longer.
3958 * wptImportList.cpp (implist_alloc): Ditto.
3959 * wptSigList.cpp (siglist_alloc): Ditto.
3960 * wptVerifyList.cpp (verlist_alloc): Ditto.
3961
3962 2001-06-10 Timo Schulz <[email protected]>
3963
3964 * wptHotkey.cpp (enable_hotkey): New. Set enable flag for a single
3965 hotkey.
3966 (mod_hotkeys): Take care of the enable flags.
3967 (register_hotkeys): Ditto.
3968 (unregister_hotkeys): Ditto.
3969 * WinPT.cpp (WinMain): If the registry entry of WinPT doesn't exist,
3970 don't try to modify hotkeys.
3971 * WptMainProc.cpp (wpt_main_proc): All message boxes are forced to
3972 the foreground.
3973
3974 2001-06-08 Timo Schulz <[email protected]>
3975
3976 * wptHotkey.cpp (mod_hotkeys): Change code to support the new
3977 registry style.
3978 * wptRegistry.cpp (get_reg_winpt_prefs): Support to disable
3979 single hotkeys. Suggested by Jonathan.
3980 * wptPreferencesDlg.cpp (preferences_dlg_proc): Support to disable
3981 single hotkeys.
3982 * wptKeyserver.cpp (kserver_connect): Reset winsock error var.
3983 (keyserver_recv): Ditto.
3984 (keyserver_send): Ditto.
3985 (wsock_strerror): Returns a description of the winsock problem.
3986 * wptClipboard.cpp (clip_get_pgp_type): Check if the returned buffer
3987 is valid.
3988
3989 2001-06-07 Timo Schulz <[email protected]>
3990
3991 * wptOwnertrustDlg.cpp (ownertrust_dlg_proc): Set to foreground,
3992 add windows title.
3993
3994 2001-06-05 Timo Schulz <[email protected]>
3995
3996 * wptAboutGPGDlg.cpp (about_gpg_dlg_proc): Check if the returned
3997 buffer is valid. Remove the fixme, because it's possible that there
3998 were new cipher modules loaded.
3999 * wptClipDecryptDlg.cpp (passphrase_callback_proc): Check if the
4000 context is valid.
4001 * wptClipEditDlg.cpp (clip_edit_dlg_proc): Check if the context is valid.
4002 * wptW32API.cpp (status_box): New. Message box that is always forced
4003 to the foreground.
4004
4005 2001-06-04 Timo Schulz <[email protected]>
4006
4007 * wptClipImportDlg.cpp (clip_import_dlg_proc): Added the code for
4008 the improved import status.
4009
4010
4011 2001-06-01 Timo Schulz <[email protected]>
4012
4013 * wptKeyEditDlg.cpp (keyedit_dlg_proc): IDC_KEYEDIT_OWNERTRUST:
4014 Release context in the case of an error.
4015 * wptMainProc.cpp (wpt_main_proc): Fix typo.
4016 * wptGPG.cpp: (init_gpg_table): Remove the case code. Now we use
4017 a static gpg object array that contains all filenames.
4018
4019
4020 2001-05-27 Timo Schulz <[email protected]>
4021
4022 * wptRegistry.cpp (set_reg_winpt_prefs): Add word wrapping.
4023 (get_reg_winpt_prefs): Ditto.
4024 * wptClipVerifyDlg.cpp (clip_verify_dlg_proc): Set focus after the
4025 gpg process finished.
4026 * wptSigList.cpp (siglist_add_key): Parse the numeric timestamp to
4027 a humand readable date.
4028
4029
4030 2001-05-25 Timo Schulz <[email protected]>
4031
4032 * wptKeyUidDlg.cpp (keyuid_dlg_proc): Add button to delete a choosen
4033 user id. End the dialog if there was an error during the Gpgme operations.
4034 * wptClipboard.cpp (clip_istext_avail): First check if the pointer is
4035 valid and then look at the length. Avoid crashes for some texts.
4036
4037 2001-05-21 Timo Schulz <[email protected]>
4038
4039 * wptKeyMiscDlg.cpp (keymisc_dlg_proc): Add new button for userid
4040 management.
4041 * wptKeyUidDlg.cpp (keyuid_dlg_proc): Finished code to show all userids
4042 from a special key.
4043
4044 2001-05-20 Timo Schulz <[email protected]>
4045
4046 * wptGPG.cpp (check_gpg_optfile): Count each of the keyring entries
4047 to figure out if both parts are available.
4048
4049 2001-05-19 Timo Schulz <[email protected]>
4050
4051 * wptPreferencesDlg.cpp (preferences_dlg_proc): If the disable hotkey
4052 flag is set, also disable all input items.
4053 (disable_dlg_item): New. Disable dialog items (windows).
4054 * wptMainProc.cpp (wpt_main_proc): Only set hotkeys if the no_hotkeys
4055 flag isn't set.
4056 * wptKeyserverDlg.cpp (send_key): Forget to set the armor flag, as
4057 a result the code only sended parts of the key.
4058 * wptConfig.cpp: Removed. Not used any longer.
4059
4060 2001-05-18 Timo Schulz <[email protected]>
4061
4062 * wptKeyEditDlg.cpp (keyedit_dlg_proc): Check the state of the various
4063 edit key commands. In the case the dialog was canceled, return without
4064 modifying anything.
4065 * wptClipVerifyDlg.cpp (clip_verify_dlg_proc): Check the state of the
4066 signature. If it doesn't contain a valid key, do nothing.
4067 * wptMainProc: (wpt_main_proc): If the hotkey setup doesn't work, don't
4068 quit the program. In some cases the hotkeys are possible locked.
4069 * WinPT.cpp (WinMain): If there is an error with the gpg program/path,
4070 give the user the chance to start the GPG preference dialog.
4071 * wptPreferencesDlg.cpp (preferences_dlg_proc): Added the CWS hotkey
4072 support. Flag to disable all hotkeys. Reload new hotkeys (in the case
4073 they changed). Load the registry entry on startup.
4074 * wptHotkey.cpp (mod_hotkeys): Overwrite the default hotkeys with the
4075 stored registry entries.
4076
4077 2001-05-13 Timo Schulz <[email protected]>
4078
4079 * wptRegistry.cpp (set_reg_key): Open a subkey, if it doesn't exist
4080 the function create it.
4081 (set_reg_winpt_prefs): Use the new function to set the subkey values.
4082 All functions now return WPTERR_REGISTRY instead of 1.
4083 Add some error handling to prevent errors in the registry.
4084 * wptPreferencesDlg.cpp (preferences_dlg): Add the code for the Clipboard
4085 hotkeys and the caching time.
4086
4087
4088 2001-05-12 Timo Schulz <[email protected]>
4089
4090 * wptMainProc.cpp (wpt_main_proc): Start the agent before the decryption
4091 call.
4092
4093 2001-05-11 Timo Schulz <[email protected]>
4094
4095 * wptMainProc (wpt_main_proc): Change all related menu entries from
4096 Encrypt & sign to Sign & Encrypt. Added the command to the current
4097 window menu and the handling of the window messages.
4098 * wptSignEncDlg.cpp (clip_signenc_dlg_proc): Changed the window text.
4099 * wptRegistry.cpp (set_reg_winpt_prefs): New. Stores all WinPT
4100 preferences in the registry.
4101 (get_reg_winpt_prefs): Read all preferences from the registry into
4102 the options context.
4103 * WinPT.cpp (WinMain): Read in the registry preferences at the begin
4104 and store it.
4105 * wptAgent.cpp (agent_init): Check if the environment variable
4106 GPG_AGENT_INFO is set, otherwise set it.
4107 (agent_is_running): Check wether the agent is running.
4108 (agent_start): Automated function that read all needed information
4109 from global variables.
4110
4111 2001-05-10 Timo Schulz <[email protected]>
4112
4113 * wptFindWnd.cpp (find_window_hwnd): New. Function to retrieve
4114 the handle of the specified window.
4115 * wptAgent.cpp (agent_timer_proc): Changed the agent interface
4116 to window messages instead of socket connections.
4117 * wptMainProc.cpp (wpt_main_proc): Added the new preference dialog
4118 and menu entry.
4119 * wptPreferencesDlg.cpp: New.
4120
4121 2001-05-09 Timo Schulz <[email protected]>
4122
4123 * wptAgent.cpp (gpga_writen): Write 'n' bytes into a socket.
4124 (gpga_readn): Read 'n' bytes from a socket.
4125 (gpga_open): Open the interface to the GPG-Agent.
4126 (gpga_close): Close the GPG-Agent socket.
4127 (gpga_clear_passphrase): Clear a passphrase from the GPG-Agent.
4128 (agent_add_fpr): Add a fingerprint to the cache. If WinPT quits,
4129 this keys will be remove from the GPG-Agent cache.
4130 (agent_delete_fpr): Remove a fingerprint from the cache.
4131 (agent_init): Clear the cache.
4132 (agent_timer_proc): Remove all stored passphrases which were
4133 requested through the chache.
4134
4135 2001-05-08 Timo Schulz <[email protected]>
4136
4137 * wptKeyserver.cpp (wsock_init): Replace the kserver init
4138 code which initialized the Wsock2 interface.
4139 (wsock_end): Ditto.
4140 * wptAgent.cpp: Remove the passphrase caching code and add
4141 the GPG agent code.
4142
4143 2001-05-05 Timo Schulz <[email protected]>
4144
4145 * wptCurrWnd.cpp (get_curr_wnd): Alternative code to retrieve
4146 the current window handle. This code doesn't use the hook DLL.
4147 Thanks to Oliver Nittka for his patch.
4148 * wptErrors.cpp (winpt_strerror): Fixed a small typo.
4149 * wptGPG.cpp (check_last_gpg_access): Remove debug code.
4150 * wptKeyMiscDlg.cpp (keymisc_dlg_proc): Change the keycache reloading
4151 scheme to prevent reloading the cache twice.
4152
4153 2001-05-04 Timo Schulz <[email protected]>
4154
4155 * wptKeyTrustDlg.cpp: Renamed to wptKeyEditOwnertrustDlg.cpp.
4156 * wptKeyEditOwnertrustDlg.cpp (keyedit_ownertrust_dlg):
4157 Move all the GPGME specific code to the main dialog. Now only
4158 the context values are set.
4159 * wptKeyEditDlg.cpp (keyedit_dlg_proc): Include the changed ownertrust
4160 code.
4161
4162 2001-05-02 Timo Schulz <[email protected]>
4163
4164 * wptKeyEditAddSubkeyDlg.cpp: New. Dialog to create additional
4165 subkeys for the mainkeys.
4166 * wptKeyEditAddUidDlg.cpp: (keyedit_adduid_dlg_proc): Set foreground
4167 window flag.
4168 * wptKeyEditDlg.cpp: (keyedit_dlg_proc): Added the code for the
4169 addkey feature.
4170
4171 2001-05-01 Timo Schulz <[email protected]>
4172
4173 * wptCurrWnd.cpp (wnd_msg_markall): New. Send the CTRL+a key sequence
4174 to a window.
4175 (wnd_msg_copy): New. Send the CTRL+c key sequence to a window.
4176 (wnd_msg_paste): New. Send the CTRL+v key sequence to a window.
4177 (wnd_msg_em_set_pos): Manipulate an edit multiline control text pos.
4178 * wptMainProc.cpp (wpt_main_proc): Fix some message string for
4179 the hotkey handling. Quit the program if a registration procedure
4180 failed.
4181 * wptErrors.cpp (log_box): Improved log handling to dump states
4182 of variables during regression tests.
4183
4184 2001-04-30 Timo Schulz <[email protected]>
4185
4186 * wptClipEditDlg.cpp: Now the dialog uses the Courier font to
4187 enhance the format of keys and other GPG data.
4188 * wptKeyserverDlg.cpp (keyserver_dlg_proc): Set the cache realod
4189 flag after receiving a key.
4190 * wptKeyTrustDlg.cpp (keytrust_dlg_proc): Add error message when
4191 no listbox entry was choosen.
4192 * wptKeySignDlg.cpp (keysign_dlg_proc): Add Check button text to
4193 the NLS suite.
4194 * wptKeygenDlg.cpp (keygen_dlg_proc): Set the cache reload flag
4195 instead of refresh the keycache.
4196
4197 2001-04-29 Timo Schulz <[email protected]>
4198
4199 * wptKeyEditDlg.cpp (clear_dlg_fields): Clear all passphrase items.
4200 (keyedit_dlg_proc): Free gpgme context. Add the passphrase for the
4201 adduid command.
4202 * wptKeyEditAddUidDlg.cpp (keyedit_adduid_dlg_proc): Initialize
4203 the dialog with a KEY structure that holds the keyid and the userid.
4204 * wptWndHook.cpp: Remove the global context and use instead of it
4205 static variables. Put all static variables into the SHARED data
4206 segment in the DLL.
4207
4208 2001-04-28 Timo Schulz <[email protected]>
4209
4210 * wptGPGME.cpp: New. Move some additional GPGME code into WinPT.
4211 So it's easier to update GPGME and we can use NLS to translate
4212 error strings.
4213 * wptVerifyList.cpp (get_sig_date): New. Removed from the GPGME code
4214 because we only use it here.
4215 * wptKeyEditDlg.cpp (keyedit_dlg_proc): Add the 'change passphrase'
4216 feature to the edit-key interface.
4217
4218 2001-04-27 Timo Schulz <[email protected]>
4219
4220 * wptCurrWnd.cpp (get_window_contents): Change the code for the last
4221 window concept. Thanks to Oliver.
4222 (set_window_contents): Add some stuff to set the position if the
4223 current window is an edit control.
4224 * wptKeyEditDlg.cpp (keyedit_dlg_proc): Add code for the 'adduid'
4225 stuff.
4226 * wptKeyEditAddUidDlg.cpp: New. (keyedit_adduid_dlg_proc): Code to
4227 create a new user id for a GPG key.
4228
4229 2001-04-26 Timo Schulz <[email protected]>
4230
4231 * wptKeyEditDlg.cpp (keyedit_dlg_proc): New. Dialog for the various
4232 edit-key commands.
4233 * wptKeyMiscDlg.cpp (keymisc_dlg_proc): Add the button for the edit
4234 key code.
4235
4236 2001-04-25 Timo Schulz <[email protected]>
4237
4238 * wptKeySignDlg.cpp (keysign_dlg_proc): Now we use a new GPGME
4239 callback system to pass the keyedit information to GPG.
4240 * wptKeyTrustDlg.cpp (keytrust_dlg_proc): Ditto.
4241
4242 2001-04-24 Timo Schulz <[email protected]>
4243
4244 * wptEncryptDlg.cpp (encrypt_dlg_proc): Release the static listview
4245 item and set it to zero.
4246 * wptSignDlg.cpp (sign_dlg_proc): Ditto.
4247 * wptSignEncDlg.cpp (sign_encrypt_dlg_proc): Ditto.
4248 * wptVerifyDlg.cpp (verify_dlg_proc): Ditto.
4249 * wptKeyMiscDlg.cpp (keymisc_dlg_proc): Ditto.
4250 (keymisc_dlg_proc): Provide the functionality to delete key pairs
4251 secret+public.
4252 * wptWndHook.cpp (is_winpt_wnd): Remove this function and put
4253 all code into (check_wnd).
4254 (check_wnd): Check if the window doesn't is a application related
4255 window.
4256
4257 2001-04-23 Timo Schulz <[email protected]>
4258
4259 * wptFindWnd.cpp (find_child_wnd_proc): Removed. This functionality
4260 is not needed because all dialog windows are top level windows.
4261
4262 2001-04-22 Timo Schulz <[email protected]>
4263
4264 * wptGPG.cpp (check_last_gpg_access): Reset switch before testing
4265 the condition.
4266 * wptFindWnd.cpp (find_child_wnd_proc): New. Callback to enumerate
4267 all children windows.
4268 (find_parent_wnd_proc): New. Callback to enumerate all parent windows.
4269 (find_window): New. Return if the specified windows as found.
4270 * wptW32API.cpp: (dialog_box_param): New. Alias with the additional
4271 feature to check if the dialog already exist (and then preventing
4272 the creation).
4273 * wptMainProc.cpp (wpt_main_proc): Replace all DialogBoxParam with
4274 then new dialog_box_param function. Thanks to Martin who told me
4275 about this dialog problem.
4276 * wptGPGPrefsDlg.cpp (gpgprefs_dlg_proc): Ditto.
4277 * wptKeyMiscDlg.cpp (keymisc_dlg_proc): Ditto. Add translation for the
4278 new signature buttons.
4279
4280 2001-04-21 Timo Schulz <[email protected]>
4281
4282 * wptWndHook.cpp (install_cbt_hook): Remove the thread because the
4283 system already is into a DLL.
4284 * wptKeyMiscDlg.cpp (keymisc_dlg_proc): Remove checkbutton and use
4285 instead of it a button to check the key signatures.
4286 * wptGPG.cpp (get_last_gpg_access): New. Retrieve the file timestamp
4287 from the given gpg object.
4288 (check_last_gpg_access): New. Compare the last file timestamp with the
4289 new timestamp.
4290 (init_gpg_table): New. Initialize the table with gpg objects who shall
4291 be watched.
4292 (keyring_check_last_access): Use the new code.
4293 * wptCurrWnd.cpp (set_window_contents): Restore the window if it is
4294 now iconic.
4295 * wptMainProc.cpp (wpt_main_proc): Add decrypt/verify for the
4296 current window stuff.
4297
4298 2001-04-17 Timo Schulz <[email protected]>
4299
4300 * wptWndHook.cpp (is_taskbar_wnd): New. Alias to check if the window
4301 belongs to the taskbar area.
4302 (is_winpt_wnd): New. Alias to check if the window belongs to WinPT.
4303 (cbt_proc): Change code to include both functions.
4304 * wptCurrWnd.cpp (get_window_contents): Add switch if we use the
4305 foreground or the CBT window.
4306 * wptMainProc.cpp (wpt_main_proc): All hotkey operations for the
4307 current window mode set the no_cbt variable.
4308 * wptGPG.cpp (keyring_check_last_access): New. Check if the keyring
4309 was modified by an external program.
4310 * wptKeyMiscDlg.cpp: (keymisc_dlg_proc): Now check for external
4311 keyring changes.
4312
4313 2001-04-16 Timo Schulz <[email protected]>
4314
4315 * wptWndHook,cpp (cbt_proc): Compare process ids to differ between
4316 WinPT and normal windows.
4317 (install_cbt_hook): Add pid to the context.
4318
4319 2001-04-14 Timo Schulz <[email protected]>
4320
4321 * wptCurrWnd.cpp: (get_window_contents): Add an event to switch
4322 the windows. This is needed by the current code.
4323 (set_window_contents): Ditto.
4324 * wptWndSwitchDlg.cpp: (wndswitch_dlg_proc): Create a hidden dialog
4325 and force it to the foreground. This is the event needed by the code
4326 above.
4327 (create_wndswitch_event): Execute the dialog.
4328 * wptMainProc.cpp: (wpt_main_proc): Add new links in the hotkey
4329 section. Add message entries for the code.
4330 * wptW32API.cpp: (copy_window_to_clip): Moved to the into the OE
4331 mailer code.
4332 (insert_window_from_clip): Ditto.
4333 * wptMailPlugin.cpp: (oe_set_message): Insert the new code and add
4334 the event to switch the windows.
4335 (oe_get_message): Ditto.
4336
4337 2001-04-13 Timo Schulz <[email protected]>
4338
4339 * wptMailPlugin.cpp: (oe_set_message): Change the id's for
4340 the attach_thread_input.
4341 (oe_get_message): Ditto.
4342 * wptCurrWnd.cpp: (get_window_contents): Ditto.
4343 (set_window_contents): Ditto.
4344
4345 2001-04-12 Timo Schulz <[email protected]>
4346
4347 * wptHotkeys.cpp: (register_single_hotkey): Add code for the current
4348 window stuff.
4349 * wptMainProc.cpp: (wpt_main_proc): WM_HOTKEY. Add the current window
4350 hotkeys.
4351 * wptW32API.cpp: (attach_thread_input): Split up the functions into
4352 two parts. The attach flags is always set.
4353 (detach_thread_input): See above. The attach flags is never set.
4354 * wptCurrWnd.cpp: New. Code for the current window stuff.
4355 (get_window_contents): Extract the text from the given window to
4356 the clipboard.
4357 (set_window_contents): Insert clipboard into the given window.
4358
4359 2001-04-09 Timo Schulz <[email protected]>
4360
4361 * wptGPG.cpp: (check_line): Ignore empty lines.
4362 (check_gpg_options): Ditto.
4363
4364 2001-04-09 Timo Schulz <[email protected]>
4365
4366 * wptClipboard.cpp: (clip_get_pgp_type): New. Return the PGP packet
4367 type. Kludge for decrypt/verify.
4368 * wptMainProc.cpp: (wpt_main_proc): Remove verify and put the
4369 code into the decrypt routine.
4370 * wptClipImportDlg.cpp: (clip_import_dlg_proc): New button to start
4371 the key management after import.
4372
4373 2001-04-07 Timo Schulz <[email protected]>
4374
4375 * wptAgent.cpp: (agent_new): Rename to agent_init and modify source.
4376 (agent_destroy): Ditto.
4377 (agent_passphrase_cache): Ditto.
4378 (agent_passphrase_remove): Ditto.
4379 (agent_passphrase_get): Ditto.
4380
4381 2001-04-06 Timo Schulz <[email protected]>
4382
4383 * wptGPG.cpp: (check_gpg_path): Fix a small error.
4384 * WinPT.cpp: (WinMain): Add a dialog for the possibity that it's the
4385 first time a user started WinPT.
4386 * wptClipboard.cpp: (clip_isalready_secured): Check the begin and
4387 end PGP header.
4388
4389 2001-04-06 Timo Schulz <[email protected]>
4390
4391 * wptOwnertrustDlg.cpp: New. (ownertrust_dlg_proc): New.
4392 * wptKeyTrustDlg.cpp: (key_trust_dlg_proc): Add new button for the
4393 ownertrust dialog.
4394
4395 2001-04-04 Timo Schulz <[email protected]>
4396
4397 * wptClipDecryptDlg.cpp (passphrase_callback_proc): Remove the static
4398 passphrase. Now a callback context is used.
4399 (passphrase_cb): Ditto.
4400 (clip_decrypt_dlg): Ditto.
4401 * wptWndHook.cpp (cbt_thread): New. Thread to enable CBT hook.
4402 (install_cbt_hook): Modify for the new thread model.
4403 (remove_cbt_hook): Ditto.
4404 * wptW32API.cpp: (init_crtical_section): New. Make the code MT safe.
4405 (delete_critical_section): Ditto.
4406 (lock): Ditto.
4407 (unlock): Ditto.
4408
4409 2001-04-02 Timo Schulz <[email protected]>
4410
4411 * WinPT.cpp: (set_gpgme_debug_env): New: Set the environment variable.
4412 * wptClipSignDlg.cpp: (clip_sign_dlg_proc): Now the keylist widget only
4413 contains valid keys.
4414 * wptClipEncryptDlg.cpp: (clip_encrypt_dlg_proc): Ditto.
4415
4416 2001-03-31 Timo Schulz <[email protected]>
4417
4418 * wptClipSignDlg.cpp: (clip_sign_dlg_proc): If no key was choosen,
4419 the GPG default key will be used.
4420
4421 2001-03-30 Timo Schulz <[email protected]>
4422
4423 * wptW32API.cpp: (new_strdup): Remove.
4424 * wptW32API.h: Ditto.
4425 * wptWndHook.cpp: (get_cbt_curr_wnd): Return the current window.
4426 * wptKeygenDlg.cpp: (clear_dlg_fields): New: Clear all text fields.
4427
4428 2001-03-28 Timo Schulz <[email protected]>
4429
4430 * wptClipEncryptDlg.cpp: (clip_encrypt_dlg_proc):
4431 Added the keyid to the "no trust" message.
4432 * wptKeyserverDlg.cpp: (check_pattern): New:
4433 Do some sanity checks of the search pattern.
4434 * wptMainProc.cpp: (wpt_main_proc): Add agent support.
4435 * wptHotkey.cpp: Add agent support.
4436
4437 2001-03-21 Timo Schulz <[email protected]>
4438
4439 * WinPT.cpp: (WinMain): Re-activate the enable debug switch.
4440 * wptKeylist.cpp: (keylist_add_key): Ignore invalid keys.
4441
4442 2001-03-20 Timo Schulz <[email protected]>
4443
4444 * wptClipDecryptDlg.cpp: Rewrote
4445
4446 2001-03-19 Timo Schulz <[email protected]>
4447
4448 * wptVerifyList.cpp: New control for the verify dialog.
4449 * wptClipVerifyDlg.cpp: Rewrote
4450
4451 2001-03-18 Timo Schulz <[email protected]>
4452
4453 * wptClipVerifyDlg.cpp: New: stub for further verify dialogs.
4454 * wptAgent.cpp: New: Experimental passphrase caching.
4455
4456 2001-03-16 Timo Schulz <[email protected]>
4457
4458 * wptDlgs.h: Add new dialog callback function.
4459 * wptKeysigDlg.cpp: New. Key signature listing dialog.
4460
4461 2001-03-15 Timo Schulz <[email protected]>
4462
4463 * wptClipEncryptDlg.cpp: Fix translation.
4464 * wptKeygenDlg.cpp: Fix the names of the button (avoid confused users).
4465 * wptKeymiscDlg.cpp: Fix the key deleting stuff.
4466
4467 2001-02-27 Timo Schulz <[email protected]>
4468
4469 * wptKeylistWidget.cpp: New. Implementation of a W32 keylist control.
4470 * wptClipKeytrustDlg.cpp: Index was counted from 0 (should be from 1):
4471 Fixed.
4472
4473 2001-02-25 Timo Schulz <[email protected]>
4474
4475 * wptGPGPrefsDlg.cpp: Add some new translation strings.
4476 * wptKeyGenDlg.cpp: Add all dialog text to the NLS suite.
4477 * wptMainProc.cpp, wptClipDecryptDlg.cpp: Change to new packet parser.
4478 * wptClipImportDlg.cpp: Finished basic interface.
4479
4480 2001-02-24 Timo Schulz <[email protected]>
4481
4482 * wptGPG.cpp: (check_gpg_path): Fix a bug.
4483 (check_gpg_options): Fix some bugs.
4484
4485 2001-02-22 Timo Schulz <[email protected]>
4486
4487 * wptGPG.cpp: (check_line): New. Check if the line contains a valid
4488 gpg argument.
4489 (check_gpg_options): New. Parses each buffer line to check_line().
4490
4491 2001-02-21 Timo Schulz <[email protected]>
4492
4493 * wptGPG.cpp: Fix the check_gpg_optfile() code.
4494 (gpg_errstr): Define some error constants to be more verbose.
4495 (set_gpg_options): New. Manipulate the options file.
4496 (get_gpg_options): New. Read in the options file.
4497 * wptFile.cpp: (get_file_size): New.
4498 * wptGPGOptDlg.cpp: New. Dialog for editing the options file
4499
4500 2001-02-20 Timo Schulz <[email protected]>
4501
4502 * wptGPGPrefsDlg.cpp: Add some sanity checks for the value.
4503 * wptClipImportDlg.cpp: Add some new code.
4504
4505 2001-02-19 Timo Schulz <[email protected]>
4506
4507 * wptRegistry.cpp: (is_installed): Remove.
4508 (regist_inst_winpt): Add selfcheck.
4509 (regist_inst_gpg): New. Add gpg releated registry entries.
4510 (regist_inst_mo): New. Add nls related path.
4511 (get_reg_entry), set_reg_entry(): Modify to be more flexible.
4512 (set_reg_entry_gpg): Handy functions for get_reg_entry.
4513 (set_reg_entry_mo): Ditto.
4514 (get_reg_entry_gpg): Ditto.
4515 (get_reg_entry_mo(): Ditto.
4516 * wptGPGPrefsDlg.cpp, wptNLS.cpp: Add support for the locale environment.
4517 * wptGPG.cpp: (check_gpg_optfile): Figure out if the option file.
4518 include keyring entries (2x)
4519 (check_gpg_path): Include the check_gpg_optfile() check.
4520
4521 2001-02-17 Timo Schulz <[email protected]>
4522
4523 * wptRegistry.cpp: (get_reg_entry): Return the GnuPG homedir from
4524 the registry.
4525 (set_reg_entry): Set a gnupg registry key.
4526 * wptGPG.cpp: Modify all function for the use with get_reg_entry().
4527 * WinPT.cpp: Change the way for the gpg searching mechanism.
4528 * wptGPGPrefsDlg.cpp: New dialog for dynamic GPG configuration.
4529 * wptClipImportDlg.cpp: (key import dialog): New.
4530 * wptKeylistElement.cpp:
4531 (wpt_lv_implist_build): Build up the key import list.
4532 (wpt_lv_implist_add_key): Insert a key into the import list.
4533 (wpt_lv_implist_dummy): Dummy to build up a box with a fixed size.
4534
4535 2001-02-10 Timo Schulz <[email protected]>
4536
4537 * wptMainProc.cpp: Move ctb_proc and hotkey inits to this file.
4538 * wptKeylistElement.cpp: New.
4539 * wptListElement.cpp: Remove.
4540 * wptW32API.cpp: Insert all lv_*** functions.
4541 * wptKeylistElement.cpp: (wpt_lv_keylist_release_key): New.
4542 (wpt_lv_keylist_release_keys): Ditto.
4543 * wptW32API.cpp: (w32_get_thread_id): New.
4544 (w32_attach_thread_input): New.
4545 * wptMailPlugin.cpp: (oe_get_message): Add thread attach mechanism.
4546 (oe_get_message): Add thread attach mechanism.
4547 (oe_encrypt): Modify for the attach treach mechanism.
4548 Add sanity check for recipients.
4549
4550 2001-02-07 Timo Schulz <[email protected]>
4551
4552 * wptClipEditDlg.cpp: (clip_edit_dlg_proc): Add some sanity checks.
4553 * wptExportDlg.cpp: (clip_export_dlg_proc): Ditto.
4554
4555 2001-02-04 Timo Schulz <[email protected]>
4556
4557 * wptSignDlg.cpp: (wpt_sign_proc): Add secret key listing.
4558 * wptMainProc.cpp: (wpt_main_proc):
4559 Remove ciphertext checks for signing and encrypting.
4560 (allow double encryption).
4561
4562 2001-02-03 Timo Schulz <[email protected]>
4563
4564 * wptMailPlugin.cpp: (oe_find_msg_window): Fix window handles.
4565 (oe_find_addr_window): Ditto.
4566 (oe_find_main_window): Ditto.
4567
4568 2001-02-02 Timo Schulz <[email protected]>
4569
4570 * wptW32API.cpp: (w32_hit_key): New.
4571 (w32_rel_key): New.
4572 (w32_copy_to_clip): New.
4573 (w32_insert_from_clip): New.
4574 (w32_get_clip_text): New.
4575 (w32_set_clip_text: New.
4576 (w32_show_if_icon): New.
4577
4578 2001-02-01 Timo Schulz <[email protected]>
4579
4580 * wptW32API.cpp: (w32_get_edit_text): New.
4581 (w32_set_menu_text): New.
4582 (w32_strdup): New.
4583 * wptMailPlugin.cpp: (oe_***): New. Basic OE interface.
4584 * Create all dialogs windows in the foreground.
4585
4586 2001-01-31 Timo Schulz <[email protected]>
4587
4588 * wptKeygenDlg.cpp: (wpt_keygen_proc): Passphrase sanity check.
4589 * wptW32API.cpp: New.
4590 * WinPT.cpp: (WinMain): Change the keyring checking code.
4591
4592 2001-01-29 Timo Schulz <[email protected]>
4593
4594 * wptClipboard.cpp: (clip_is_already_secure):
4595 Modify the pgp data detection.
4596
4597 2001-01-28 Timo Schulz <[email protected]>
4598
4599 * wptHotkey.cpp: (register_hotkey): Hotkey registration.
4600 (unregister_hotkey): Hotkey removing.
4601 * wptHokey.h: New.
4602 * wptWndHook.cpp:
4603 (wpt_cpt_proc): Window hook to save the current windows.
4604 * wptWndHoo.h: New.
4605 * wptMainProc.cpp: (wpt_main_proc): Add hotkey messages.
4606 * WinPT.cpp: (WinMain): Add hotkey registration.
4607
4608 2001-01-21 Timo Schulz <[email protected]>
4609
4610 * wptNLS.cpp: ported to C++.
4611 (gettext): Remove CP850 to ISO88591 conversation.
4612

Properties

Name Value
svn:eol-style native

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26