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

Diff of /trunk/Src/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 32 by twoaday, Mon Oct 24 08:03:48 2005 UTC revision 46 by werner, Fri Oct 28 12:57:05 2005 UTC
# Line 1  Line 1 
1  2005-10-23  Timo Schulz  <[email protected]>  2005-10-28  Werner Koch  <[email protected]>
2    
3          * wptFileManager.cpp (fm_get_file_type): Detect detached sigs.            * wptProxySettingsDlg.cpp (check_number): Cast isdigit() arg to
4          * wptKeyList.cpp (keylist_cmp_cb): Take care of expired/revoked keys.          unsigned.  Never ever use a possible signed char as argument for
5          (get_ext_validity): New.          ctype tests.  An alternative is to first test using isascii ().
6          * wptFileVerifyDlg.cpp (file_verify_dlg_proc): Several cleanups.          (keyserver_proxy_dlg_proc): Removed unused variable.
7          * wptClipEditDlg.cpp (load_clipboard): Factored out some code into  
8          this function.  2005-10-27  Timo Schulz  <[email protected]>
9          (load_clipboard_from_file): Likewise.  
10          (save_clipboard_to_file): New.          * wptKeyPropsDlg.cpp (get_validity): Take care of disabled keys.
11          * wptKeyManagerDlg.cpp (keyprops_dlg_proc): Fix stack overflow.          * wptKeylist.cpp (keylist_add_key): Check global key flag to
12            see if the key is disabled and not each subkey.
13  2005-10-22  Timo Schulz  <[email protected]>          (seclist_init): Likewise.
14            * wptClipDecryptDlg.cpp (gpgme_op_clip_decrypt): Use
15          Localized a lot of more strings.          gpgme_op_decrypt_verify.
16            (clip_decrypt_dlg_proc): Fixed fingerprint
17          * wptMainProc.cpp (load_smartcard): New.          to keyid conversation. This also fixes a crash.
18          * wptFileManager.cpp (fm_parse_command_line): Simplify code.          * wptClipVerifyDlg.cpp (clip_verify_dlg_proc): Likewise.
19          (fm_check_armor_type): Add new arg. Change all callers.          * wptKeyEditDlgs.cpp (do_editkey_expire): Ask if the key
20          (fm_get_file_type): Likewise.          already expired if the user wants to change the date.
21          * wptKeyPropsDlg.cpp (display_key_info): New.            * wptGPGPrefsDlg.cpp (gpgprefs_dlg_proc): Replace old
22          (keyprops_show_photo): Factored out some code into..          'v3 sig' option with the 'ask cert level' option. Sync
23          (keyprops_load_photo): ..this function.          with global preferences.
24            * wptKeySignDlg.cpp (keysign_dlg_proc): Watch if the
25  2005-10-21  Timo Schulz  <[email protected]>          gpg.conf contains 'ask-cert-level'. If not disable button.
26            * wptKeySigDlg.cpp (keysig_dlg_proc): Automatically disable
27          * wptFileManagerDlg.cpp (file_manager_dlg_proc): Use          the button when the key is available.
28          WM_INITPOPUPMENU to localize popup menu texts.          Reload key directly, not the entire cache.
29          * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Likewise.          
30          * wptClipSignDlg.cpp (one_key_proc): Use wipememory instead of memset.    2005-10-26  Timo Schulz  <[email protected]>
31    
32  2005-10-20  Timo Schulz  <[email protected]>          * wptFileManager.cpp (is_floppy_disc): Prevent very unlikely but
33            possible overflow.
34          Now WinPT depends on GPG 1.4.3 and GPGME 1.2.0.          (is_openpgp_ext): Compare case insentensive.
35            (add_single_file): New.
36          * wptPassphraseCB.cpp (passphrase_cb): Complete card support.          (fm_add_opened_files): Support multi file selection.
37          * wptCardEdit.cpp (genKey): Handle cancel case.          * wptKeyPropsDlg.cpp (do_change_ownertrust): Removed.
38          * keycache.c: Renamed into...          * wptKeyManager.cpp (km_enable_disable_key): Do not set cache
39          * wptKeyCache.cpp: ...this.          reload flag. Just update the single key.
40          * wptW32API.cpp (set_menu_text): Removed unused code.          * wptFileManagerDlg.cpp (file_encrypt_dlg_proc): Remove static var
41          (set_menu_text_bypos): New.          and disable anonymize recipient for now.
42          * wptCrypto.h: New.  
43          * wptMainProc.cpp (winpt_main_proc): Complete localize          Begin to port code to GCC. Fix all warning issued by the gcc
44          menu texts.          compiler.
45          * wptErrors.cpp (log_debug): Use a static var so the file  
46          is only opened once.  2005-10-25  Timo Schulz  <[email protected]>
47          (debug_end): Cleanup. Currently just close the log file.  
48          * wptErrors.h (wipememory): New.          * wptGPGUtil.cpp (create_process): Hide window.
49          (sfree_if_alloc): Use it here.          * wptKeyPropsDlg.cpp (get_photo_tmpname): New.
50          * WinPT.cpp (WinMain): Display the min. GPGME version which          * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Remove
51          is needed in case of an error.          static var 'enable'.
52            * wptKeygenDlg.cpp (keygen_dlg_proc): Likewise.
53  2005-10-17  Timo Schulz  <[email protected]>          (gpg_genkey_params): Make sure all primary keys are capable
54            for signing and certification.
55          Free all memory returned by the GPGME dll with gpgme_free ().          * wptKeySigDlg.cpp (is_sig): If no item is selected, return 0.
56            * wptGPG.cpp (gnupg_access_keyring): Check return value for
57          s/GPG_ERR_CARD_REMOVED/GPG_ERR_CARD_NOT_PRESENT.          NULL. Noted by Ralf.
58            (get_gnupg_prog): Simplified.
59          * wptKeyEdit.cpp (getCardStatus): Remove dummy key.          (check_homedir): Fixed. Return 0 when the dir is successfully created.
60          (list_handler): With user interaction to allow to insert          * wptKeyManagerDlg.cpp (km_file_import): Use the hourglass to
61          the card into the reader.          indicate a pending GPG process.
62          * wptKeyEditCB.cpp (gpg_edit_card): Likewise.          * wptFileManager.cpp (op_begin, op_end): New. Indicate an start
63          (common_card_handler): Fixed incorrect command string.          and and of an operation. For now just the cursor changes.
64          * wptKeyPropsDlg.cpp (get_card_type): New.          (fm_parse_command_line): Remove debug output. Thanks to Ralf again.
65          (keyprops_dlg_proc): Show card information if present.          * WinPT.cpp (WinMain): Check if there is already an instance and
66          * wptFileManager.cpp (secret_key_available): Make the code faster.          set a variable early as possible.
67                    (load_gettext): If a previous instance was found, do not output
68            any errors. Kudos to Ralf.      
69  2005-10-16  Timo Schulz  <[email protected]>  
70    2005-10-24  Timo Schulz  <[email protected]>
71          * wptPassphraseCB.cpp (passphrase_cb): Fix problem  
72          with hanging GPG process on cancel.          * wptPassphraseCB.cpp (passphrase_callback_proc): Allow to use
73          * keycache.c (gpg_keycache_release): Release all objects.          pre-defined recipients.
74            (release_gpg_passphrase_cb): Release recipients.
75  2005-10-15  Timo Schulz  <[email protected]>          * wptKeyPropsDlg.cpp (keyprops_load_photo): Set photo-id
76            validity if needed.
77          * wptCardEdit.cpp (setResult, getResult): New.          (keyprops_dlg_proc): Issue a warning if the photo is valid.
78          (reset): New.  
79          (getCardStatus): Check return codes and release all objects  2005-10-23  Timo Schulz  <[email protected]>
80          in case of errors.  
81          * wptCardEditCB.cpp (change_pin_handler): Call reset()          * wptFileManager.cpp (fm_get_file_type): Detect detached sigs.  
82          before quit.          * wptKeyList.cpp (keylist_cmp_cb): Take care of expired/revoked keys.
83          (editcard_handler): Likewise.          (get_ext_validity): New.
84          (common_card_handler): New.          * wptFileVerifyDlg.cpp (file_verify_dlg_proc): Several cleanups.
85          * wptCardDlg.cpp (card_changepin_dlg_proc): Also unmask          * wptClipEditDlg.cpp (load_clipboard): Factored out some code into
86          the old PIN when 'Hide Typing' is disabled.          this function.
87          * wptPassphraseCB.cpp (passphrase_cb): The card detection          (load_clipboard_from_file): Likewise.
88          works again. Support to re-enter passphrase.          (save_clipboard_to_file): New.
89            * wptKeyManagerDlg.cpp (keyprops_dlg_proc): Fix stack overflow.
90  2005-10-14  Timo Schulz  <[email protected]>  
91    2005-10-22  Timo Schulz  <[email protected]>
92          * wptCardDlg.cpp (card_status): New fields for the  
93          fingerprint creation time. Display card info as title.          Localized a lot of more strings.
94          (get_printable_version): New.  
95          * wptCardEditCB.cpp (editcard_handler): Fix problem          * wptMainProc.cpp (load_smartcard): New.
96          with the counter comparison.          * wptFileManager.cpp (fm_parse_command_line): Simplify code.
97            (fm_check_armor_type): Add new arg. Change all callers.
98  2005-10-11  Timo Schulz  <[email protected]>          (fm_get_file_type): Likewise.
99            * wptKeyPropsDlg.cpp (display_key_info): New.  
100          Port to GPGME basically finished.          (keyprops_show_photo): Factored out some code into..
101            (keyprops_load_photo): ..this function.
102  2005-09-20  Timo Schulz  <[email protected]>  
103    2005-10-21  Timo Schulz  <[email protected]>
104          * wptFileManagerDlg.cpp (file_secdel_confirm_dlg_proc):  
105          Do not use gpgme_recipients_t but the listview directly          * wptFileManagerDlg.cpp (file_manager_dlg_proc): Use
106          to add the selected files.          WM_INITPOPUPMENU to localize popup menu texts.
107            * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Likewise.
108  2005-09-07  Timo Schulz  <[email protected]>          * wptClipSignDlg.cpp (one_key_proc): Use wipememory instead of memset.  
109    
110          * Make sure all GetOpenFileName filters are terminated by \0\0.  2005-10-20  Timo Schulz  <[email protected]>
111    
112  2005-09-01  Timo Schulz  <[email protected]>          Now WinPT depends on GPG 1.4.3 and GPGME 1.2.0.
113    
114          * wptW32API.cpp (center_window): New argument for parent window.          * wptPassphraseCB.cpp (passphrase_cb): Complete card support.
115          Change all callers.          * wptCardEdit.cpp (genKey): Handle cancel case.
116          (center_window2): Likewise.          * keycache.c: Renamed into...
117          * GPGME now can read gpgProgram entries with 'REG_EXPAND_SZ'.          * wptKeyCache.cpp: ...this.
118          * wptGPG.cpp (gnupg_backup_options): Remove param. One backup          * wptW32API.cpp (set_menu_text): Removed unused code.
119          file is enough. Changed all callers.          (set_menu_text_bypos): New.
120            * wptCrypto.h: New.
121  2005-08-15  Timo Schulz  <[email protected]>          * wptMainProc.cpp (winpt_main_proc): Complete localize
122            menu texts.
123          * wptKeyEditDlgs.cpp (do_editkey_showpref): Take care of v3 keys.          * wptErrors.cpp (log_debug): Use a static var so the file
124          * wptGPGOptDlg.cpp (gpgopt_dlg_proc): Fixed name of title.          is only opened once.
125          * Make sure the passphrase is always overwritten before it is          (debug_end): Cleanup. Currently just close the log file.
126          freed (or the function returns).          * wptErrors.h (wipememory): New.
127          * wptKeyPropDlg.cpp (get_pref_cipher): New.          (sfree_if_alloc): Use it here.
128          (keyprops_dlg_proc): Use it here.          * WinPT.cpp (WinMain): Display the min. GPGME version which
129            is needed in case of an error.
130  2005-08-06  Timo Schulz  <[email protected]>  
131    2005-10-17  Timo Schulz  <[email protected]>
132          * wptGPGME.cpp (keycache_update): Reload OpenPGP parts  
133          of the secret key.          Free all memory returned by the GPGME dll with gpgme_free ().
134          (keycache_init): cache name of secret keyring.  
135          * wptKeyList.cpp (keylist_upd_key): Do not add long keyid.          s/GPG_ERR_CARD_REMOVED/GPG_ERR_CARD_NOT_PRESENT.
136          (get_key_type): Do not assume 'ultimate' means key pair.  
137          * wptKeyEditDlgs.cpp (diff_time): New.          * wptKeyEdit.cpp (getCardStatus): Remove dummy key.
138          (keyedit_addsubkey_dlg_proc): Changed design and use          (list_handler): With user interaction to allow to insert
139          diff_time. Drop checks for invalid keylength (< 1024, > 4096)          the card into the reader.
140          because the combo box automatically handles this.          * wptKeyEditCB.cpp (gpg_edit_card): Likewise.
141          * wptKeyManager.cpp (km_set_implicit_trust): Return error code.          (common_card_handler): Fixed incorrect command string.
142          * wptGPG.cpp (get_backup_name): New.          * wptKeyPropsDlg.cpp (get_card_type): New.
143          (gnupg_backup_keyrings): Rotate backup names, from 0..3.          (keyprops_dlg_proc): Show card information if present.
144          * wptClipImportDialog.cpp (clip_import_dlg_proc): Free memory.          * wptFileManager.cpp (secret_key_available): Make the code faster.
145          * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Use 0x short keyid and          
146          not the long keyid.  
147    2005-10-16  Timo Schulz  <[email protected]>
148  2005-08-05  Timo Schulz  <[email protected]>  
149            * wptPassphraseCB.cpp (passphrase_cb): Fix problem
150          * wptListView.cpp (listview_set_item2): New.          with hanging GPG process on cancel.
151          * wptKeyManager.cpp (km_check_if_protected): Directly          * keycache.c (gpg_keycache_release): Release all objects.
152          retrieve gpgme_key_t from the list.  
153          (km_check_key_status): Likewise.          2005-10-15  Timo Schulz  <[email protected]>
154          * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Also use  
155          a human-readable name for secret key export.          * wptCardEdit.cpp (setResult, getResult): New.
156          Reload just the keys which were affected by updates          (reset): New.
157          (edit-key).          (getCardStatus): Check return codes and release all objects
158          (update_key): New.          in case of errors.
159          * wptKeyList.cpp ((keylist_upd_key): Stripped down          * wptCardEditCB.cpp (change_pin_handler): Call reset()
160          version of keylist_add_key.          before quit.
161          * wptKeyEditDlgs.cpp (keyedit_main_dlg_proc): Do not          (editcard_handler): Likewise.
162          reload the keycache here, just flag 'update'. Give the          (common_card_handler): New.
163          control to the calling dialog.          * wptCardDlg.cpp (card_changepin_dlg_proc): Also unmask
164          * wptKeySignDlg.cpp (keysign_dlg_proc): Use winpt_key_t          the old PIN when 'Hide Typing' is disabled.
165          as parameter. Changed all callers.          * wptPassphraseCB.cpp (passphrase_cb): The card detection
166          Add date of expiration to the key info.          works again. Support to re-enter passphrase.
167          (get_expire_date): New.  
168          Use a checkbox to allow to ask for the cert level.  2005-10-14  Timo Schulz  <[email protected]>
169          * wptClipEncryptDlg.cpp (clip_encrypt_dlg_proc): Do no reload  
170          the cache.          * wptCardDlg.cpp (card_status): New fields for the
171            fingerprint creation time. Display card info as title.
172  2005-08-04  Timo Schulz  <[email protected]>          (get_printable_version): New.
173            * wptCardEditCB.cpp (editcard_handler): Fix problem
174          * wptListView.cpp (listview_scroll): New.          with the counter comparison.
175          (listview_get_item2): New.  
176          * wptClipEncryptDlg.cpp (clip_encrypt_dlg_proc): If the  2005-10-11  Timo Schulz  <[email protected]>
177          item was found, make it visible with scrolling.  
178          * wptKeyManager.cpp (km_find_key): New.          Port to GPGME basically finished.
179          (keylist_subclass_proc): Support to handle some acceleators.  
180          Strg+{C, P, F, A}.  2005-09-20  Timo Schulz  <[email protected]>
181          (km_get_key_status): Get the gpgme_key_t object directly  
182          from the list.          * wptFileManagerDlg.cpp (file_secdel_confirm_dlg_proc):
183          * wptGPGPRefsDlg.cpp (gpgprefs_dlg_proc): Also try to set          Do not use gpgme_recipients_t but the listview directly
184          the config file (if it exists).          to add the selected files.
185          * wptKeySignDlg.cpp (keysign_dlg_proc): Use easier code  
186          to handle the click->activate situation.  2005-09-07  Timo Schulz  <[email protected]>
187          * wptPassphraseCB.cpp (passphrase_callback_proc): Likewise.  
188          Support to check the passphrase quality.          * Make sure all GetOpenFileName filters are terminated by \0\0.
189          * wptPassphraseDlg.cpp (passwd_dlg_proc): Likewise.  
190          (request_passphrase): Rename 'init' to 'flags' to allow more  2005-09-01  Timo Schulz  <[email protected]>
191          options.  
192          * wptMAPI.cpp: Check all *alloc results.          * wptW32API.cpp (center_window): New argument for parent window.
193          * wptKeyGenDlg.cpp (keygen_dlg_proc): Use a rudimentary          Change all callers.
194          passphrase quality check.          (center_window2): Likewise.
195          * wptMDSumDlg.cpp (mdsum_dlg_proc): Use md5/sha1sum file          * GPGME now can read gpgProgram entries with 'REG_EXPAND_SZ'.
196          format and allow to save the checksum in a file.          * wptGPG.cpp (gnupg_backup_options): Remove param. One backup
197          * wptKeyRevokeDlg.cpp (key_revoke_dlg_proc): Issue a warning          file is enough. Changed all callers.
198          when the PGP mode is disabled.  
199          wptKeyEditDlgs.cpp (do_editkey_primary): Return if just  2005-08-15  Timo Schulz  <[email protected]>
200          one user-ID exists.  
201          (keyedit_dlg_proc): Fixed index problem.          * wptKeyEditDlgs.cpp (do_editkey_showpref): Take care of v3 keys.
202          * wptKeyPropsDlg.cpp (get_validity): New.          * wptGPGOptDlg.cpp (gpgopt_dlg_proc): Fixed name of title.
203          (keyprops_dlg_proc): Actually show extended validity if possible.          * Make sure the passphrase is always overwritten before it is
204          * wptKeyList.cpp (get_key_fpr): Support for old v3 format.          freed (or the function returns).
205          (do_addkey): Use listview_add_item2 to store key as opaque          * wptKeyPropDlg.cpp (get_pref_cipher): New.
206          param inside the list.          (keyprops_dlg_proc): Use it here.
207          * wptFileStatDlg.cpp (get_digest_algo): Add SHAxxx.  
208          (file_stat_dlg_proc): End dialog if no PGP data was found.  2005-08-06  Timo Schulz  <[email protected]>
209          (do_list_packets): Return the number of valid PGP packets  
210          of the file.          * wptGPGME.cpp (keycache_update): Reload OpenPGP parts
211            of the secret key.
212  2005-08-02  Timo Schulz  <[email protected]>          (keycache_init): cache name of secret keyring.
213            * wptKeyList.cpp (keylist_upd_key): Do not add long keyid.
214          * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Instead of          (get_key_type): Do not assume 'ultimate' means key pair.
215          using 'Default Keyserver' add the real keyserver name to          * wptKeyEditDlgs.cpp (diff_time): New.
216          the menu.          (keyedit_addsubkey_dlg_proc): Changed design and use
217          The rebuild command does not reload the cache any longer.          diff_time. Drop checks for invalid keylength (< 1024, > 4096)
218          Use ATTR_NAME + .asc as the filename and not keyid + .asc.          because the combo box automatically handles this.
219          * wptProxySettingsDlg.cpp (enable_proxy_auth): New.          * wptKeyManager.cpp (km_set_implicit_trust): Return error code.
220          (keyserver_proxy_dlg_proc): Changed the design a little          * wptGPG.cpp (get_backup_name): New.
221          and add some additional sanity checks.          (gnupg_backup_keyrings): Rotate backup names, from 0..3.
222          * wptGPGParser.cpp (commit_gpg_options): Use W32 line endings.          * wptClipImportDialog.cpp (clip_import_dlg_proc): Free memory.
223          This fixes the problem that the GPG option dialog does not show          * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Use 0x short keyid and
224          very nice lines.          not the long keyid.
225          * wptGPGOptDlg.cpp (gpgopt_dlg_proc): s/options/config.  
226          * wptKeySigDlg.cpp (keysig_dlg_proc): If a single key is selected  2005-08-05  Timo Schulz  <[email protected]>
227          check for 'NOKEY' before asking a keyserver.  
228          * wptKeyManager.cpp (km_delete_keys): Do not set 'refresh' flag.          * wptListView.cpp (listview_set_item2): New.
229          If a lot of keys were selected, ask if the user wants to confirm          * wptKeyManager.cpp (km_check_if_protected): Directly
230          each delete procedure or allow to cancel the operation.          retrieve gpgme_key_t from the list.
231          * wptFileManagerDlg.cpp (file_import_dlg_proc): Display how much          (km_check_key_status): Likewise.        
232          keys the file contain.          * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Also use
233          * wptKeyList.cpp (get_key_algo): Beautified.          a human-readable name for secret key export.
234          (get_key_status): Drop the "[XYZ] Unknown" format, it is too          Reload just the keys which were affected by updates
235          confusing for users.          (edit-key).
236          * wptKeyManager.cpp (km_check_key_status): Adjustments for the          (update_key): New.
237          new code.          * wptKeyList.cpp ((keylist_upd_key): Stripped down
238          (km_check_for_seckey): Reset utrust parameter. Return -1 for          version of keylist_add_key.
239          invalid (exp+rev+dis) keys.          * wptKeyEditDlgs.cpp (keyedit_main_dlg_proc): Do not
240            reload the keycache here, just flag 'update'. Give the
241  2005-08-01  Timo Schulz  <[email protected]>          control to the calling dialog.
242            * wptKeySignDlg.cpp (keysign_dlg_proc): Use winpt_key_t
243          * wptKeyserver.cpp (kserver_urlencode): Use unsigned for all given          as parameter. Changed all callers.
244          sizes.          Add date of expiration to the key info.
245          (check_IP_or_hostname): New.          (get_expire_date): New.
246          (kserver_load_conf): Correct finger URL parsing problem.          Use a checkbox to allow to ask for the cert level.
247          (port_from_proto): New.          * wptClipEncryptDlg.cpp (clip_encrypt_dlg_proc): Do no reload
248          (keyserver_load_conf): Guess the port.          the cache.
249          (keyserver_set_default): Allocate new buffer.  
250          (kserver_load_conf): Likewise.  2005-08-04  Timo Schulz  <[email protected]>
251          * wptHTTP.c (parse_reqline, parse_request): Removed.  
252          Use WinPT error code and remove all unused code.          * wptListView.cpp (listview_scroll): New.
253          * wptKeyserverDlg.cpp (keyserver_dlg_proc): Properly handle finger URLs.          (listview_get_item2): New.
254          * wptProxySettingsDlg.cpp (read_proxy): Simple check for          * wptClipEncryptDlg.cpp (clip_encrypt_dlg_proc): If the
255          invalid host/IP addresses.          item was found, make it visible with scrolling.
256          * wptGPG.cpp (multi_gnupg_path): Return allocated buffer.          * wptKeyManager.cpp (km_find_key): New.
257          Changed all callers.          (keylist_subclass_proc): Support to handle some acceleators.
258          * wptPreferencesDlg.cpp (prefs_dlg_proc): At the first start,          Strg+{C, P, F, A}.
259          automatically set 'backup to homedir'.          (km_get_key_status): Get the gpgme_key_t object directly
260          * WinPT.cpp (WinMain): Use desktop window as the parent window          from the list.
261          to load 'first-start' dialogs.          * wptGPGPRefsDlg.cpp (gpgprefs_dlg_proc): Also try to set
262          * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Do not set 'refresh'          the config file (if it exists).
263          flag after deleting keys.          * wptKeySignDlg.cpp (keysign_dlg_proc): Use easier code
264          * wptFirstRunDlg.cpp (first_run_dlg_proc): Use a new structure          to handle the click->activate situation.
265          for passing the arguments.          * wptPassphraseCB.cpp (passphrase_callback_proc): Likewise.
266          * wptGPGPrefsDlg.cpp (gpgprefs_dlg_proc): Do not store "" for          Support to check the passphrase quality.
267          the OptFile. This was responsible for a lot of 'General Errors'          * wptPassphraseDlg.cpp (passwd_dlg_proc): Likewise.
268          after the first start related to key caching.          (request_passphrase): Rename 'init' to 'flags' to allow more
269          Automatically set the gpg binary if possible.          options.
270            * wptMAPI.cpp: Check all *alloc results.
271  2005-07-22  Timo Schulz  <[email protected]>          * wptKeyGenDlg.cpp (keygen_dlg_proc): Use a rudimentary
272            passphrase quality check.
273          * wptMainProc.cpp (winpt_main_proc): Take care for shutdown          * wptMDSumDlg.cpp (mdsum_dlg_proc): Use md5/sha1sum file
274          messages and make sure WinPT make a keyring backup in this case.          format and allow to save the checksum in a file.
275          * wptGPGME.cpp (keycache_reload): Do not rebuild the signature          * wptKeyRevokeDlg.cpp (key_revoke_dlg_proc): Issue a warning
276          cache each time. Just do it on startup.          when the PGP mode is disabled.
277          * wptKeyManager.cpp (km_key_is_v3): Use new ATTR_VERSION.          wptKeyEditDlgs.cpp (do_editkey_primary): Return if just
278          * wptKeyEditDlgs.cpp (keyedit_main_dlg_proc): Assume the v3 flag          one user-ID exists.
279          was set by the calling function.          (keyedit_dlg_proc): Fixed index problem.
280          * wptKeyGenDlg.cpp (keygen_wizard_dlg_proc): Ask for backups.          * wptKeyPropsDlg.cpp (get_validity): New.
281          (keygen_dlg_proc): Only add the generated key to the keycache          (keyprops_dlg_proc): Actually show extended validity if possible.
282          and do not reload the entire cache.          * wptKeyList.cpp (get_key_fpr): Support for old v3 format.
283          * wptKeyManager.cpp (km_delete_keys): Store the number of keys          (do_addkey): Use listview_add_item2 to store key as opaque
284          because in each loop iteration it will be new calculated.          param inside the list.
285          * wptListView.cpp (listview_del_items): Likewise.          * wptFileStatDlg.cpp (get_digest_algo): Add SHAxxx.
286          * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Directly add the          (file_stat_dlg_proc): End dialog if no PGP data was found.
287          generated key to the list instead of reloading the entire cache.          (do_list_packets): Return the number of valid PGP packets
288          * wptKeyEditDlgs.cpp (parse_preflist): Support fpr SHAnnn.          of the file.
289    
290    2005-08-02  Timo Schulz  <[email protected]>
291    
292            * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Instead of
293            using 'Default Keyserver' add the real keyserver name to
294            the menu.
295            The rebuild command does not reload the cache any longer.
296            Use ATTR_NAME + .asc as the filename and not keyid + .asc.
297            * wptProxySettingsDlg.cpp (enable_proxy_auth): New.
298            (keyserver_proxy_dlg_proc): Changed the design a little
299            and add some additional sanity checks.
300            * wptGPGParser.cpp (commit_gpg_options): Use W32 line endings.
301            This fixes the problem that the GPG option dialog does not show
302            very nice lines.
303            * wptGPGOptDlg.cpp (gpgopt_dlg_proc): s/options/config.
304            * wptKeySigDlg.cpp (keysig_dlg_proc): If a single key is selected
305            check for 'NOKEY' before asking a keyserver.
306            * wptKeyManager.cpp (km_delete_keys): Do not set 'refresh' flag.
307            If a lot of keys were selected, ask if the user wants to confirm
308            each delete procedure or allow to cancel the operation.
309            * wptFileManagerDlg.cpp (file_import_dlg_proc): Display how much
310            keys the file contain.
311            * wptKeyList.cpp (get_key_algo): Beautified.
312            (get_key_status): Drop the "[XYZ] Unknown" format, it is too
313            confusing for users.
314            * wptKeyManager.cpp (km_check_key_status): Adjustments for the
315            new code.
316            (km_check_for_seckey): Reset utrust parameter. Return -1 for
317            invalid (exp+rev+dis) keys.
318    
319    2005-08-01  Timo Schulz  <[email protected]>
320    
321            * wptKeyserver.cpp (kserver_urlencode): Use unsigned for all given
322            sizes.
323            (check_IP_or_hostname): New.
324            (kserver_load_conf): Correct finger URL parsing problem.
325            (port_from_proto): New.
326            (keyserver_load_conf): Guess the port.
327            (keyserver_set_default): Allocate new buffer.
328            (kserver_load_conf): Likewise.
329            * wptHTTP.c (parse_reqline, parse_request): Removed.
330            Use WinPT error code and remove all unused code.
331            * wptKeyserverDlg.cpp (keyserver_dlg_proc): Properly handle finger URLs.
332            * wptProxySettingsDlg.cpp (read_proxy): Simple check for
333            invalid host/IP addresses.
334            * wptGPG.cpp (multi_gnupg_path): Return allocated buffer.
335            Changed all callers.
336            * wptPreferencesDlg.cpp (prefs_dlg_proc): At the first start,
337            automatically set 'backup to homedir'.
338            * WinPT.cpp (WinMain): Use desktop window as the parent window
339            to load 'first-start' dialogs.
340            * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Do not set 'refresh'
341            flag after deleting keys.
342            * wptFirstRunDlg.cpp (first_run_dlg_proc): Use a new structure
343            for passing the arguments.
344            * wptGPGPrefsDlg.cpp (gpgprefs_dlg_proc): Do not store "" for
345            the OptFile. This was responsible for a lot of 'General Errors'
346            after the first start related to key caching.
347            Automatically set the gpg binary if possible.
348    
349    2005-07-22  Timo Schulz  <[email protected]>
350    
351            * wptMainProc.cpp (winpt_main_proc): Take care for shutdown
352            messages and make sure WinPT make a keyring backup in this case.
353            * wptGPGME.cpp (keycache_reload): Do not rebuild the signature
354            cache each time. Just do it on startup.
355            * wptKeyManager.cpp (km_key_is_v3): Use new ATTR_VERSION.
356            * wptKeyEditDlgs.cpp (keyedit_main_dlg_proc): Assume the v3 flag
357            was set by the calling function.
358            * wptKeyGenDlg.cpp (keygen_wizard_dlg_proc): Ask for backups.
359            (keygen_dlg_proc): Only add the generated key to the keycache
360            and do not reload the entire cache.
361            * wptKeyManager.cpp (km_delete_keys): Store the number of keys
362            because in each loop iteration it will be new calculated.
363            * wptListView.cpp (listview_del_items): Likewise.
364            * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Directly add the
365            generated key to the list instead of reloading the entire cache.
366            * wptKeyEditDlgs.cpp (parse_preflist): Support fpr SHAnnn.
367    
368  2005-05-09  Timo Schulz  <[email protected]>  2005-05-09  Timo Schulz  <[email protected]>
369    
370          * wptCommonDlg.cpp (http_file_dlg_proc): Renamed to..          * wptCommonDlg.cpp (http_file_dlg_proc): Renamed to..
# Line 329  Line 407 
407          (kserver_sendkey): Likewise.          (kserver_sendkey): Likewise.
408          * wptProxySettingsDlg.cpp (check_number): New.          * wptProxySettingsDlg.cpp (check_number): New.
409          (read_proxy): Check the entered port number.          (read_proxy): Check the entered port number.
410          * wptKeySignDlg.cpp (sig_class_dlg_proc): Check default button.          * wptKeySignDlg.cpp (sig_class_dlg_proc): Check default button.
411          * wptW32API.cpp (get_folder_dlg): Free memory.          * wptW32API.cpp (get_folder_dlg): Free memory.
412    
413  2005-04-11  Timo Schulz  <[email protected]>  2005-04-11  Timo Schulz  <[email protected]>

Legend:
Removed from v.32  
changed lines
  Added in v.46

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26