Mercurial > gftp.yaz
annotate ChangeLog @ 843:32dbed7e0dc4
2006-11-2 Brian Masney <masneyb@gftp.org>
* lib/local.c lib/misc.c lib/sshv2.c - more improvements to make sure
that the filename is encoded in the proper character set.
author | masneyb |
---|---|
date | Fri, 03 Nov 2006 02:35:47 +0000 |
parents | 0d6fba16c7db |
children | 1ece208d1357 |
rev | line source |
---|---|
841 | 1 2006-11-2 Brian Masney <masneyb@gftp.org> |
843 | 2 * lib/local.c lib/misc.c lib/sshv2.c - more improvements to make sure |
3 that the filename is encoded in the proper character set. | |
4 | |
842 | 5 * lib/gftp.h lib/protocols.c - added _do_convert_string(), which is |
6 the common code that was in gftp_string_to_utf8() and | |
7 gftp_string_from_utf8(). | |
8 | |
841 | 9 * lib/local.c (local_chdir) - fixed double free of the utf8 variable. |
10 This only occured in the CVS version. | |
11 | |
12 * src/uicommon/gftpui.c (gftpui_common_process_command) - fixes for | |
13 detecting empty lines | |
14 | |
838 | 15 2006-10-31 Brian Masney <masneyb@gftp.org> |
840 | 16 * lib/sshv2.c - added i18n support so that the files are encoded |
17 properly | |
18 | |
839 | 19 * lib/sshv2.c (sshv2_add_string_to_buf) - added length argument to |
20 this function. | |
21 | |
838 | 22 * lib/gftp.h lib/local.c lib/misc.c lib/protocols.c lib/rfc959.c |
23 src/gtk/misc-gtk.c src/text/gftp-text.c - added length argument to | |
24 gftp_string_from_utf8() and gftp_string_to_utf8() | |
25 | |
26 * src/uicommon/gftpui.c - warning fixes | |
27 | |
28 2006-10-19 Brian Masney <masneyb@gftp.org> | |
832 | 29 * lib/fsp.c lib/gftp.h lib/local.c lib/protocols.c lib/rfc2068.c |
30 lib/rfc959.c lib/sshv2.c - added use_local_encoding variable to the | |
31 gftp_request structure. This will determine if the filename should | |
32 be converted to the local or remote character set. | |
33 | |
831 | 34 * lib/local.c - convert the file or directory to the proper locale |
35 | |
830 | 36 * src/gtk/gtkui.c src/gtk/gtkui_transfer.c src/gtk/misc-gtk.c lib/gftp.h |
37 lib/misc.c lib/protocols.c - removed code that converts the filename to | |
38 UTF8. This will be handled by the library. Removed utf8_file member from | |
39 the gftp_file structure. | |
40 | |
41 * lib/rfc959.c - convert the file or directory from UTF8 to the proper | |
42 locale when sending a command to the server. | |
43 | |
44 * src/uicommon/gftpui.c src/gtk/menu-items.c lib/misc.c lib/gftp.h | |
45 (gftp_gen_ls_string) - convert the filename from UTF8 to the proper | |
46 locale before it is displayed to the user. | |
47 | |
825 | 48 2006-10-15 Brian Masney <masneyb@gftp.org> |
829 | 49 * src/gtk/transfer.c - split the code that checks for finished view and |
50 edit processes into smaller functions. | |
51 | |
52 * src/gtk/transfer.c - after a local file is edited, refresh the local | |
53 file status (from Nathaniel M Nelson <xatmes@.net>) (closes #311166) | |
54 | |
828 | 55 * lib/fsplib/lock.c (client_init_key) - renamed the sun local variable |
56 to su. This was causing compile problems under Solaris. | |
57 | |
58 * lib/fsplib/lock.h - include ../../config.h | |
59 | |
827 | 60 * src/gtk/delete_dialog.c (askdel) - fixes displaying the proper number |
61 of directories that will be deleted to the user when there are no files | |
62 to delete | |
63 | |
64 * src/uicommon/gftpui.c - removed debugging statements | |
65 | |
826 | 66 * lib/protocols.c (gftp_get_all_subdirs) - use S_ISDIR macro instead of |
67 checking the bitmask against S_IFDIR. | |
68 | |
825 | 69 * src/uicommon/gftpui.c - split the code that transfers files into |
70 smaller functions. | |
71 | |
819 | 72 2006-10-1 Brian Masney <masneyb@gftp.org> |
821 | 73 * lib/gftp.h lib/misc.c lib/protocols.c src/gtk/misc-gtk.c |
74 src/uicommon/gftpuicallbacks.c (gftp_match_filespec) - look at the | |
75 show_hidden_files option inside this function. Use the option's value | |
76 to determine if the file should be shown to the user. | |
77 | |
820 | 78 * lib/ftpcommon.h lib/ftps.c lib/rfc959.c - automatically reconnect to |
79 the server if a timeout occurs. | |
80 | |
81 * src/uicommon/gftpui.c (_gftpui_common_thread_callback) - removed | |
82 checks for the timeouts. This is now transparently handled in the | |
83 FTP[S]* protocols. I need to check for timeouts in the other protocols. | |
84 | |
819 | 85 * src/gtk/transfer.c src/uicommon/gftpui.c src/uicommon/gftpui.h - added |
86 new functions for canceling and skipping file transfers | |
87 | |
816 | 88 2006-9-26 Brian Masney <masneyb@gftp.org> |
818 | 89 * lib/rfc959.c (rfc959_end_transfer) - close the data connection before |
90 the control connection is closed. (rfc959_put_next_file_chunk) - make | |
91 sure the entire block is properly written to the server. This is due to | |
92 the ASCII conversion (if necessary) is performed in this function. | |
93 Removed rfc959_set_file_time(). | |
94 | |
817 | 95 * lib/protocols.c (gftp_fd_read, gftp_fd_write) - make sure the return |
96 value properly matches what was actually read or written to the socket | |
97 | |
816 | 98 * lib/rfc959.c - added rfc959_close_data_connection() |
99 | |
813 | 100 2006-9-15 Brian Masney <masneyb@gftp.org> |
101 * lib/protocols.c (gftp_fd_write, gftp_fd_read, | |
102 gftp_fd_set_sockblocking) - added checks to make sure the file | |
103 descriptor is not set to -1 (gftp_abort_transfer) - added FIXME | |
104 comment | |
105 | |
811 | 106 2006-9-14 Brian Masney <masneyb@gftp.org> |
107 * src/uicommon/gftpui.c - added _do_transfer_file(). This will take | |
108 care of the actual file transfer. It will also make sure that the | |
109 entire buffer has been transmitted properly. | |
110 | |
111 * lib/protocols.c lib/rfc959.c (*_put_next_file_chunk) - removed | |
112 unneeded code that checks for a block size of 0 | |
113 | |
114 * lib/rfc959.c (rfc959_syst) - disable show_hidden_files and | |
115 resolve_remote_symlinks if the remote system type is OS/400. | |
116 | |
806 | 117 2006-8-10 Brian Masney <masneyb@gftp.org> |
808 | 118 * lib/options.h src/gtk/gftp-gtk.c (_gftp_exit) - added new option: |
119 remember_last_directory. This will control whether or not the last | |
120 directory is remembered when the application is closed. I had a lot | |
121 of people ask for this option. I personally find it annoying, which | |
122 is why I left the option disabled by default. | |
123 | |
807 | 124 * src/gtk/gtkui.c (gftpui_refresh) - delete the cache entry before |
125 checking to see if it needs to reconnect to the remote server | |
126 | |
806 | 127 * src/uicommon/gftpui.c (gftpui_common_cmd_site) - make sure the |
128 toggled state is enabled so that the command is prepended with the | |
129 SITE command | |
130 | |
805 | 131 2006-09-07 Pema Geyleg <pgeyleg@gmail.com> |
132 | |
133 * configure.in: Added dz to ALL_LINGUAS | |
134 | |
803 | 135 2006-08-27 Abel Cheung <abel@oaka.org> |
136 | |
137 * configure.in: Added 'zh_HK' to ALL_LINGUAS. | |
138 | |
801 | 139 2006-08-21 Raivis Dejus <orvils@gmail.com> |
140 | |
141 * configure.in: Added "lv" (Latvian) to ALL_LINGUAS. | |
142 * po/lv.po: Added Latvian Translation. | |
143 | |
798 | 144 2006-8-8 Brian Masney <masneyb@gftp.org> |
145 * lib/protocols.c (gftp_parse_ls_unix) - fixes whenever a smaller than | |
146 expected attribute field is returned (gftp_get_line) - make sure the | |
147 end of the buffer is nul terminated properly | |
148 | |
795 | 149 2006-8-2 Brian Masney <masneyb@gftp.org> |
796 | 150 * src/gtk/misc-gtk.c (MakeYesNoDialog, MakeEditDialog) - use |
151 gtk_grab_add() to make sure these dialogs have exclusive focus in | |
152 gftp (closes #340436) | |
153 | |
795 | 154 * src/uicommon/gftpui.c (gftpui_common_add_file_transfer) - don't |
155 prompt the user about what to do with the file(s) that already exist if | |
156 the overwrite_default option is enabled. This option is disabled by | |
157 default. (closes #336232) | |
158 | |
791 | 159 2006-7-29 Brian Masney <masneyb@gftp.org> |
793 | 160 * src/gtk/gftp-gtk.c src/gtk/transfer.c - removed some unnecessary |
161 updates to the toolbar | |
162 | |
792 | 163 * lib/gftp.h lib/options.h lib/protocols.c src/gtk/gftp-gtk.c |
164 src/gtk/misc-gtk.c src/text/gftp-text.c - removed the | |
165 startup_directory option. Added local_startup_directory and | |
166 remote_startup_directory_options. These options are automatically | |
167 saved whenever gftp exits. | |
168 | |
791 | 169 * src/gtk/bookmarks.c (edit_bookmarks) - fixed the keybindings in the |
170 bookmarks dialog. Also added mnemonics to all of the entries. | |
171 (closes #329820) | |
172 | |
173 * src/gtk/gftp-gtk.c (CreateMenus) - added keybindings to most of the | |
174 entries in the local and remote menus. Also added mnemonics to all of | |
175 the entries. | |
176 | |
788 | 177 2006-7-28 Brian Masney <masneyb@gftp.org> |
789 | 178 * src/gtk/gftp-gtk.h src/gtk/gftp-gtk.c - remember the last protocol |
791 | 179 that was used in the toolbar (closes #314330) |
789 | 180 |
788 | 181 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h src/gtk/misc-gtk.c - warning |
182 fixes when creating the system menus. Removed some unused global | |
183 variables. | |
184 | |
787 | 185 2006-7-27 Brian Masney <masneyb@gftp.org> |
186 * lib/protocols.c (gftp_get_all_subdirs) - split this function into | |
187 several smaller functions. Added support for getting the true file | |
188 size if it is a symlink. Added more error handling. Fixed a segfault | |
189 that may occur when transferring deeply nested directories | |
190 | |
191 * lib/fsp.c lib/gftp.h lib/local.c lib/protocols.c lib/rfc2068.c | |
192 lib/rfc959.c lib/sshv2.c (*_chdir) - removed support for passing | |
193 the request->directory into this function. There is no longer a | |
194 need for this. (*_stat_filename) - added support for getting the | |
195 file size | |
196 | |
783 | 197 2006-7-21 Brian Masney <masneyb@gftp.org> |
785 | 198 * src/gtk/transfer.c (transfer_done) - fixed race condition that |
199 would occur when selecting Stop Transfer and then Start Transfer | |
200 (from Matthieu Crapet <mcrapet@gmail.com>) (closes #348140) | |
201 | |
784 | 202 * src/gtk/gftp-gtk.c - renamed OpenURL dialog to Open Location |
203 | |
783 | 204 * src/gtk/misc-gtk.c (update_window_info) - fixed the default protocol |
205 dropdown when some protocols are disabled (from | |
206 Aurelien Jarno <aurelien@aurel32.net>) (closes #348177) | |
207 | |
208 * src/uicommon/gftpui.c (_gftpui_common_thread_callback) - don't use | |
209 pause(). This causes a problem on systems that use NPTL. Use nanosleep() | |
210 instead (from Aurelien Jarno <aurelien@aurel32.net>) (closes #320883) | |
211 | |
781 | 212 2006-7-20 Brian Masney <masneyb@gftp.org> |
213 * configure.in - added configure check for fsplib. Also, removed | |
214 intl/Makefile and po/Makefile.in from AC_OUTPUT() | |
215 | |
769 | 216 2006-7-19 Brian Masney <masneyb@gftp.org> |
780 | 217 * configure.in - updated version number to 2.0.19pre1. I have a long |
218 ways to go though before I can put out a new release of gftp. I want | |
219 to close a lot of the bugs in Bugzilla | |
220 | |
221 * docs/sample.gftp/disconnect.xpm docs/sample.gftp/gftp-mini-logo.png - | |
222 added more pixmaps to CVS | |
223 | |
779 | 224 * lib/misc.c (gftp_copy_request) - updated patch that makes sure the |
783 | 225 request->hostp structure is copied properly (from Aurelien Jarno |
779 | 226 <aurelien@aurel32.net>) (closes #314626) |
227 | |
778 | 228 * src/gtk/transfer.c (check_done_process) - make sure the temporary |
229 files are removed in all cases (from Madhan Raj | |
230 <raj_madan@rediffmail.com>) (closes #171459) | |
231 | |
777 | 232 * lib/misc.c (gftp_copy_request) - fixes when doing an IPv6 transfer or |
233 using ignore PASV address (from (from Aurelien Jarno | |
234 <aurelien@aurel32.net>) (closes #169671) | |
235 | |
776 | 236 * lib/protocols.c (gftp_get_all_subdirs) - make sure that the memory is |
237 properly allocated for the directory. This fixes a crash when stopping a | |
238 file transfer (from Rob Wilkens <robwilkens@optonline.net>) | |
239 (closes #303779) | |
240 | |
775 | 241 * src/gtk/gtkui.c src/text/textui.c src/uicommon/gftpui.c |
242 src/uicommon/gftpui.h - change the cursor to a busy cursor when | |
243 the protocol functions are used (from Scott Reeves <sreeves@novell.com>) | |
244 (closes #305927) | |
245 | |
774 | 246 * src/uicommon/gftpui.c - make sure the directories have the proper |
247 permissions when "preserve file permissions" is enabled | |
248 (from Aurelien Jarno <aurelien@aurel32.net>) (closes #312722) | |
249 | |
773 | 250 * src/gtk/gftp-gtk.c - fixed the default protocol dropdown when some |
251 protocols are disabled (from Aurelien Jarno <aurelien@aurel32.net>) | |
252 (closes #312724) | |
253 | |
772 | 254 * src/gtk/bookmarks.c - fixed segfault in the bookmarks editor (from |
255 Grant Hammond <grant@f1fox.net>) (closes #329261 and #169617) | |
256 | |
771 | 257 * src/gtk/gftp-gtk.c - added patch that makes the menus closer to other |
258 GNOME apps (from Alan Horkan <horkana@maths.tcd.ie>) (closes #329826) | |
259 | |
770 | 260 * src/gtk/transfer.c (remove_file) - fixes for when the viewed file can |
261 be removed if an invalid program is specified (closes #330182) | |
262 | |
769 | 263 * lib/sslcommon.c - added support for wildcard SSL certificates (from |
264 Kai Blaschke <webmaster@thw-theorie.de>) (closes #339663) | |
265 | |
765 | 266 2006-7-13 Brian Masney <masneyb@gftp.org> |
767 | 267 * src/gtk/bookmarks.c src/gtk/delete_dialog.c src/gtk/dnd.c |
268 src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h src/gtk/gtkui.c | |
269 src/gtk/menu-items.c src/gtk/misc-gtk.c src/gtk/options_dialog.c | |
270 src/gtk/transfer.c src/gtk/view_dialog.c - fixed a few minor warnings | |
271 from splint. | |
272 | |
766 | 273 * src/text/textui.c src/uicommon/gftpui.c - fixed a few minor warnings |
274 from splint. | |
275 | |
765 | 276 * lib/cache.c lib/config_file.c lib/fsp.c lib/ftps.c lib/gftp.h |
277 lib/local.c lib/misc.c lib/options.h lib/protocols.c lib/rfc2068.c | |
278 lib/rfc959.c lib/sshv2.c - started to add some annotations for splint. | |
279 Fixed a few minor warnings from splint. | |
280 | |
764 | 281 2006-7-7 Brian Masney <masneyb@gftp.org> |
282 * lib/protocols.c (gftp_get_transfer_status) - split this function into | |
283 several smaller functions. Fixed bug where the number of retries wasn't | |
284 being honored | |
285 | |
760 | 286 2006-6-23 Brian Masney <masneyb@gftp.org> |
287 * lib/fsplib/fsplib.c (fsp_readdir_native) - fixed possible heap | |
288 overflow on operating systems that have MAXNAMLEN > 256 | |
289 (from Joerg Sonnenberger <joerg@netbsd.org>) | |
290 | |
753 | 291 2006-6-22 Brian Masney <masneyb@gftp.org> |
759 | 292 * gftp.spec.in - updated the install path for the desktop file |
293 (closes #171711) | |
294 | |
758 | 295 * src/gtk/gftp-gtk.c (CreateMenus) - updated the shortcut to the |
296 Add Bookmark dialog (closes #301310) | |
297 | |
757 | 298 * lib/rfc959.c (rfc959_syst) - disable the show_hidden_files and |
299 resolve_symlinks options when connecting to a VMS server | |
300 | |
756 | 301 * lib/pty.c (_gftp_ptys_open) - fixes for setting up the slave pty |
302 under HPUX (closes #303066) | |
303 | |
755 | 304 * src/gtk/gtkui.c (gftpui_prompt_username) - don't create the widget as |
305 a password widget (closes #313746) | |
306 | |
754 | 307 * src/gtk/bookmarks.c (new_item_entry) - fixed the title of the new item |
308 dialog (closes #329660) | |
309 | |
753 | 310 * src/gtk/transfer.c - split update_file_status() into another function. |
311 Updated the string that is displayed to the user with information on | |
312 whether or not the file is being downloaded or updated. (closes #163750) | |
313 | |
738 | 314 2006-5-14 Brian Masney <masneyb@gftp.org> |
748 | 315 * lib/rfc959.c (rfc959_syst) - disable the show_hidden_files and |
316 resolve_symlinks options if the remote server is a VMS server. | |
317 (closes #170524) | |
318 | |
747 | 319 * lib/sshv2.c - make sure the 64 bit data is transformed into network |
320 byte order (from Aurelien Jarno <aurelien@aurel32.net>) (closes #168466) | |
321 | |
746 | 322 * lib/sshv2.c (sshv2_get_file) - use SSH_FXF_READ instead of |
323 SSH_FXP_OPEN to open the file. This ensures the file can be downloaded | |
324 even if the user doesn't have write access to the file. | |
325 (from Owen Roberts <owen.roberts@sun.com>) (closes #301106) | |
326 | |
745 | 327 * docs/sample.gftp/bookmarks - added Mandriva bookmarks |
328 (from mpol@gmx.net) (closes #322942) | |
329 | |
744 | 330 * docs/gftp.1 - fixed typo in man page (from Aurelien Jarno |
331 <aurelien@aurel32.net>) (closes #300721) | |
332 | |
333 * docs/website/screenshots.html - updated HTML file | |
334 | |
742 | 335 * src/gtk/bookmarks.c (delete_entry) - fixed typo (closes #312795) |
336 | |
741 | 337 * docs/gftp.desktop - fixes so that desktop-file-validate processes |
338 the file with no errors (from Vincent Fretin <vincent.fretin@gmail.com>) | |
339 (closes #316167) | |
340 | |
740 | 341 * lib/pty.c (_gftp_ptym_open) - fixes for using the grantpt() function |
342 under HP/UX. (from Allyn Fratkin <allyn@fratkin.com>) (closes #301979) | |
343 | |
739 | 344 * lib/fsplib/fsplib.c lib/fsplib/fsplib.h - updated with FSPLIB 0.8 |
345 | |
738 | 346 * lib/fsplib/lock.c lib/pty.c - compile fixes under NetBSD |
347 (from Matthias Scheler tron@zhadum.de>) (closes #168984) | |
348 | |
736 | 349 2006-04-17 Kjartan Maraas <kmaraas@gnome.org> |
350 | |
351 * configure.in: Remove obsolete entry for no_NO. | |
352 * po/no.po: And the translation. | |
353 | |
732 | 354 2006-4-10 Brian Masney <masneyb@gftp.org> |
355 * configure.in - added he to ALL_LINGUAS | |
356 | |
731 | 357 2006-03-31 Žygimantas BeruÄka <zygis@gnome.org> |
358 | |
359 * configure.in: Added lt to ALL_LINGUAS. | |
360 | |
726 | 361 2005-12-06 Kjartan Maraas <kmaraas@gnome.org> |
362 | |
363 * configure.in: Add nb to ALL_LINGUAS. | |
364 | |
712 | 365 2005-07-21 Pawan Chitrakar <pawan@nplinux.org> |
366 | |
367 * configure.in: Added ne in ALL_LINGUAS | |
368 | |
709 | 369 2005-06-09 Ignacio Casal Quinteiro <nacho.resa@gmail.com> |
370 | |
371 * configure.in: Added 'gl' to ALL_LINGUAS. | |
372 | |
707 | 373 2005-4-30 Brian Masney <masneyb@gftp.org> |
374 * docs/website/gftp-screenshot.png - added new screenshot of gFTP for | |
375 the website. It is from Richard Stellingwerff <remenic@gmail.com> and | |
376 the theme is the Clearlooks theme | |
377 | |
704
65f55c815252
Added new Language, Kinyarwanda (rw), to this package
smurphy
parents:
703
diff
changeset
|
378 2005-04-01 Steve Murphy <murf@e-tools.com> |
65f55c815252
Added new Language, Kinyarwanda (rw), to this package
smurphy
parents:
703
diff
changeset
|
379 * configure.in: Added "rw" to ALL_LINGUAS. |
65f55c815252
Added new Language, Kinyarwanda (rw), to this package
smurphy
parents:
703
diff
changeset
|
380 |
703 | 381 2005-3-31 Brian Masney <masneyb@gftp.org> |
382 * src/gtk/transfer.c (check_done_process) - make sure the local file is | |
383 not removed if the editor is set to a non-existent editor | |
384 | |
702 | 385 2005-3-29 Brian Masney <masneyb@gftp.org> |
386 * src/text/gftp-text.c src/gtk/options_dialog.c - compiler fixes for | |
387 GTK+ 1.2 | |
388 | |
694 | 389 2005-2-14 Brian Masney <masneyb@gftp.org> |
390 * Changelog-Old - updated security fix line with the CVE ID | |
391 CAN-2005-0372 | |
392 | |
692 | 393 2005-2-13 Brian Masney <masneyb@gftp.org> |
693 | 394 * lib/fsplib/fsplib.c - include stdint.h if HAVE_STDINT_H is defined |
395 | |
692 | 396 * lib/fsplib/fsplib.c - updated to use fsplib 0.4. Fixes compilation |
397 errors under Solaris/IRIX | |
398 | |
682 | 399 2005-2-4 Brian Masney <masneyb@gftp.org> |
685 | 400 * docs/website/announce.txt - updated announcement with release of |
401 2.0.18 | |
402 | |
684 | 403 * debian/changelog configure.in - updated version number to 2.0.18 |
404 | |
405 * configure.in - commented out AM_TYPE_PTRDIFF_T for now. I don't have | |
406 this automake macro installed on my system | |
407 | |
683 | 408 * ChangeLog-old - updated with changes since 2.0.18rc1 |
409 | |
410 * docs/website/index.html.in - added link to the FSP homepage | |
411 | |
682 | 412 * lib/misc.c (gftp_get_transfer_action) - added the following FIXME |
413 comments: add code to compare the file times and make a decision based | |
414 on that. Also if overwrite_default is enabled and the file sizes/dates | |
415 are the same, then skip the file | |
416 | |
679 | 417 2005-1-25 Brian Masney <masneyb@gftp.org> |
418 * src/gtk/gtkui.c (gftpui_run_function_callback) - after the needed | |
419 information is retrieved from the dialog, destroy the dialog before | |
420 the callback function is called | |
421 | |
675 | 422 2005-1-24 Brian Masney <masneyb@gftp.org> |
678 | 423 * configure.in - added AM_TYPE_PTRDIFF_T |
424 (from Helmut Jarausch <jarausch@igpm.rwth-aachen.de>) | |
425 | |
677 | 426 * lib/protocols.c lib/rfc959.c src/gtk/dnd.c src/gtk/gftp-gtk.c |
427 src/gtk/gtkui.c src/gtk/menu-items.c src/gtk/misc-gtk.c | |
428 src/gtk/transfer.c src/gtk/view-dialog.c src/uicommon/gftpui.c - make | |
429 sure the logging level gftp_logging_error is used for all error messages | |
430 | |
676 | 431 * lib/protocols.c (gftp_parse_url) - rewrote the URL parser so that the |
432 URL is parsed from right to left instead of left to right. There are | |
433 more checks done to the URL. | |
434 | |
675 | 435 * src/text/gftp-text.c (gftp_text_ask_question, gftp_text_write_string) |
436 - convert the string from UTF8 to the users' current locale before it is | |
437 displayed | |
438 | |
439 * src/text/gftp-text.c src/text/gftp-text.h - fixed signed/unsigned | |
440 mismatch when calculating the window size | |
441 | |
442 * src/gtk/transfer.c (update_file_status) - expanded the maximum length | |
443 of the dlstr variable | |
444 | |
672 | 445 2005-1-23 Brian Masney <masneyb@gftp.org> |
446 * po/POTFILES.in - added lib/fsp.c | |
447 | |
666 | 448 2005-1-18 Brian Masney <masneyb@gftp.org> |
667 | 449 * lib/fsplib/fsplib.[ch] - updated files from FSPLIB 0.3 |
450 | |
666 | 451 * lib/protocols.c (gftp_get_next_file) - if the remote server sends a |
452 path with the filename, then strip the path off of the filename. If the | |
453 path didn't match the current directory, then give the user a warning. | |
454 A malicious server could change the path of the downloaded by adding | |
455 /../ to the path | |
456 | |
659 | 457 2005-1-16 Brian Masney <masneyb@gftp.org> |
663 | 458 * configure.in lib/Makefile.am src/gtk/Makefile.am src/text/Makefile.am |
459 lib/fsp.c - added FSP to the build system | |
460 | |
461 * lib/fsp.c - removed unused variables | |
462 | |
463 * autogen.sh - s/gFTP/$PROJECT/ | |
464 | |
662 | 465 * lib/fsplib/COPYING lib/fsplib/Makefile.am lib/fsplib/fsplib.c |
466 lib/fsplib/fsplib.h lib/fsplib/lock.c lib/fsplib/lock.h - added FSPLIB | |
467 This library is written by Radim Kolar <hsn@netmag.cz> and was included | |
468 with his permission | |
469 | |
661 | 470 * lib/fsp.c lib/options.h lib/gftp.h - added support for the FSP |
471 protocol (from Radim Kolar <hsn@netmag.cz>). Note, I need to update | |
472 the build system for gftp to compile properly | |
473 | |
660 | 474 * src/gtk/dnd.c (openurl_get_drag_data) - if the client is busy with |
475 the server, then don't process the drop request (closes #162773) | |
476 (from Aurelien Jarno <aurelien@aurel32.net>) | |
477 | |
659 | 478 * src/gtk/misc-gtk.c (MakeEditDialog, MakeYesNoDialog) - use |
479 g_malloc0() instead of g_malloc() to allocate the structures. This | |
480 ensures that all of the pointers are initialized to NULL (closes | |
481 #162762) | |
482 | |
649 | 483 2004-12-31 Brian Masney <masneyb@gftp.org> |
654 | 484 * lib/sshv2.c (sshv2_read_response) - added debugging messages if |
485 compiled with -DDEBUG. Added sshv2_response_return_code() | |
486 and sshv2_buffer_get_int64(). (sshv2_buffer_get_int32) - added | |
487 check_response argument to this function. This suppresses a | |
488 signed/unsigned mismatch warning from gcc. | |
489 (sshv2_decode_file_attributes) - decode all of the attributes that | |
490 are returned from the server. (sshv2_get_next_file) - don't look at | |
491 the long file name returned from the server. This also fixes a bug | |
492 where no files were being returned to the user when the remote server | |
493 was running the commercial SSH daemon | |
494 | |
653 | 495 * lib/misc.c (gftp_info) - when displaying the OpenSSL information, |
496 display OPENSSL_VERSION_TEXT instead of OPENSSL_VERSION_NUMBER | |
497 | |
498 * src/gtk/transfer.c (update_file_status) - expand the length of the | |
499 total transfered buffer. The total transfered was being truncated in | |
500 some languages by g_snprintf() (from Pavel Vainerman <pv@etersoft.ru>) | |
501 | |
652 | 502 * src/uicommon/gftpui.c (gftpui_common_transfer_files) - check the |
503 return status of gftp_end_transfer() to see if there was an error | |
504 closing the remote file | |
505 | |
651 | 506 * src/uicommon/gftpui.c - added dir and ldir commands to the command |
507 line interface | |
508 | |
650 | 509 * lib/rfc959.c (rfc959_init) - enable the need_username option for this |
510 protocol. This fixes a problem with the text port not prompting for the | |
511 username from the command line | |
512 | |
649 | 513 * lib/gftp.h - when using HPUX, define the size of off_t as size long |
514 | |
515 * configure.in - HPUX thread fixes | |
516 | |
648 | 517 2004-12-24 Brian Masney <masneyb@gftp.org> |
518 * src/gtk/chmod-dialog.c (dochmod) - fixes for the group execute | |
519 permission. If that checkbox was active, then write permissions for | |
520 others was enabled | |
521 | |
646 | 522 2004-12-20 Brian Masney <masneyb@gftp.org> |
647 | 523 * lib/rfc959.c lib/ftpcommon.h - removed the quote filename |
524 functionality in the SITE CHMOD and SITE UTIME commands | |
525 | |
646 | 526 * lib/protocols.c (gftp_parse_bookmark) - if the bookmark's password is |
527 set to @EMAIL@, expand it to the users' email address | |
528 | |
640 | 529 2004-12-12 Brian Masney <masneyb@gftp.org> |
643 | 530 * lib/rfc959.c - renamed pasv_behind_router option to |
531 ignore_pasv_address. This is a better explanation of what it does | |
532 | |
642 | 533 * lib/rfc959.c - added pasv_behind_router option. If this is enabled, |
534 then the IP address that is in the PASV response will be ignored. | |
535 Instead the IP address of the remote host will be used. This is a patch | |
536 from Jasper van Veghel <vanveghel@home.nl> that I made some changes to | |
537 (closes #161037) | |
538 | |
641 | 539 * lib/gftp.h lib/protocols.c (gftp_connect_server) - if getaddrinfo() |
540 is not defined in the system, save the current index of the host that we | |
541 are connected to | |
542 | |
640 | 543 * src/gtk/gftp-gtk.c (toolbar_hostedit) - use gftp_disconnect() instead |
544 of gftpui_disconnect(). The gftpui_disconnect() function will clear out | |
545 the directory in the request structure | |
546 | |
631 | 547 2004-12-2 Brian Masney <masneyb@gftp.org> |
633 | 548 * src/gtk/gtkui.c (gftpui_run_function_callback) |
549 src/uicommon/gftpui.h - added toggled variable to the | |
550 gftpui_callback_data structure. If the edit dialog had a checkbox | |
551 in it, then put the checkbox value in the toggled variable | |
552 | |
553 * src/gtk/gtkui.c (gftpui_site_dialog) | |
554 src/uicommon/gftpuicallbacks.c (gftpui_common_run_site) - allow the user | |
555 to not send the prepend the command with the SITE keyword | |
556 | |
557 * docs/website/index.html.in docs/website/bats.gif | |
558 docs/website/generate-gftp-website.pl - updated bug reporting section. | |
559 Added link and graphic for the National Speleological Society (NSS) | |
560 | |
632 | 561 * lib/sshv2.c (sshv2_rename) - fixed segfault that could occur (from |
562 Aurelien Jarno <aurelien@aurel32.net >) (closes #159963) | |
563 | |
631 | 564 * src/gtk/gtkui_transfer.c (gftpui_ask_transfer) - fixes for the first |
565 character of the filename being stripped off when it already existed on | |
566 the remote side and it was being uploaded to the root directory. Note, | |
567 the file truncation only occured in it being displayed to the user. It | |
568 was not stripping the filename when it was being transfered (from | |
632 | 569 Aurelien Jarno <aurelien@aurel32.net >) (closes #158713) |
631 | 570 |
630
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
571 2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com> |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
572 * src/gtk/options_dialog.c: GNOME HIG fixes for the GTK+2 |
632 | 573 version of the Options and Add/Edit dialogs. (closes #158642) |
630
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
574 |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
575 Changes for the Options dialog: |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
576 * Use proper GNOME HIG widget spacing and padding |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
577 * Use proper GNOME HIG button order for action area |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
578 * Remove dialog separator |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
579 |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
580 FTP tab: |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
581 * Indent the text view below the "Proxy server type" |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
582 entry and wrap it in a scrolled window |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
583 |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
584 Local Hosts tab: |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
585 * Use stock add, edit, and delete buttons |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
586 * Toggle sensitivity of edit and delete buttons |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
587 |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
588 Changes for the Add/Edit Host dialog: |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
589 * Use proper GNOME HIG widget sapcing and padding |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
590 * Use proper GNOME HIG button order for action area |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
591 * Use proper GNOME HIG capitalization |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
592 * Remove dialog separator |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
593 * Add mnemonics to labels |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
594 * Set dialog's window icon |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
595 * Moved host type (i.e. Network or Domain radio |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
596 buttons) to top of dialog, because these toggle |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
597 the sensitivity of the other widgets |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
598 * Indent the Network address, Netmask, and Domain |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
599 entries, because the sensitivity of these widgets |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
600 is toggled by the host type radio buttons |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
601 * Toggle the sensitivity of the labels when |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
602 changing host type |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
603 |
629 | 604 2004-11-28 Brian Masney <masneyb@gftp.org> |
605 * lib/pty.c - if HAVE_GRANTPT is defined, then don't include stropts.h | |
606 if it is being compiled on FreeBSD (from Radim Kolar <hsn@sendmail.cz>) | |
607 | |
622 | 608 2004-11-11 Brian Masney <masneyb@gftp.org> |
624 | 609 * lib/protocols.c (gftp_connect_server) - if the system does not have |
610 getaddrinfo(), removed erronous g_return_val_if_fail() that was always | |
611 causing the function to fail and not connect to the server | |
612 (from samn@sun.com) | |
613 | |
623 | 614 * configure.in - fixes for HP/UX |
615 (from "H.Merijn Brand" <h.m.brand@hccnet.nl>) | |
616 | |
617 * lib/gftp.h - fixes for large files under HP/UX | |
618 (from "H.Merijn Brand" <h.m.brand@hccnet.nl>) | |
619 | |
620 * lib/protocols.c (gftp_list_files) - if ENABLE_NLS is disabled, then | |
621 do not use setlocale() | |
622 | |
622 | 623 * docs/website/index.html.in - fixed several typos on the website. |
624 Updated introduction paragraph | |
625 | |
626 * docs/website/generate-gftp-website.pl - fixes for getting the version | |
627 number from configure with newer versions of autoconf | |
628 | |
629 * docs/website/announce.txt - updated announcement file for 2.0.18rc1 | |
630 | |
620 | 631 2004-11-9 Brian Masney <masneyb@gftp.org> |
621 | 632 * debian/gftp-gtk.install - updated the path of the gftp.desktop file |
633 | |
620 | 634 * configure.in debian/changelog - updated version number to 2.0.18rc1 |
635 | |
636 * TODO - updated | |
637 | |
618 | 638 2004-11-7 Brian Masney <masneyb@gftp.org> |
639 * ChangeLog-old - updated with a summary of list of changes since 2.0.17 | |
640 | |
641 * doc/website/index.html.in - added bug reporting section | |
642 | |
612 | 643 2004-11-4 Brian Masney <masneyb@gftp.org> |
616 | 644 * lib/options.h src/gtk/gftp-gtk.c src/gtk/misc-gtk.c - whenever gftp |
645 is started, show in the toolbar the last connection details (except the | |
646 password) | |
647 | |
615 | 648 * src/gtk/gftp-gtk.c - added mnemonics for the host and user field |
649 in the toolbar | |
650 | |
614 | 651 * docs/sample.gftp/gftprc - updated the default config file |
652 | |
613 | 653 * src/gtk/bookmarks.c (entry_apply_changes) - more cleanups to this |
654 function. Fixes for renaming bookmark entries | |
655 | |
612 | 656 * src/gtk/bookmarks.c (build_bookmarks_tree) - greatly simplified |
657 this function. Added helper function _add_tree_node() | |
658 | |
659 * lib/misc.c (gftp_free_bookmark) - free the path and oldpath | |
660 variables | |
661 | |
609 | 662 2004-11-3 Brian Masney <masneyb@gftp.org> |
611 | 663 * docs/gftp.desktop - fixed parse error in the desktop file |
664 | |
609 | 665 * lib/config_file.c (gftp_bookmarks_destroy) |
666 src/gtk/bookmarks.c (bm_apply_changes) - cleaned up the tree parsing | |
667 code | |
668 | |
669 * lib/gftp.h lib/misc.c lib/config_file.c src/gtk/bookmarks.c - added | |
670 free_node argument to gftp_free_bookmark() | |
671 | |
672 * lib/gftp.h src/gtk/bookmarks.c - added oldpath variable to the | |
673 gftp_bookmarks structure. | |
674 | |
600 | 675 2004-11-1 Brian Masney <masneyb@gftp.org> |
607 | 676 * lib/config_file.c (gftp_write_bookmarks_file) - if a folder has no |
677 children, make sure the entry has a / appended to the end of the | |
678 description. Don't write out any of the other unneeded fields | |
679 | |
606 | 680 * src/gtk/bookmarks.c (build_bookmarks_tree) - fixes for adding toplevel |
681 folders that are empty | |
682 | |
605 | 683 * lib/config_file.c (gftp_add_bookmark) - if the bookmark path ends in |
684 /, then force the entry to be a folder | |
685 | |
604 | 686 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h src/gtk/misc-gtk.c - added a |
687 tooltip to the button on the top left of the GUI | |
688 | |
689 * src/gtk/gtkui.c (gftpui_disconnect) - call update_window_info() | |
690 instead of update_window() so that the toolbar tooltip is updated | |
691 properly | |
692 | |
603 | 693 * src/gtk/bookmarks.c - don't allow the main bookmarks dialog to be |
694 closed if a child entry is being edited. Fixes for a toplevel folder | |
695 that has no children | |
696 | |
602 | 697 * src/gtk/transfer.c (update_file_status) - if the % transferred goes |
698 over 100%, then set the update string to unknown percentage transfered. | |
699 This will occur whenever the reported transfer size is different than | |
700 what is actually being transfered. This occurs whenever a symlink is | |
701 being transfered | |
702 | |
601 | 703 * lib/protocols.c (gftp_parse_ls_novell) - fixes for parsing directory |
704 listings that have a space in their username | |
705 | |
600 | 706 * lib/config_file.c (gftp_read_config_file) - fixes for creating the |
707 protocol dropdown when SSL support is disabled | |
708 (from Aurelien Jarno <aurelien@aurel32.net>) | |
709 | |
598 | 710 2004-10-29 Brian Masney <masneyb@gftp.org> |
599 | 711 * lib/protocols.c (gftp_put_file) - don't do any kind of character |
712 set conversion on the filename. After looking into this some more, | |
713 this wasn't the proper place to do this. | |
714 | |
598 | 715 * lib/gftp.h lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c |
716 lib/sshv2.c src/gtk/dnd.c src/gtk/view_dialog.c src/uicommon/gftpui.c | |
717 src/uicommon/gftpuicallbacks.c - removed free_fdata(). Added | |
718 free_it parameter to gftp_file_destroy() | |
719 | |
597 | 720 2004-10-27 Brian Masney <masneyb@gftp.org> |
721 * docs/website/index.html.in - updated the list of available | |
722 translations | |
723 | |
724 * docs/gftp-faq.sgml - added section about the font size being | |
725 too small | |
726 | |
592 | 727 2004-10-7 Brian Masney <masneyb@gftp.org> |
593 | 728 * src/gtk/bookmarks.c (entry_apply_changes) - convert all /'s |
729 in the entry description to spaces so that sub menus are not | |
730 created | |
731 | |
592 | 732 * src/gtk/gftpuicallbacks.c (gftpui_common_run_ls) - if the .. |
733 directory was not found and an entry is to be created, make sure | |
734 the attributes are set to drwx------ (previously it was d---------) | |
735 | |
586 | 736 2004-10-5 Brian Masney <masneyb@gftp.org> |
588 | 737 * src/gtk/menu-items.c (dosavelog, viewlog) - make sure the entire |
738 log is written out when multibyte characters are used | |
739 | |
740 * src/gtk/view_dialog.c - small improvements to the way text is | |
741 inserted in the gtk+ 2.x port | |
742 | |
587 | 743 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h src/gtk/misc-gtk.c - disable the |
744 upload/download buttons whenever the user is not connected to the | |
745 server (closes #153374) | |
746 | |
586 | 747 * src/gtk/misc-gtk.c src/gtk/gftp-gtk.c - disable the items in the |
748 transfer menu when the user is not connected. (Patch partially from | |
749 Frank Anderson <fanson@gmail.com>) | |
750 | |
582 | 751 2004-10-4 Brian Masney <masneyb@gftp.org> |
752 * lib/protocols.c (gftp_string_from_utf8,gftp_string_to_utf8) - added | |
753 more printf() functions whenever there is a problem converting a string | |
754 | |
755 * src/gtk/gtkui_transfer.c (gftpui_ask_transfer) - make sure the | |
756 filename that is to be displayed to the user is encoded in UTF8 | |
757 | |
579 | 758 2004-10-3 Brian Masney <masneyb@gftp.org> |
759 * lib/protocols.c (gftp_string_to_utf8) - if the current string is | |
760 already in UTF-8, always return NULL, even if the iconv module is | |
761 initialized for this session. If there is an error converting the | |
762 non-UTF8 string to the current locale, then display a message to the | |
763 user | |
764 | |
578 | 765 2004-10-2 Brian Masney <masneyb@gftp.org> |
766 * lib/protocols.c (gftp_parse_bookmark) - convert the local and remote | |
767 directories from UTF8 to the current locale specified in the | |
768 remote_charsets option | |
769 | |
570 | 770 2004-9-29 Brian Masney <masneyb@gftp.org> |
576 | 771 * configure.in - removed intl/Makefile po/Makefile.in from AC_OUTPUT |
772 since automake will add these | |
773 | |
575 | 774 * docs/website/index.html.in - added CVS Id tag to the bottom of the |
775 page | |
776 | |
777 * docs/website/update-gftp-cvs.sh - added script to autobuild a tarball | |
778 from the latest CVS code | |
779 | |
574 | 780 * lib/sshv2.c (sshv2_set_config_options) set the request->need_password |
781 to be the value of the option ssh_need_userpass | |
782 | |
783 * src/text/gftp-text.c (main) - run gftp_shutdown() before the program | |
784 exits | |
785 | |
786 * src/uicommon/gftpui.c (gftpui_common_cmd_set) - toggle | |
787 gftp_configuration_changed whenever the user changes a configuration | |
788 item | |
789 | |
573 | 790 * src/text/gftp-text.c src/uicommon/gftpui.c - make sure that extra |
791 newlines are not displayed to the user when certain commands are run | |
792 from the text console | |
793 | |
572 | 794 * lib/rfc959.c lib/protocols.c lib/gftp.h - when making an IPv6 |
795 FTP connection, make sure the proper addrinfo structure is used. | |
796 Added more error checks to the EPSV parsing | |
797 | |
571 | 798 * lib/sshv2.c - log to the user which directory entries gftp could |
799 not parse | |
800 | |
801 * src/gtk/bookmarks.c - removed unused function clear_bookmarks_tree() | |
802 | |
570 | 803 * src/gtk/bookmarks.c - make sure the items of type GtkItemFactoryEntry |
804 are fully initialized (fixes compiler warnings). Fixed several | |
805 segfaults that could occur in the bookmarks editor | |
806 | |
807 * lib/gftp.h lib/rfc959.c src/gtk/bookmarks.c - added | |
808 GFTP_ANONYMOUS_USER that defines the username to use for anonymous | |
809 FTP connections | |
810 | |
567 | 811 2004-9-27 Brian Masney <masneyb@gftp.org> |
569 | 812 * lib/protocols.c (gftp_put_file) docs/gftp-faq.sgml - use |
813 gftp_string_from_utf8() to encode the filename. This will use the | |
814 remote_charsets option instead of the GLIB environment variable | |
815 | |
568 | 816 * lib/protocols.c (gftp_string_from_utf8) - fixes for encoding the |
817 strings in the users' locale | |
818 | |
567 | 819 * lib/rfc959.c (rfc959_connect) - return GFTP_EFATAL if the initial FTP |
820 response is not 2xx | |
821 | |
822 * docs/gftp-faq.sgml - removed sections that have not been relevant for | |
823 a long time. Added section about changing the encoding of filenames | |
824 | |
566 | 825 2004-9-26 Brian Masney <masneyb@gftp.org> |
826 * lib/protocols.c (gftp_put_file) - use g_filename_from_utf8() to | |
827 change the encoding of the filename (if needed) | |
828 | |
559 | 829 2004-9-22 Brian Masney <masneyb@gftp.org> |
562 | 830 * src/gtk/gftp-gtk.c - removed ellipsis from menu items that do not |
831 require user input. This makes it conform to GNOME HIG. | |
832 (from Subrahmanyam Madduri <smadduri@novell.com>) | |
833 | |
561 | 834 * lib/options.h - fixed misspelling |
835 | |
560 | 836 * lib/options.h src/uicommon/gftpui.c - added option to preserve the |
837 file time. In the past, it would save the file time if saving the file | |
838 permissions was enabled. | |
839 | |
559 | 840 * src/gtk/transfer.c (check_done_process) - if the process returned an |
841 error code, then remove the file and don't prompt the user to upload the | |
842 file if it was changed | |
843 | |
555 | 844 2004-9-17 Brian Masney <masneyb@gftp.org> |
556 | 845 * src/gtk/transfer.c (check_done_process) - make sure the return code |
846 from the process is reported correctly to the user | |
847 | |
848 * docs/gftp-faq.sgml - added section about troubleshooting files not | |
849 being uploaded | |
850 | |
851 * src/gtk/gtkui.c - fixed compiler warning | |
852 | |
555 | 853 * lib/misc.c lib/cache.c lib/config_file.c lib/gftp.h lib/protocols.c |
854 lib/rfc2068.c lib/sshv2.c src/gtk/bookmarks.c src/gtk/dnd.c | |
855 src/gtk/gftp-gtk.c src/gtk/gtkui.c src/gtk/menu-items.c | |
856 src/gtk/misc-gtk.c src/gtk/transfer.c src/uicommon/gftpui.c - added | |
857 gftp_request argument to gftp_build_path() and expand_path(). Renamed | |
858 expand_path() to gftp_expand_path() | |
859 | |
860 * lib/gftp.h - fixed compile error in gftp_need_username macro | |
861 | |
553 | 862 2004-9-14 Brian Masney <masneyb@gftp.org> |
554 | 863 * docs/gftp-faq.sgml - updated SSH section |
864 | |
553 | 865 * lib/gftp.h lib/bookmark.c lib/local.c lib/rfc2068.c lib/rfc959.c |
866 lib/sshv2.c src/gtk/transfer.c src/uicommon/gftpui.c - removed | |
867 need_userpass from the gftp_request structure. Added need_username and | |
868 need_password in it's place | |
869 | |
870 * autogen.sh - updated CFLAGS variable that is passed to configure | |
871 | |
544 | 872 2004-9-6 Brian Masney <masneyb@gftp.org> |
548 | 873 * lib/gftp.h - make sure the _GNU_SOURCE is always defined. |
874 | |
547 | 875 * lib/gftp.h lib/misc.c lib/protocols.c lib/rfc959.c - fixes for |
876 hosts that have IPv6 and IPv4 hostnames and a IPv6 connection cannot | |
877 be made | |
878 | |
879 * lib/rfc2068.c - removed unused variable | |
880 | |
546 | 881 * lib/protocols.c lib/sshv2.c lib/sslcommon.c - cleanups to the |
882 functions that write/read to/from the network. Retry the operation | |
883 if EAGAIN is returned | |
884 | |
885 * lib/ftps.c - return an error if the SSL session cannot be setup | |
886 properly | |
887 | |
545 | 888 * autogen.sh - updated autogen.sh so that it will work with newer |
889 versions of automake/autoconf | |
890 | |
544 | 891 * src/gtk/bookmarks.c - make sure that edit_bookmarks_dialog is |
892 initialized to NULL | |
893 | |
541 | 894 2004-8-21 Brian Masney <masneyb@gftp.org> |
542 | 895 * lib/gftp.h lib/options.h lib/protocols.c - added |
896 gftp_protocol_default_port() that will return the default port for | |
897 the current protocol | |
898 | |
899 * src/gtk/misc-gtk.c (update_window_info) - when updating the toolbar | |
900 with the connection status, if the current connection is using the | |
901 default port for it's protocol, then leave the port field blank. This | |
902 should help users who want to reconnect to the current site using a | |
903 different protocol | |
904 | |
905 * src/gtk/gftp-gtk.c (CreateConnectToolbar) - expanded the size of | |
906 the Port input box | |
907 | |
541 | 908 * lib/rfc959.c lib/ftpcommon.h - added internal option to quote |
909 the filename in the SITE command. This is only enabled for servers | |
910 that return UNIX in the SYST output. It is disabled if it is a BSD | |
911 based FTP server | |
912 | |
913 * lib/sshv2.c (sshv2_start_login_sequence) - pass the search strings | |
914 through gettext so that logins will work properly for non-english | |
915 users | |
916 | |
917 * lib/pty.c (gftp_exec) - redirect STDERR of the child process to the | |
918 opened pty so that stderr is shown properly in the log window | |
919 | |
531 | 920 2004-8-17 Brian Masney <masneyb@gftp.org> |
538 | 921 * lib/sshv2.c - renamed read_buffer in sshv2_params to |
922 transfer_buffer. In sshv2_put_next_file_chunk(), dynamically allocate | |
923 memory for transfer_buffer instead of using a fixed buffer on the | |
924 stack. This allows for large transfer buffer sizes. | |
925 | |
537 | 926 * lib/sshv2.c - added sshv2_open_file(). sshv2_get_file() and |
927 sshv2_put_file() now use this function | |
928 | |
536 | 929 * src/gtk/gftp-gtk.c - removed local shortcuts for Disconnect |
930 and Open URL. These conflicted with other items | |
931 | |
535 | 932 * lib/misc.c - when sorting by file, user or group, do a case |
933 insensitive sort | |
934 | |
534 | 935 * docs/gftp.desktop docs/Makefile.am - updated desktop file. Install |
936 the desktop file in $datadir/applications (from <m777@canada.com>) | |
937 | |
533 | 938 * lib/rfc959.c (rfc959_set_file_time, rfc959_chmod) - enclose the |
939 filename in "quotes" | |
940 | |
532 | 941 * lib/gftp.h lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c - |
942 added #defines for encoding and decoding file sizes that will work | |
943 properly for large files (GFTP_OFF_T_HEX_PRINTF_MOD, | |
944 GFTP_OFF_T_INTL_PRINTF_MOD, GFTP_OFF_T_PRINTF_MOD, | |
945 GFTP_OFF_T_11PRINTF_MOD and gftp_parse_file_size). Fixed file size | |
946 not being displayed properly when the system does not support the ' | |
947 printf formatter | |
948 | |
949 * acinclude.m4 (AC_INTL_PRINTF) - check to see if _LARGEFILE_SOURCE | |
950 is defined. If so, use %'lld instead of %'ld | |
951 | |
531 | 952 * lib/rfc959.c lib/sshv2.c - removed unneeded code in the *_chmod() |
953 functions | |
954 | |
526 | 955 2004-8-9 Brian Masney <masneyb@gftp.org> |
529 | 956 * lib/sshv2.c - fixes so that file permissions are preserved properly |
957 on file upload. Fixes so that the Utime and Chmod commands are shown | |
958 in the log window | |
959 | |
528 | 960 * lib/sshv2.c (sshv2_setup_file_offset) - added buf argument to this |
961 function so that uploading files will work again | |
962 | |
527 | 963 * lib/options.h src/uicommon/gftpui.c - added ability to change the |
964 block size on the fly of the transfered files. | |
965 | |
526 | 966 * lib/config_file.c lib/options.h lib/rfc959.c - fixed warnings about |
967 unitialized members in the structure | |
968 | |
969 * lib/pty.c (gftp_exec) - setup stderr when running the program | |
970 | |
971 * lib/sshv2.c src/uicommon/gftpui.h - fixed signed/unsigned integer | |
972 comparisions | |
973 | |
974 * lib/sshv2.c - added sshv2_copy_param_options() | |
975 | |
976 * src/gtk/options_dialog.c - compile fix when compiling against GTK+ | |
977 1.2 | |
978 | |
525 | 979 2004-8-1 Brian Masney <masneyb@gftp.org> |
980 * lib/sshv2.c - treat all integers from the remote server as | |
981 unsigned | |
982 | |
983 * src/gtk/delete_dialog.c - fixed memory leak | |
984 | |
985 * src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/dnd.c | |
986 src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h src/gtk/gtkui.c | |
987 src/gtk/menu-items.c src/gtk/transfer.c - added | |
988 gftp_gtk_get_list_selection() macro | |
989 | |
517 | 990 2004-7-27 Brian Masney <masneyb@gftp.org> |
521 | 991 * lib/rfc959.c src/gtk/misc-gtk.c src/gtk/view_dialog.c - fixed more |
992 comparsions between signed and unsigned integers | |
993 | |
994 * lib/sshv2.c (sshv2_buffer_get_int32) - allow an expected response | |
995 value of 0. If it does not match, call sshv2_wrong_response(). | |
996 SSH_FX_OK is set to 0, so this value was not being checked | |
997 | |
998 * src/gtk/gtkui.c src/text/textui.c src/uicommon/gftpui.h - renamed the | |
999 clear_cache argument of gftpui_refresh() to clear_cache_entry. There is | |
1000 already a function named clear_cache() | |
1001 | |
520 | 1002 * lib/gftp.h lib/local.c lib/protocols.c lib/sshv2.c - changed |
1003 declaration of gftp_stat_filename() so that the mode of the filename | |
1004 is returned as a parameter instead of the function return value. | |
1005 The mode_t type is unsigned and the error codes could not be reported | |
1006 properly | |
1007 | |
519 | 1008 * lib/sshv2.c - fixed SSHV2 transfers so that they work again |
1009 (they were busted in the last CVS commit due to the wrong file | |
1010 offset being sent over) | |
1011 | |
1012 * src/gtk/misc-gtk.c - fix for the log window so that the contents | |
1013 are properly shown. (this was busted in the last CVS commit) | |
1014 | |
518 | 1015 * lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/sshv2.c |
1016 src/gtk/bookmarks.c src/gtk/dnd.c src/gtk/gftp-gtk.c src/gtk/gtui.c | |
1017 src/gtk/menu-items.c src/misc-gtk.c src/gtk/options_dialog.c | |
1018 src/gtk/transfer.c src/text/gftp-text.c src/uicommon/gftpui.c - | |
1019 various fixes found through a static code analysis. (some | |
1020 signed/unsigned fixes, removed unneeded casts, indentation fixes, | |
1021 added static declaration to some functions) | |
1022 | |
517 | 1023 * lib/rfc2068.c lib/sshv2.c src/gtk/bookmarks.c src/gtk/chmod_dialog.c |
1024 src/gtk/gtkui.c src/gtk/transfer.c src/uicommon/gftpui.c - removed | |
1025 unused variables | |
1026 | |
1027 * src/gtk/misc-gtk.c (progress_timeout) - fixed implicit integer to | |
1028 float conversion | |
1029 | |
515 | 1030 2004-7-26 Brian Masney <masneyb@gftp.org> |
516 | 1031 * lib/config_file.c lib/local.c lib/ftps.c lib/gftp.h lib/httpcommon.h |
1032 lib/https.c lib/misc.c lib/protocols.c lib/pty.c lib/rfc2068.c | |
1033 lib/rfc959.c lib/sshv2.c - various fixes found through a static code | |
1034 analysis checker. (some signed/unsigned fixes, removed unneeded casts, | |
1035 removed unneeded variables, more consistency, largefile fixes). Thanks | |
1036 to Derek M Jones for running the static code analysis for me | |
1037 | |
1038 * lib/cache.c - s/remove/del_entry/g | |
1039 | |
1040 * lib/bookmark.c lib/protocols.c (gftp_parse_bookmark) - allow | |
1041 the third parameter of this function to be a NULL pointer | |
1042 | |
515 | 1043 * lib/pty.c - give the grantpt pty implementation more priority over |
1044 using openpty() | |
1045 | |
511 | 1046 2004-7-25 Brian Masney <masneyb@gftp.org> |
514 | 1047 * src/gtk/bookmarks.c src/gtk/gftp-gtk.c src/gtk/gtkui.c |
1048 src/gtk/transfer.c src/text/textui.c src/uicommon/gftpui.c | |
1049 src/uicommon/gftpui.h - added clear_cache argument to gftpui_refresh() | |
1050 Don't clear the cache when changing directories | |
1051 | |
1052 * src/uicommon/gftpuicallbacks.c (_gftpui_common_rm_list) - return | |
1053 0 on success | |
1054 | |
1055 * src/gtk/delete_dialog.c - refresh the directory listing after the | |
1056 operation was successful | |
1057 | |
513 | 1058 * lib/rfc959.c - added rfc959_set_file_time(). This uses the SITE UTIME |
1059 command. Not many FTP servers appear to support this extension | |
1060 | |
512 | 1061 * lib/protocols.c (gftp_get_transfer_status) - don't force the user to |
1062 wait to reconnect if the connection to the server timed out | |
1063 | |
511 | 1064 * src/gtk/transfer.c - when spawning a thread to get the |
1065 subdirectories, don't refresh the local directory listing. Also added | |
1066 custom connect/disconnect functions so that timeouts can be handled | |
1067 properly. | |
1068 | |
1069 * src/gtk/delete_dialog.c - make sure that 2 connections to the server | |
1070 don't get established | |
1071 | |
1072 * src/uicommon/gftpui.c src/uicommon/gftpui.h - added dont_refresh | |
1073 variable to gftpui_callback_data structure. If this is true, then it | |
1074 will not run gftpui_refresh() after the thread terminates | |
1075 | |
509 | 1076 2004-7-24 Brian Masney <masneyb@gftp.org> |
510 | 1077 * src/uicommon/gftpui.c src/uicommon/gftpui.h - added support for |
1078 a custom connect and disconnect function in the thread callback | |
1079 | |
1080 * lib/local.c (local_connect) - don't step on request->directory if | |
1081 it is already set to the current working directory | |
1082 | |
509 | 1083 * lib/protocols.c (gftp_get_all_subdirs) - if there is an error in the |
1084 protocol function, make sure the error code is returned as is. This is | |
1085 so that timeouts can be detected properly | |
1086 | |
505 | 1087 2004-7-19 Brian Masney <masneyb@gftp.org> |
508 | 1088 * src/gtk/transfer.c src/uicommon/gftpui.h - use the new thread callback |
1089 functions for retrieving the list of subdirectories | |
1090 | |
507 | 1091 * src/gtk/delete_dialog.c src/uicommon/gftpuicallbacks.c - use the |
1092 new thread callback functions for deleting items from the GTK+ GUI | |
1093 | |
506 | 1094 * src/gtk/delete_dialog.c src/gtk/transfer.c src/gtk/gftp-gtk.h - |
1095 added gftp_gtk_get_subdirs() to get the list of subdirectories in a | |
1096 child thread | |
1097 | |
505 | 1098 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h - renamed some functions so that |
1099 they are clearer on what they do. Did some small code cleanups | |
1100 | |
503 | 1101 2004-7-18 Brian Masney <masneyb@gftp.org> |
504 | 1102 * lib/local.c lib/protocols.c lib/rfc959.c src/uicommon/gftpui.c - fixes |
1103 for the *_chmod() functions to use the datatype mode_t for storing | |
1104 the file attributes | |
1105 | |
503 | 1106 * acinclude.m4 - quote the definition of the automake functions. This |
1107 fixes warnings from automake 1.8 | |
1108 | |
502 | 1109 * acinclude.m4 - removed AC_SYS_LARGEFILE. This is provided by newer |
1110 versions of automake | |
1111 | |
1112 * configure.in - added pa to ALL_LINGUAS. Updated version to 2.0.18pre1 | |
1113 | |
499 | 1114 2004-7-13 Brian Masney <masneyb@gftp.org> |
500 | 1115 * lib/gftp.h lib/local.c lib/protocols.c lib/rfc2068.c lib/rfc959.c |
1116 lib/sshv2.c - added gftp_stat_filename(). This will retrieve the | |
1117 attributes for the selected file. When downloading a list of items, | |
1118 if one of the items is a symlink, check to see if it points to a | |
1119 directory or file | |
1120 | |
1121 * src/gtk/misc-gtk.c - fix for displaying the folder icon for | |
1122 directories | |
1123 | |
499 | 1124 * lib/gftp.h lib/local.c lib/misc.c lib/protocols.c lib/rfc2068.c |
1125 lib/rfc959.c lib/sshv2.c src/gtk/chmod_dialog.c src/gtk/delete_dialog.c | |
1126 src/gtk/dnd.c src/gtk/gftp-gtk.c src/gtk/gtkui_transfer.c | |
1127 src/gtk/menu-items.c src/gtk/misc-gtk.c src/gtk/view_dialog.c | |
1128 src/text/textui.c src/uicommon/gftpui.c src/uicommon/gftpuicallbacks.c - | |
1129 represent the file attributes as a mode_t variable instead of a | |
1130 character string | |
1131 | |
497 | 1132 2004-7-12 Brian Masney <masneyb@gftp.org> |
498 | 1133 * lib/sshv2.c - added sshv2_decode_file_attributes(). This is used |
1134 by sshv2_get_next_file() and sshv2_get_file_size(). | |
1135 (sshv2_get_next_file_chunk) - if the error SSH_FX_FAILURE was returned, | |
1136 then do not return wrong message received from server to the user | |
1137 | |
1138 * lib/protocols.c (gftp_get_transfer_status) - when there is a | |
1139 transfer error, make sure that an incoming signal does not | |
1140 interrupt the timeout | |
1141 | |
1142 * src/gtk/gftp-gtk.c src/uicommon/gftpui.c - make sure the SIGCHLD | |
1143 signal handler reaps the zombies in the text port. | |
1144 | |
497 | 1145 * docs/rfcs/* - added RFCs that are used by this program |
1146 | |
496 | 1147 2004-7-11 Brian Masney <masneyb@gftp.org> |
1148 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h src/gtk/gtkui.c | |
1149 src/gtk/transfer.c - removed use_cache argument to ftp_list_files() | |
1150 This was not being used | |
1151 | |
1152 * src/gtk/gftp-gtk.c - compile fix when compiling against GTK 1.2 | |
1153 | |
493 | 1154 2004-7-6 Brian Masney <masneyb@gftp.org> |
1155 * lib/sshv2.c - added sshv2_wrong_message(). Changed the wrong message | |
1156 log messages to call this function instead | |
1157 | |
489 | 1158 2004-6-27 Brian Masney <masneyb@gftp.org> |
1159 * lib/sshv2.c - did more code cleanups | |
1160 | |
487 | 1161 2004-6-22 Brian Masney <masneyb@gftp.org> |
1162 * lib/sshv2.c - did more code cleanups | |
1163 | |
484 | 1164 2004-6-15 Brian Masney <masneyb@gftp.org> |
485 | 1165 * lib/protocols.c - added supported for multiline VMS directory |
1166 listings. Also, parse the date correctly for single line VMS | |
1167 directory listings | |
1168 | |
1169 * lib/gftp.h lib/local.c lib/rfc2068.c lib/rfc959.c lib/sshv.c - | |
1170 added function pointer get_next_dirlist_line to gftp_request structure. | |
1171 This will retrieve the next line of input for the directory listing. | |
1172 This is only implemented in the FTP protocol at the moment. It shouldn't | |
1173 be needed in the other protocols | |
1174 | |
484 | 1175 * lib/gftp.h lib/sshv2.c src/gtk/gtkui.c src/text/textui.c - added |
1176 support for RSA SecurID passwords | |
1177 | |
1178 * lib/sshv2.c - cleaned up the SSH login sequence even more. Removed | |
1179 ssh2_sftp_path and sshv2_use_sftp_subsys options. The sftp subsystem | |
1180 is now always used. | |
1181 | |
483 | 1182 2004-6-13 Brian Masney <masneyb@gftp.org> |
1183 * lib/gftp.h lib/misc.c src/gtk/Makefile.am src/gtk/menu-items.c | |
1184 src/gtk/misc-gtk.c src/text/Makefile.am src/uicommon/Makefile.am | |
1185 src/uicommon/gftpui.c - added support to override the value of | |
1186 SHARE_DIR during runtime with the GFTP_SHARE_DIR environment | |
1187 variable | |
1188 | |
478 | 1189 2004-6-6 Brian Masney <masneyb@gftp.org> |
480 | 1190 * lib/protocols.c (gftp_set_username) - allow a NULL username |
1191 | |
1192 * configure.in - if gftp is being compiled on HPUX, check for sem_init | |
1193 in librt | |
1194 | |
479 | 1195 * lib/protocols.c (parse_time) - if there is an error parsing the |
1196 time format, don't return a fatal error | |
1197 | |
478 | 1198 * acinclude.m4 configure.in - added AC_TYPE_INTPTR_T that will define |
1199 intptr_t if it does not exist on the system | |
1200 | |
1201 * lib/gftp.h lib/protocols.c lib/rfc959.c | |
1202 src/uicommon/gftpuicallbacks.c - added specify site argument to | |
1203 rfc959_site(). If this is set, then SITE will be prepended to the | |
1204 command | |
1205 | |
472 | 1206 2004-5-26 Brian Masney <masneyb@gftp.org> |
474 | 1207 * docs/gftp.desktop - make desktop item follow HIG (closes #142005) |
1208 | |
473 | 1209 * lib/protocols.c lib/options.h - added remote_lc_time option. The |
1210 value of LC_TIME can now be overridden on a per site basis. This will | |
1211 fix problems parsing the dates in the remote directory listings | |
1212 | |
472 | 1213 * src/gtk/dnd.c - when a URL is dropped on the connect button, log the |
1214 URL that is received | |
1215 | |
1216 * src/gtk/gftp-gtk.c src/gtk/options_dialog.c - more 64 bit cleanups | |
1217 | |
469 | 1218 2004-5-16 Brian Masney <masneyb@gftp.org> |
470 | 1219 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h src/gtk/transfer.c - fixed |
1220 detection of SIGCHLD when viewing/editing a file (from | |
1221 Aurelien Jarno <aurelien@aurel32.net>) | |
1222 | |
1223 * src/gtk/gtkui.c - expand the path on the client side when changing | |
1224 the remote directory (i.e. CHDIR /home/.. becomes /home) | |
1225 (from Aurelien Jarno <aurelien@aurel32.net>) | |
1226 | |
469 | 1227 * src/uicommon/gftpui.c lib/gftp.h - added |
1228 gftpui_protocol_update_timeout() | |
1229 | |
1230 * lib/protocols.c - 64 bit fixes. Check to see if the remote site | |
1231 disconnected | |
1232 | |
463 | 1233 2004-4-14 Brian Masney <masneyb@gftp.org> |
1234 * lib/protocols.c lib/rfc959.c src/gtk/transfer.c - AMD64 fixes | |
1235 | |
460 | 1236 2004-4-14 Brian Masney <masneyb@gftp.org> |
1237 * lib/sshv2.c lib/gftp.h src/text/textui.c src/gtk/gtkui.c - when | |
1238 connecting with the SSH protocol, if the user is asked a question, | |
1239 relay that question back to the user and allow them to answer it. | |
1240 | |
1241 * doc/gftp-faq.sgml - moved the SSH troubleshooting section to the | |
1242 issues for older releases section. All of the issues that this talks | |
1243 about have been fixed in CVS. | |
1244 | |
1245 * src/gtk/gftp-gtk.c (main) - call gdk_threads_init() on startup | |
1246 | |
1247 * lib/cache.c lib/config_file.c lib/misc.c lib/protocols.c | |
1248 lib/rfc2068.c lib/rfc959.c - removed some uses of strlen() so that | |
1249 they only occur once on a string instead of multiple times in some | |
1250 cases | |
1251 | |
1252 * lib/sslcommon.c - fixed typo | |
1253 | |
1254 * configure.in lib/gftp.h - added configure check for inttypes.h | |
1255 | |
1256 * docs/gftp.lsm - updated with 2.0.17 information | |
1257 | |
459 | 1258 2004-04-10 Adam Weinberger <adamw@gnome.rog> |
1259 | |
1260 * en_CA.po: Added en_CA to ALL_LINGUAS. | |
1261 | |
458 | 1262 2004-4-10 Brian Masney <masneyb@gftp.org> |
1263 * lib/gftp.h lib/pty.c lib/sshv2.c - added gftp_exec() that will always | |
1264 open a pseudo terminal and a separate socket pair for the stdin/stdout | |
1265 file descriptors. The banner and password request will come through the | |
1266 pseudo terminal while the sftp protocol specific data will always come | |
1267 through the socket pair. This allows for a much cleaner SSH login | |
1268 sequence that does not require echo xsftp to capture a login banner. | |
1269 Removed option ssh_use_askpass since it is no longer needed. | |
1270 This code is based off of a suggestion from Gertjan Halkes | |
1271 | |
1272 * src/text/gftp-text.c - removed setting the options ssh_use_askpass | |
1273 and sshv2_use_sftp_subsys | |
1274 | |
455 | 1275 2004-03-30 Gareth Owen <gowen72@yahoo,com> |
1276 | |
1277 * configure.in: Added en_GB to ALL_LINGUAS | |
1278 | |
452 | 1279 2004-3-28 Brian Masney <masneyb@gftp.org> |
453 | 1280 * debian/changelog configure.in ChangeLog-old - incremented version |
1281 number to 2.0.17 | |
1282 | |
1283 * docs/website/announce.txt - updated announcement to reflect 2.0.17 | |
1284 release | |
1285 | |
452 | 1286 * src/gtk/bookmarks.c - only allow one instance of the bookmarks editor |
1287 | |
451 | 1288 2004-3-26 Brian Masney <masneyb@gftp.org> |
1289 * lib/ftps.c lib/gftp.h lib/rfc959.c - when reestablishing a connection | |
1290 to a FTPS host, make sure the initial commands are sent over in | |
1291 plaintext | |
1292 | |
1293 * lib/protocols.c - make sure the port is displayed to the user in the | |
1294 proper byte order when getaddrinfo() is not included on the system | |
1295 | |
1296 * lib/misc.c (gftp_copy_request) - make sure req->init is not NULL | |
1297 before attempting to initialize the new request structure. This fixes | |
1298 a segfault that happened when viewing/editing a local file | |
1299 (from Chelban Vasile <mail4509@pochtamt.ru>) | |
1300 | |
1301 * docs/website/generate-gftp-website.pl - updated the STABLE_I386DEB | |
1302 filename | |
1303 | |
1304 * docs/website/index.html.in - updated the main website | |
1305 | |
1306 * docs/website/announce.txt - announcement for the 2.0.17 release | |
1307 | |
443 | 1308 2004-3-21 Brian Masney <masneyb@gftp.org> |
449 | 1309 * lib/ftps.c (ftps_auth_tls_start) - if the server rejects the |
1310 PROT C command, disconnect from the server | |
1311 | |
447 | 1312 * src/gtk/gftp-gtk.c - initialize the read/write color functions before |
1313 gftp is initialized | |
1314 | |
445 | 1315 * src/gtk/menu-items.c (chdir_edit) - ignore the number of items that |
1316 are selected in the listbox | |
1317 | |
444 | 1318 * src/gtk/view_dialog.c src/gtk/menu-items.c - cleanups to the view |
1319 log code | |
1320 | |
443 | 1321 * src/uicommon/gftpuicallbacks.c (gftpui_common_run_ls) - if there |
1322 is an error, make sure that the exact error code is returned | |
1323 | |
1324 * lib/protocols.c (gftp_transfer_files) - if the connection timed | |
1325 out, reconnect immediately | |
1326 | |
1327 * lib/rfc959.c - if the connection timed out to the server, make | |
1328 sure GFTP_ETIMEDOUT is returned | |
1329 | |
441 | 1330 2004-3-20 Brian Masney <masneyb@gftp.org> |
442 | 1331 * lib/gftp.h src/uicommon/gftpui.c lib/rfc959.c - if the connection |
1332 timed out to the server, return GFTP_ETIMEDOUT. In the UI, if this | |
1333 error code is returned, immediately reconnect to the server and retry | |
1334 the operation | |
1335 | |
1336 * lib/rfc959.c - if the return value from rfc959_send_command() is | |
1337 < 0, then make sure the exact value is returned instead of | |
1338 GFTP_ERETRYABLE | |
1339 | |
441 | 1340 * src/gtk/chmod_dialog.c - use gftpui_common_run_callback_function() |
1341 to do the chmod operation. This will spawn a thread if necessary | |
1342 | |
440 | 1343 * debian/gftp-text.prerm - missing debian package file |
1344 | |
1345 * Makefile.am - updated with EXTRA_DIST variable with the list of the | |
1346 Debian package files | |
1347 | |
439 | 1348 * debian/* - updated Debian package files from |
1349 Aurelien Jarno <aurelien@aurel32.net> | |
1350 | |
441 | 1351 2004-3-19 Brian Masney <masneyb@gftp.org> |
437 | 1352 * lib/gftp.h - if _LARGEFILE_SOURCE is defined, but _LARGEFILE64_SOURCE |
1353 is not defined, define it | |
1354 | |
434 | 1355 2004-3-18 Brian Masney <masneyb@gftp.org> |
435 | 1356 * lib/gftp.h configure.in - #define _LARGEFILE_SOURCE if sizeof(off_t) |
1357 is greater than 4 and _LARGEFILE_SOURCE is not defined. | |
1358 _LARGEFILE_SOURCE does not get defined under *BSD | |
1359 | |
434 | 1360 * lib/local.c (local_{get,put}_file) - compiling fix for FreeBSD. |
1361 _LARGEFILE_SOURCE is defined, but O_LARGEFILE is not defined | |
1362 | |
427 | 1363 2004-3-17 Brian Masney <masneyb@gftp.org> |
433 | 1364 * lib/options.h src/gtk/transfer.c - added start file transfers option |
1365 | |
432 | 1366 * lib/ftpcommon.h lib/ftps.c - removed encrypted_connection variable |
1367 from the rfc959_parms structure | |
1368 | |
1369 * lib/rfc959.c (rfc959_copy_param_options) - fix for FTPS protocol | |
1370 so that the proper read/write function is setup whenever the request | |
1371 structure is copied | |
1372 | |
431 | 1373 * lib/sslcommon.c - fix so that the option verify_ssl_peer can be |
1374 toggled while gftp is running and on a per connection basis | |
1375 | |
430 | 1376 * docs/gftp-faq.sgml - added SSL Issues section |
1377 | |
1378 * docs/sample.gftp/gftprc - updated config file that has all | |
1379 of the new options added since 2.0.16 | |
1380 | |
1381 * lib/options.h - disable show_trans_in_title by default | |
1382 | |
429 | 1383 * lib/config_file.c lib/gftp.h lib/misc.c lib/protocols.c |
1384 src/gtk/bookmarks.c (gftp_copy_local_options) - in the new | |
1385 options that are copied, update the the number of options that are | |
1386 stored. | |
1387 | |
427 | 1388 * lib/rfc2068.c (parse_html_line) - fix for parsing file sizes |
1389 | |
1390 * ChangeLog-old - updated with summary of changes since 2.0.16 | |
1391 | |
1392 * docs/website/index.html.in - updated the list of translations | |
1393 available | |
1394 | |
425 | 1395 2004-3-16 Brian Masney <masneyb@gftp.org> |
426 | 1396 * lib/ftpcommon.h lib/gftp.h lib/rfc959.c src/uicommon/gftpui.c - |
1397 fixes so that FXP transfers work again | |
1398 | |
425 | 1399 * src/gtk/misc-gtk.c src/gtk/gftp-gtk.h - added destroy_dialog() |
1400 function | |
1401 | |
1402 * src/gtk/gftp-gtk.c - destroy the openurl dialog before attempting to | |
1403 connect to the server | |
1404 | |
423 | 1405 2004-3-15 Brian Masney <masneyb@gftp.org> |
424 | 1406 * src/gtk/misc-gtk.c (update_directory_download_progress) - center the |
1407 progress dialog (closes #136370) | |
1408 | |
423 | 1409 * lib/gftp.h - if _FILE_OFFSET_BITS is > 32 and _LARGEFILE_SOURCE is |
1410 not defined, define it | |
1411 | |
425 | 1412 * lib/protocols.c (gftp_string_{to|from}_utf8 - don't alter the contents |
1413 of the remote_charsets option. Instead, make a copy of that and alter | |
423 | 1414 that copy |
1415 | |
422 | 1416 2004-3-14 Brian Masney <masneyb@gftp.org> |
1417 * lib/misc.c (expand_path) - skip over paths that are empty | |
1418 | |
1419 * lib/misc.c (gftp_sort_filelist) - fixed NULL pointer dereference | |
1420 that would occur when attempting to sort an empty filelist | |
1421 (from Hans-J?rgen Sch?ler <hjschaeler@t-online.de>) | |
1422 | |
1423 * src/uicommon/gftpui.c (_gftpui_common_thread_callback) - fix so that | |
1424 retries would occur properly after a timeout | |
1425 (from Nam SungHyun <namsh@kldp.org>) | |
1426 | |
1427 * src/gtk/Makefile.am - removed unneeded localedir defination | |
1428 (from Nam SungHyun <namsh@kldp.org>) | |
1429 | |
1430 * lib/gftp.h lib/protocols.c src/gtk/gftp-gtk.c src/text/gftp-text.c - | |
1431 added gftp_setup_startup_directory(). This function will expand the | |
1432 startup directory so that ~ directories will work properly | |
1433 | |
1434 * lib/rfc959.c - removed invalid response error message if the user | |
1435 enters an invalid password | |
1436 | |
1437 * src/gtk/bookmarks.c - only allow one bookmark entry to be edited at a | |
1438 time. This is a design flaw in my code and I'll remove this restriction | |
1439 until I have time to recode this. Also, fixed segfault that would occur | |
1440 when renaming a bookmark | |
1441 | |
1442 * src/gtk/view_dialog.c - when editing a file, make sure the file has | |
1443 the right suffix so that syntax highlighting works | |
1444 | |
415 | 1445 2004-3-1 Brian Masney <masneyb@gftp.org> |
416 | 1446 * lib/sslcommon.c - added verify_ssl_peer option |
1447 | |
415 | 1448 * lib/ftps.c - set the protocol number to GFTP_FTPS_NUM |
1449 | |
1450 * lib/https.c - set the protocol number to GFTP_HTTPS_NUM | |
1451 | |
1452 * lib/rfc959.c lib/rfc2068.c - remove references to checking for | |
1453 GFTP_FTP_NUM and GFTP_HTTP_NUM | |
1454 | |
411 | 1455 2004-2-29 Brian Masney <masneyb@gftp.org> |
1456 * lib/rfc959.c - in several instances, if an invalid response is | |
1457 received from the server, make sure an error message is logged to the | |
1458 user before they are disconnected from the site | |
1459 | |
408 | 1460 2004-02-21 Paisa Seeluangsawat <paisa@users.sf.net> |
1461 | |
1462 * configure.in: Added Thai (th) to ALL_LINGUAS. | |
1463 | |
402 | 1464 2004-2-16 Brian Masney <masneyb@gftp.org> |
404 | 1465 * configure.in - added ta.po to ALL_LINGUIS |
1466 | |
402 | 1467 * src/gtk/view_dialog.c - call mkstemps() to create the temporary |
1468 file. This is so that the extension of the file will be preserved | |
1469 so that syntax highlighting will still work (from | |
1470 Aurelien Jarno <aurelien@aurel32.net>) | |
1471 | |
1472 * lib/Makefile.am lib/gftp.h lib/mkstemps.c po/POTFILES.in - | |
1473 added mksteps() from the GNU C Library (from | |
1474 Aurelien Jarno <aurelien@aurel32.net>) | |
1475 | |
401 | 1476 2004-2-16 Brian Masney <masneyb@gftp.org> |
1477 * src/gtk/misc-gtk.c - compile fix for GTK+ 1.2 | |
1478 | |
1479 * po/POTFILES.in - added ftps.c and ftpcommon.h and httpcommon.h | |
1480 | |
399 | 1481 2004-2-15 Brian Masney <masneyb@gftp.org> |
400 | 1482 * debian/changelog debian/copyright debian/gftp-text.postinst |
1483 debian/gftp-text.prerm - updated Debian packaging files from | |
1484 Aurelien Jarno <aurelien@aurel32.net> | |
1485 | |
399 | 1486 * lib/sshv2.c (sshv2_put_file) - fix for resuming SSHv2 uploads |
1487 | |
1488 * src/text/gftp-text.c - fixed compiler error when being compiled | |
1489 without gettext | |
1490 | |
1491 2004-2-8 Brian Masney <masneyb@gftp.org> | |
1492 * src/gtk/gftp-gtk.h src/gtk/gtkui.c - added | |
1493 gftpui_gtk_get_utf8_file_pos() that will return the file in UTF8 | |
1494 format if it is available | |
1495 | |
1496 * src/gtk/gtkui_transfer.c src/gtk/transfer.c - call | |
1497 gftpui_gtk_get_utf8_file_pos() to display the file in the file transfer | |
1498 status. This fixes a bug where non-UTF8 files were being chopped off | |
1499 | |
1500 * src/text/textui.c src/uicommon/gftpui.c src/uicommon/gftpui.h | |
1501 src/text/gtkui_transfer.c - updated declaration of | |
1502 gftpui_add_file_to_transfer() | |
1503 | |
1504 * lib/protocols.c (gftp_swap_socks) - swap the SSL sockets between | |
1505 the two request structures | |
1506 | |
1507 * lib/ftps.c - added ftps_get_next_file() that will pull items from | |
1508 the cache properly | |
1509 | |
1510 * lib/Makefile.am - updated LOCALE_DIR declaration | |
1511 (from Sung-Hyun Nam <namsh@kldp.org>) | |
1512 | |
1513 * ChangeLog-old - updated summary of changes since 2.0.16 | |
1514 | |
1515 * TODO - removed several items that were completed | |
1516 | |
1517 2004-2-4 Brian Masney <masneyb@gftp.org> | |
396 | 1518 * docs/website/index.html.in - updated main website |
1519 | |
395 | 1520 * src/gtk/gftp-gtk.c - allow pasting a URL in the host box |
1521 | |
394 | 1522 * lib/Makefile.am - added ftpcommon.h to noinst_HEADERS |
1523 | |
399 | 1524 2004-2-3 Brian Masney <masneyb@gftp.org> |
390 | 1525 * lib/ftpcommon.h lib/ftps.c lib/rfc959.c - added pointers to |
1526 read/write functions to the rfc959_params structure for the data | |
1527 connection. For now, this is always set to the plaintext version. | |
1528 | |
389 | 1529 * lib/Makefile.am lib/gftp.h lib/options.h lib/rfc959.c lib/ftpcommon.h |
1530 lib/ftps.c - added support for the FTPS protocol. This currently is only | |
1531 for the control connection. (draft-murray-auth-ftp-ssl-09.txt) | |
1532 | |
399 | 1533 2004-2-2 Brian Masney <masneyb@gftp.org> |
388 | 1534 * docs/website/index.html.in - updated main gftp website |
1535 | |
387 | 1536 * lib/config_file.c lib/gftp.h src/uicommon/gftpui.c |
1537 src/gtk/gftp-gtk.c - updated the format of the config file | |
1538 write_functions so that the value isn't written to a file descriptor. | |
1539 Instead, it is written to a buffer. | |
1540 | |
1541 * src/text/gftp-text.c (gftp_text_log) - search for newlines in the | |
1542 string and split on those characters first | |
1543 | |
1544 * src/text/textui.c (gftpui_disconnect) - disconnect from the host | |
1545 | |
1546 * src/uicommon/gftpui.c - removed calls to printf() functions. Instead | |
1547 print the values out using the logging function | |
1548 | |
1549 * src/uicommon/gftpuicallbacks.c (gftpui_common_run_ls) - if we are | |
1550 connected to a local site, lookup the options local_sortasds and | |
1551 local_sortcol. Otherwise, lookup remove_sortasds and remote_sortcol. | |
1552 | |
1553 * autogen.sh - disable maintainer mode | |
1554 | |
1555 * TODO - updated | |
1556 | |
385 | 1557 2004-02-01 Alastair McKinstry <mckinstry@computer.org> |
1558 | |
1559 * configure.in: Add Irish ("ga") to ALL_LINGUAS | |
1560 | |
399 | 1561 2004-2-1 Brian Masney <masneyb@gftp.org> |
382 | 1562 * src/gtk/dnd.c - whenever a file(s)/directories are dropped onto |
1563 gftp, allow resuming the file transfers | |
1564 | |
381 | 1565 * lib/protocols.c (gftp_get_dir_listing, gftp_get_all_subdirs) - don't |
1566 modify the file variable if it begins with a /. Do not touch the | |
1567 destfile variable if it already exists | |
1568 | |
399 | 1569 2004-1-28 Brian Masney <masneyb@gftp.org> |
380 | 1570 * src/gtk/bookmarks.c src/gtk/dnd.c src/gtk/gftp-gtk.c |
1571 src/gtk/gftp-gtk.h src/gtk/gtkui.c src/gtk/menu-items.c | |
1572 src/gtk/transfer.c - renamed disconnect() to gftpui_disconnect() | |
1573 | |
1574 * src/gtk/gtkui.c src/text/textui.c src/uicommon/gftpui.c - improved | |
1575 prompting for the username/password | |
1576 | |
1577 * src/gtk/gtkui.c src/text/textui.c src/uicommon/gftpui.c - call | |
1578 gftpui_disconnect() after a command is run and if we are no longer | |
1579 connected to the remote host | |
1580 | |
1581 * src/text/gftp-text.c - parse the command line arguments for the host | |
1582 to connect to | |
1583 | |
1584 * src/text/textui.c (gftpui_refresh) - clear the cache. | |
1585 (gftpui_ask_transfer) - check for carriage return or empty string | |
1586 | |
1587 * src/uicommon/gftp.h - define gftpui_common_cmd_m{get,put}_file() | |
1588 | |
1589 * lib/sshv2.c - removed temporary "fix" | |
1590 | |
399 | 1591 2004-1-27 Brian Masney <masneyb@gftp.org> |
378 | 1592 * lib/gftp.h lib/misc.c src/gtk/gtkui_transfer.c src/text/textui.c - |
1593 added gftp_get_transfer_action(). When a file is to be transfered and | |
1594 already exists, this will return the default action that should be | |
1595 taken. | |
1596 | |
1597 * src/text/textui.c (gftpui_ask_transfer) - implemented this function | |
1598 so that whenever a file exists and is to be transfered, the user will | |
1599 be prompted on whether or not to overwrite/skip/resume | |
1600 | |
1601 * src/text/gftp-text.c (gftp_text_ask_question) - fixups for inputing | |
1602 a single character | |
1603 | |
399 | 1604 2004-1-23 Brian Masney <masneyb@gftp.org> |
377 | 1605 * src/text/gftp-text.c src/uicommon/gftpui.c - added file transfer |
1606 functions to the command line. | |
1607 | |
1608 * src/uicommon/gftpui_transfer.c src/uicommon/gftpui.h src/text/textui.c | |
1609 src/gtk/gtkui_transfer.c - added | |
1610 gftpui_{start,update,finish}_current_file_in_transfer() functions | |
1611 that will be called throughout the lifetime of a file transfer. | |
1612 Also, gftpui_start_transfer() that will be called whenever a file | |
1613 transfer is created | |
1614 | |
1615 * src/uicommon/gftpui.h src/uicommon/gftpui.c src/gtk/gftp-gtk.c | |
1616 src/gtk/transfer.c - added other_uidata and other_request arguments | |
1617 to all of the command line functions | |
1618 | |
1619 * lib/protocols.c lib/gftp.h - set the filespec argument to | |
1620 gftp_get_next_file to be a constant | |
1621 | |
1622 * lib/gftp.h - added tot_file_trans variable to gftp_transfer struct | |
1623 | |
399 | 1624 2004-1-21 Brian Masney <masneyb@gftp.org> |
374 | 1625 * lib/config_file.c lib/gftp.h - set the character string arguments to |
1626 const for the following functions: gftp_lookup_global_option(), | |
1627 gftp_lookup_request_option(), gftp_lookup_bookmark_option(), | |
1628 gftp_set_global_option(), gftp_set_request_option(), | |
1629 gftp_set_bookmark_option() | |
1630 | |
1631 * lib/misc.c lib/gftp.h - set the character string arguments to const | |
1632 for the function gftp_match_filespec() | |
1633 | |
1634 * src/gtk/gftp-gtk.c src/gtk/menu-items.c src/uicommon/gftpui.c - moved | |
1635 more UI independant parts to the uicommon directory. Moved some GUI | |
1636 specific functionality into gftp-gtk.c | |
1637 | |
1638 * src/text/gftp-text.c src/gtk/gftp-gtk.c src/uicommon/gftpui.c - pass | |
1639 the local/remote uidata/request structures to process_command(). Removed | |
1640 old function gftpui_common_init(). Added new gftpui_common_init() that | |
1641 sets up common functionality for a port. | |
1642 | |
1643 * src/gtk/gtkui.c src/gtk/gtkui_transfer.c - moved | |
1644 gftpui_add_file_to_transfer() to gtkui_transfer.c | |
1645 | |
1646 * src/gtk/gtkui_transfer.c - cleaned up these functions some and made | |
1647 them more modular | |
1648 | |
1649 * src/uicommon/gftpui.c src/uicommon/gftpui.h - for all of the command | |
1650 line functions, make the command argument a constant | |
1651 | |
399 | 1652 2004-1-18 Brian Masney <masneyb@gftp.org> |
372 | 1653 * lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c - if |
1654 _LARGEFILE_SOURCE is defined, explicitly cast the file sizes to | |
1655 long long so that the %lld format will be correct | |
1656 | |
371 | 1657 * src/gtk/gtkui_transfer.c - gtk+ specific file transfer code. |
1658 Forgot to attach this with the last commit | |
1659 | |
370 | 1660 * lib/rfc959.c (rfc959_connect) - if the username is anonymous and a |
1661 password is already supplied, don't clobber it. | |
1662 | |
369 | 1663 * lib/misc.c (gftp_build_path) - when checking for already existing |
1664 /'s, not only look at the end of the currently built string, but look | |
1665 at the beginning of the token that is about to be added | |
1666 (from Aurelien Jarno <aurel32@debian.org>) | |
1667 | |
1668 * lib/rfc2068.c (rfc2068_list_files) - if the current directory is /, | |
1669 just send the hostname over to the HTTP server. This was broken on some | |
1670 HTTP servers. | |
1671 (from Aurelien Jarno <aurel32@debian.org>) | |
1672 | |
368 | 1673 * lib/gftp.h lib/misc.c src/gtk/delete_dialog.c src/gtk/transfer.c |
1674 src/gtk/view_dialog.c src/uicommon/gftpui.c - renamed all instances of | |
1675 copy_request() to gftp_copy_request(). Removed second argument | |
1676 (copy_local_options), the options are always copied now. | |
1677 | |
367 | 1678 * lib/protocols.c (gftp_parse_url) - if the URL is the local filesystem, |
1679 skip over the whitespace at the beginning. | |
1680 | |
1681 * lib/rfc959.c (rfc959_syst) - allow the string MVS and OS/MVS for the | |
1682 MVS directory listings. | |
1683 | |
1684 * src/gtk/gtkui_transfer.c src/gtk/transfer.c src/gtk/gftpui.c - | |
1685 started to move the transfer functionality into the uicommon directory. | |
1686 Added the text and GTK+ UI specific transfer functions. | |
1687 | |
1688 * src/gtk/Makefile.am po/POTFILES.in - added gtkui_transfer.c | |
1689 | |
1690 * src/gtk/dnd.c src/gtk/gtkui_transfer.c src/gtk/view_dialog.c - | |
1691 s/add_file_transfer/gtkui_common_add_file_transfer/ | |
1692 | |
1693 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h - removed transfer_mutex | |
1694 | |
1695 * src/gtk/gtkui.c src/text/textui.c - added | |
1696 gftpui_add_file_to_transfer() | |
1697 | |
1698 * src/uicommon/gftpui_callbacks.c src/uicommon/gftpui.c - in all of the | |
1699 thread callback functions, don't alter the return value in the function. | |
1700 Return it as is. | |
1701 | |
366 | 1702 * src/gtk/bookmarks.c - don't allow an item to be dropped onto the root |
1703 node or items that are not a folder | |
1704 (from Aurelien Jarno <aurel32@debian.org>) | |
1705 | |
399 | 1706 2004-1-7 Brian Masney <masneyb@gftp.org> |
359 | 1707 * lib/protocols.c (parse_time) - insert the right year for files that |
1708 are from last year and the year is not shown in the ls output. | |
1709 | |
366 | 1710 * src/uicommon/gftpui.c (_gftpui_common_thread_callback) |
1711 src/uicommon/gftpui.h - added a retries variable to the cdata structure | |
1712 | |
1713 * src/uicommon/gftpui.c (gftpui_common_cmd_open) src/uicommon/gftpui.c | |
1714 - actually connect to the remote server | |
1715 | |
1716 * src/uicommon/gftpuicallbacks.c src/uicommon/gftpui.c - in the | |
1717 callback functions, don't change the return value | |
1718 | |
1719 * src/text/textui.c (gftpui_generic_thread) - don't spawn a thread, | |
1720 just call the function directly | |
359 | 1721 |
399 | 1722 2004-1-6 Brian Masney <masneyb@gftp.org> |
358 | 1723 * lib/gftp.h lib/protocols.c lib/rfc959.c - added MVS directory parsing |
1724 support. Also, in the VMS and EPLF directory formats, update the | |
1725 default file/directory perms to be -rw-r--r-- and drwx-r-xr-x | |
1726 respectively. | |
1727 | |
399 | 1728 2004-1-5 Brian Masney <masneyb@gftp.org> |
356 | 1729 * lib/gftp.h lib/misc.c src/gtk/gftpui.c - added GFTP_URL_USAGE |
1730 that is the sytax for a valid URL. | |
1731 | |
1732 * lib/protocols.c (gftp_set_password) - allow the password to be NULL | |
1733 | |
1734 * src/gtk/gtkui.c src/text/textui.c src/uicommon/gftpui.h - added | |
1735 gftpui_prompt_username() and gftpui_promot_password() to each UI | |
1736 | |
1737 * src/text/gftp-text.c (gftp_text_ask_question) - don't display a | |
1738 : at the end of the question here. | |
1739 | |
1740 * src/text/gftp-text.h - added declaration of gftp_text_ask_question() | |
1741 | |
1742 * src/uicommon/gftpui.c - added gftpui_common_cmd_open(). This still | |
1743 needs a little bit more work done to it. | |
1744 | |
355 | 1745 * src/gtk/gftp-gtk.h src/gtk/gtkui.c - when spawning a thread, |
1746 make sure that the GUI will be updated properly as soon as the thread | |
1747 is finished. | |
1748 | |
1749 * src/uicommon/gftpuicallbacks.c src/uicommon/gftpui.h - added | |
1750 gftpui_common_run_ls() | |
1751 | |
1752 * src/uicommon/gftpui.c (gftpui_common_cmd_ls) | |
1753 src/gtk/transfer.c (ftp_list_files) - converted these functions | |
1754 over to use gftpui_common_run_ls() | |
1755 | |
354 | 1756 * lib/gftp.h src/gtk/misc-gtk.c src/text/gftp-text.c - added logging |
1757 level type gftp_logging_misc_nolog. If a message is logged with this | |
1758 level, it will be displayed to the screen but, it will not be logged | |
1759 to disk. | |
1760 | |
1761 * src/uicommon/gftpui.c - log the directory listings with the log level | |
1762 gftp_logging_misc_nolog | |
1763 | |
1764 * src/gtk/gtkui.c (gftpui_generic_thread) - fixed segfault. Pass | |
1765 cdata structure instead of wdata. | |
1766 | |
399 | 1767 2004-1-4 Brian Masney <masneyb@gftp.org> |
352 | 1768 * src/text/Makefile.am src/gtk/Makefile.am - added @LIBINTL@ to LDADD |
1769 line of Makefile.am | |
1770 | |
351 | 1771 * configure.in - added src/uicommon/Makefile to the list of files to |
1772 be generated. | |
1773 | |
1774 * configure.in lib/gftp.h - check for sys/mkdev.h header file. If it is | |
1775 found, include it. Solaris needs this for major() and minor() | |
1776 | |
350 | 1777 * src/uicommon/gftpui.c src/uicommon/gftpui.h |
1778 src/uicommon/gftpuicallbacks.c - when switching between ascii/binary, | |
1779 set the option on a global basis. Converted chdir, chmod, delete, | |
1780 rename, rmdir commands over to using the new command run format so that | |
1781 it will work in the different UIs. Added site command to the command | |
1782 line. | |
1783 | |
349 | 1784 * lib/misc.c (gftp_parse_command_line) - unified this function so that |
1785 it is consistent for all arguments. | |
1786 | |
1787 * lib/protocols.c (gftp_file_destroy) - fixed memory leak (utf8_file | |
1788 was not being freed) | |
1789 | |
348 | 1790 * docs/gftp-faq.sgml - updated link to the (old) threaded version of |
1791 XFree86 libraries | |
1792 | |
431 | 1793 2003-12-29 Brian Masney <masneyb@gftp.org> |
343 | 1794 * po/POTFILES.in - added the new uicommon files to this file |
1795 | |
431 | 1796 2003-12-28 Brian Masney <masneyb@gftp.org> |
342 | 1797 * src/gtk/gtkui.c src/text/textui.c - necessary UI related files for |
1798 each port of gftp. The uicommon code will call these functions. | |
1799 | |
431 | 1800 2003-12-28 Brian Masney <masneyb@gftp.org> |
341 | 1801 **** NOTE: this commit breaks a lot of functionality in gftp. I **** |
1802 **** still have more work to do on this. Please don't email me **** | |
1803 **** saying that the CVS code is broken. **** | |
1804 | |
1805 * lib/bookmark.c lib/gftp.h lib/local.c lib/options.h lib/rfc2068.c | |
1806 lib/rfc959.c lib/sshv2.c - moved the use_threads option from the | |
1807 request structure over to the protocol declaration in options.h. | |
1808 | |
1809 * lib/options.h src/gtk/gftp-gtk.c - added cmd_in_gui option. When this | |
1810 option is enabled, a new toolbar will be shown in the GTK+ port that | |
1811 will allow you to control the GUI by entering manual commands. | |
1812 | |
1813 * src/Makefile.am - added uicommon directory | |
1814 | |
1815 * src/gtk/Makefile.am src/text/Makefile.am - link in the uicommon | |
1816 library. | |
1817 | |
1818 * src/uicommon/* src/text/gftp-text.c - moved most of the functionality | |
1819 of the text port over to the uicommon directory. Made this code a little | |
1820 more generic so that the GTK+ port can have a text interface | |
1821 associated with it. | |
1822 | |
1823 * src/gtk/gtkui.c src/gtk/gftp-gtk.c src/gtk/mkdir_dialog.c | |
1824 src/gtk/rename_dialog.c src/gtk/menu-items.c src/gtk/misc-gtk.c - | |
1825 started to clean up the callback functions and make them more tightly | |
1826 integrated with the uicommon code. | |
1827 | |
1828 * src/gtk/bookmarks.c src/gtk/chmod_dialog.c src/gtk/delete_dialog.c | |
1829 src/gtk/gftp-gtk.c src/gtk/menu-items.c src/gtk/misc-gtk.c | |
1830 src/gtk/transfer.c - | |
1831 s/refresh/gftpui_refresh/g | |
1832 s/jmp_environment/gftpui_common_jmp_environment/g | |
1833 s/request->use_threads/gftpui_common_use_threads (request)/g | |
1834 | |
1835 * src/gtk/options_dialog.c (apply_changes) - whenever the options are | |
1836 saved, check to see if the command entry needs to be shown or hidden. | |
1837 | |
431 | 1838 2003-12-10 Brian Masney <masneyb@gftp.org> |
339 | 1839 * lib/rfc959.c - fix IPv6 compile problem when IPv6 support is not |
1840 available on the system. | |
1841 | |
338 | 1842 * lib/gftp.h src/text/gftp-text.h src/gtk/gftp-gtk.h - added |
1843 GFTP_LOG_FUNCTION_ATTRIBUTES that is only defined when compiled | |
1844 against gcc. When this is set, it will specify the function is | |
1845 printf() type function so that extra checks can be done by the | |
1846 compiler. This is to fix problems with older Sun compilers. | |
1847 | |
337 | 1848 * src/gtk/gftp-gtk.c src/gtk/menu-items.c src/gtk/misc-gtk.c - check |
1849 for a timeout from the remote server when refreshing the directory | |
1850 listing and changing directores. If it did, reconnect to the server. | |
1851 | |
336 | 1852 * lib/rfc2068.c - set the default file attributes to -rw-r--r-- for |
1853 all files. | |
1854 | |
431 | 1855 2003-12-7 Brian Masney <masneyb@gftp.org> |
332 | 1856 * lib/options.h lib/config_file.c - removed scramble_passwords |
1857 option. Instead, make this the default action all the time. This | |
1858 is to avoid having too many unnecessary options. Also put a note | |
1859 at the top of the bookmarks file stating the passwords are being | |
1860 scrambled. | |
1861 | |
330 | 1862 * lib/config_file.c lib/gftp.h lib/misc.c lib/options.h - added |
1863 scramble passwords option. This patch is mostly from Aurelien Jarno | |
1864 <lists@aurel32.net>, but it was modified by me quite a bit. This is | |
1865 not safe, and can be broken. That is why it's labeled scrambled | |
1866 passwords instead of encrypt passwords. | |
1867 | |
1868 * acinclude.m4 - fix to AC_INTL_PRINTF | |
1869 | |
329 | 1870 * src/gtk/dnd.c (openurl_get_drag_data) - if we are connected to a |
1871 remote site, disconnect before parsing the URL. This fixes a bug where | |
1872 the directory was not being refreshed properly (from Aurelien Jarno | |
1873 <lists@aurel32.net>) | |
1874 | |
328 | 1875 * configure.in acinclude.m4 lib/misc.c - added AC_INTL_PRINTF macro. |
1876 If the printf family of functions supports %'ld, then HAVE_INTL_PRINTF | |
1877 will be defined. The appropriate version of insert_commas() can be | |
1878 used. | |
1879 | |
431 | 1880 2003-12-4 Brian Masney <masneyb@gftp.org> |
326 | 1881 * src/gftp.in - check for the bin_dir for the binary location |
1882 | |
325 | 1883 * lib/cache.c lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c |
1884 lib/sshv2.c lib/sslcommon.c src/text/gftp-text.c src/gtk/chmod_dialog.c | |
1885 src/gtk/gftp-gtk.c src/gtk/menu-items.c src/gtk/misc-gtk.c | |
1886 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
1887 when calling gftp_lookup_global_option() or | |
1888 gftp_lookup_request_option(), if the value is an integer, declare | |
1889 the variable type to be intptr_t. This fixes a bug on 64bit platforms | |
1890 (from Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>) | |
1891 | |
1892 * lib/config_file.c (gftp_config_file_read_float) - 64bit fixup | |
1893 | |
1894 * configure.in - increment version to 2.0.17pre0. Undefine _GNU_SOURCE. | |
1895 Check for stdint.h. | |
1896 | |
1897 * lib/gftp.h - include stdint.h if it is found on the system. | |
1898 | |
1899 * src/gtk/gftp-gtk.c (CreateToolbar) - on startup, have the host edit | |
1900 box grab the keyboard focus | |
1901 | |
431 | 1902 2003-11-30 Brian Masney <masneyb@gftp.org> |
321 | 1903 * lib/sshv2.c - cleaned up some of the code. Added a temporary fix for |
1904 an upload crash that is happening on FreeBSD. | |
1905 | |
320 | 1906 * src/gtk/transfer.c - shows status information in title bar. (patch |
1907 from Jamil Geor <jamil_geor@yahoo.co.nz>, cleaned up by me some) | |
1908 | |
1909 * lib/options.h - added show_trans_in_title option. | |
1910 | |
431 | 1911 2003-11-25 Brian Masney <masneyb@gftp.org> |
320 | 1912 * lib/misc.c (gftp_locale_init) - call bindtextdomain() so that the |
1913 directory is setup properly | |
1914 | |
1915 * lib/misc.c lib/gftp.h lib/config_file.c - move copyfile() to | |
1916 config_file.c and declare it to be static. On the destination file, | |
1917 set the flag O_EXCL | |
1918 | |
431 | 1919 2003-11-23 Brian Masney <masneyb@gftp.org> |
319 | 1920 * src/gtk/transfer.c - when transfering a file, if the file being |
1921 transfered is greater in the destination than in the source, overwrite | |
1922 it | |
1923 | |
1924 * lib/rfc959.c (rfc959_ipv6_data_connection_new) - when parsing the | |
1925 output, parse the integers as unsigned. | |
1926 | |
431 | 1927 2003-11-9 Brian Masney <masneyb@gftp.org> |
313 | 1928 * lib/options.h lib/protoocols.c - added enable_ipv6 option. |
1929 | |
1930 * lib/rfc959.c lib/protocols.c - if there is an error creating a socket, | |
1931 log a more informative error about what kind of socket was attempted | |
1932 to be created. | |
1933 | |
312 | 1934 * debian/* - updated Debian package files from |
1935 Aurelien Jarno <aurel32@debian.org> | |
1936 | |
431 | 1937 2003-11-9 Brian Masney <masneyb@gftp.org> |
319 | 1938 * Officially released 2.0.16 |
1939 | |
311 | 1940 * debian/ChangeLog - incremented version to 2.0.16 |
1941 | |
310 | 1942 * docs/Makefile.am - clean up documentation in clean target |
1943 | |
1944 * docs/website/generate-gftp-website.pl docs/website/index.html.in - | |
1945 copy README/FAQ that is automatically generated to the website. | |
1946 | |
1947 * docs/website/install.html docs/website/faq.html - no longer needed | |
1948 anymore. | |
1949 | |
1950 * docs/website/index.html.in - updated the list of languages | |
1951 | |
1952 * ChangeLog-old - updated with brief list of changes since 2.0.15 | |
1953 | |
431 | 1954 2003-11-7 Brian Masney <masneyb@gftp.org> |
309 | 1955 * lib/gftp.h lib/local.c lib/protocols.c lib/rfc2068.c lib/rfc959.c |
1956 lib/sshv2.c - added copy_param_options method to gftp_request | |
1957 structure. When a gftp_request structure is copied, if a | |
1958 copy_param_options method exists, this will be called so that the | |
1959 local protocol data can be copied over. This is only used by the | |
1960 FTP protocol at the moment to save the current state of Ascii or | |
1961 Binary transfers. | |
1962 | |
1963 * src/gtk/transfer.c (transfer_done) - when a transfer is | |
1964 completed, copy the local protocol options back to the main window | |
1965 | |
1966 * lib/rfc959.c (gftp_set_data_type) - check the return value of | |
1967 rfc959_send_command() and if there is an error, return that | |
1968 error. | |
1969 | |
1970 * configure.in - added 'hr' to ALL_LINGUAS | |
1971 | |
431 | 1972 2003-11-5 Brian Masney <masneyb@gftp.org> |
307 | 1973 * TODO - updated |
1974 | |
1975 * configure.in - updated version to 2.0.16. | |
1976 | |
1977 * configure.in docs/Makefile.am - Added check for the db2html | |
1978 command (from gtk+ configure) | |
1979 | |
310 | 1980 * docs/gftp-faq.sgml - updated with more information |
307 | 1981 |
1982 * docs/website/index.html.in - updated list of translations | |
1983 | |
1984 * lib/misc.c (expand_path) - expand paths with double slashes | |
1985 properly to support Novell directory listings. | |
1986 (gftp_build_path) - better checking of paths that end in /. | |
1987 (gftp_info) - show if _REENTRANT was defined when it was compiled. | |
1988 | |
1989 * README - removed, this is automatically generated now. | |
1990 | |
431 | 1991 2003-11-3 Brian Masney <masneyb@gftp.org> |
306 | 1992 * docs/gftp-faq.sgml docs/Makefile.am - added initial SGML version |
1993 of the gFTP FAQ. I used the same format as the GTK+ FAQ. | |
1994 | |
305 | 1995 * lib/gftp.h src/gtk/transfer.c src/gtk/delete_dialog.c - removed |
1996 transfer_direction variable from gftp_transfer structure. Cleaned | |
1997 up the code that did checks based on the value of this variable. | |
1998 | |
1999 * lib/rfc959.c (rfc959_syst) - added a check for Novell FTP servers | |
2000 | |
2001 * src/gtk/transfer.c (add_file_transfer) - check the value of the option | |
2002 one_transfer and if that is disabled, do not append the file transfers. | |
2003 (transfer_done) - refresh the destination window correctly after a | |
2004 transfer is completed. | |
2005 | |
431 | 2006 2003-11-2 Brian Masney <masneyb@gftp.org> |
304 | 2007 * lib/rfc2068.c (rfc2068_get_file) - if there is any data in the current |
2008 read buffer, grab that data first. Otherwise, read from the socket. | |
2009 | |
303 | 2010 * lib/rfc2068.c (rfc2068_chunked_read) - more improvements to this |
2011 function so that it will parse more chunked file transfers correctly. | |
2012 | |
2013 * lib/misc.c lib/gftp.h lib/rfc2068.c src/gtk/bookmarks.c | |
2014 src/gtk/dnd.c - removed remove_double_slashes(). Call gftp_build_path() | |
2015 to build the paths. This now allows Novell directory listings with | |
2016 //server | |
2017 | |
2018 * lib/protocols.c src/gtk/transfer.c lib/gftp.h - added variable | |
2019 conn_error_no_timeout to gftp_transfer structure. If this is enabled, | |
2020 if the remote connection to the server timed out, don't wait and | |
2021 immediately reconnect. So far, the only time this is used is when the | |
2022 user was editing a file and it is to be uploaded back to the server. | |
2023 | |
2024 * src/gtk/gftp-gtk.h src/gtk/transfer.c - add_file_transfer() now | |
2025 returns the struct gftp_transfer that was just added. | |
2026 | |
2027 * src/gtk/misc-gtk.c (update_directory_download_progress) - don't | |
2028 make the window a popup and remove the window decorations | |
2029 | |
2030 * src/text/gftp-text.c - don't populate the transfer_direction variable | |
2031 in struct gftp_transfer. This is only needed by the GTK+ port and will | |
2032 hopefully be taken out soon. | |
2033 | |
2034 * lib/gftp.h - remove gftp_transfer_type enum. It wasn't used anymore. | |
2035 | |
431 | 2036 2003-10-27 Brian Masney <masneyb@gftp.org> |
301 | 2037 * lib/rfc959.c (gftp_get_next_file_chunk) - fixed ASCII file corruption |
2038 bug. | |
2039 | |
300 | 2040 * TODO - the top of this file now contains a list of items that needs |
2041 to be completed before 2.0.16 can be released. If I missed something | |
2042 important, please drop me an email. | |
2043 | |
431 | 2044 2003-10-26 Brian Masney <masneyb@gftp.org> |
299 | 2045 * lib/rfc959.c (gftp_{get,put}_next_file_chunk) - check whether or not |
2046 this is an ascii file transfer properly. | |
2047 | |
298 | 2048 * lib/rfc959.c - convert the PASS command from UTF8 using |
2049 gftp_convert_from_utf8() | |
2050 | |
297 | 2051 * src/gtk/gftp-gtk.h src/gtk/transfer.c - (create_transfer, |
2052 transfer_done) - added more checks whenever a transfer is created and | |
2053 stopped to make sure we don't log into the same remote host twice. This | |
2054 is mainly for DnD. | |
2055 | |
296 | 2056 * lib/misc.c (copy_request) - don't copy over the hostp pointer. This |
2057 fixes a segfault in DnD | |
2058 | |
2059 * lib/sshv2.c - cleaned up the ssh2_params structure some | |
2060 | |
2061 * src/gtk/dnd.c - cleaned up the DND code some. | |
2062 | |
431 | 2063 2003-10-25 Brian Masney <masneyb@gftp.org> |
295 | 2064 * src/gtk/menu-items.c (dosave_directory_listing) - when saving the |
2065 directory listing, skip over the files that are not shown based on the | |
2066 current filespec. | |
2067 | |
294 | 2068 * src/gtk/transfer.c src/gtk/gftp-gtk.h src/gtk/view_dialog.c - when |
2069 editing a remote file, if the user chooses to upload the changes, make | |
2070 sure the upload is not sent to the current directory on the remote | |
2071 server. | |
2072 | |
2073 * lib/rfc2068.c - set the shown attributes to be -rw------- instead of | |
2074 ----------. The HTTP server doesn't send the attributes over, so I just | |
2075 have to make something up. | |
2076 | |
2077 * src/gtk/options_dialog.c - make sure all of the tooltips text is | |
2078 passed to gettext() | |
2079 | |
2080 * lib/protocols.c - if the file transfer is to be throttled, only | |
2081 display the throttle message once. | |
2082 | |
2083 * lib/local.c (local_get_next_file) - if the file is a symlink, grab | |
2084 file size and attributes from the file this symlink points to. | |
2085 | |
431 | 2086 2003-10-22 Brian Masney <masneyb@gftp.org> |
293 | 2087 * lib/rfc2068.c - fixed parsing some chunked file transfers |
2088 | |
431 | 2089 2003-10-19 Brian Masney <masneyb@gftp.org> |
292 | 2090 * lib/rfc959.c - abort a file transfer properly. When a transfer is |
2091 aborted, you will not be disconnected from the remote site. | |
2092 | |
291 | 2093 * lib/protocols.c lib/gftp.h - added gftp_string_from_utf8(). Also, make |
2094 gftp_string_{to,from}_utf8() be defined all the time. When using | |
2095 glib 1.2, the functions will always return NULL. | |
2096 | |
2097 * lib/protocols.c - when creating a directory or renaming files, make | |
2098 sure the new name is converted from UTF8 to the local character set | |
2099 or the charset specified in the remote_charsets option. | |
2100 | |
2101 * src/gtk/misc-gtk.c (update_window_info) - when showing the directory | |
2102 we are currently in, make sure it is converted to UTF8 | |
2103 | |
431 | 2104 2003-10-18 Brian Masney <masneyb@gftp.org> |
290 | 2105 * lib/misc.c lib/gftp.h src/text/gftp-text.c src/gtk/gftp-gtk.c - added |
2106 gftp_locale_init(). | |
2107 | |
2108 * src/gtk/Makefile.am src/text/Makefile.am - removed declaration of | |
2109 LOCALE_DIR | |
2110 | |
2111 * lib/Makefile.am - added declaration of LOCALE_DIR | |
2112 | |
289 | 2113 * lib/misc.c (insert_commas) - if _GNU_SOURCE is defined, instead of |
2114 using my builtin function for formatting numbers, use glibc's %'ld | |
2115 (or %'lld) format to print the numbers out. This is more portable for | |
2116 other locales. | |
2117 | |
431 | 2118 2003-10-17 Brian Masney <masneyb@gftp.org> |
288 | 2119 * lib/rfc959.c (rfc959_ipv[46]_data_connection_new) - when there is an |
2120 error establishing a connection to the remote server, make sure that | |
2121 GFTP_ERETRYABLE is returned. | |
2122 | |
431 | 2123 2003-10-13 Brian Masney <masneyb@gftp.org> |
287 | 2124 * src/gtk/options_dialog.c - when specifying a FTP proxy config in the |
2125 GTK+ 2.0 port, the last character was getting chopped off. | |
2126 | |
431 | 2127 2003-10-12 Brian Masney <masneyb@gftp.org> |
286 | 2128 * lib/rfc959.c - when logging in to the server, if a 5xx code is |
2129 returned, don't attempt to log in again. | |
2130 | |
285 | 2131 * src/gtk/bookmarks.c - disconnect from the site before we parse the |
2132 bookmarks (from Aurelien Jarno <lists@aurel32.net>) | |
2133 | |
284 | 2134 * lib/sshv2.c - fixed crash when deleting subdirectories with the SSH2 |
2135 protocol. | |
2136 | |
431 | 2137 2003-10-4 Brian Masney <masneyb@gftp.org> |
281 | 2138 * lib/protocols.c - fix for CRAY directory listings. Some UNIX directory |
2139 listings with files containing spaces could be misinterpreted. | |
2140 | |
2141 * cvsclean - purge the m4 directory, but save the largefile.m4 file. | |
2142 (from Nathan Robertson <nathanr@nathanr.net>) | |
2143 | |
431 | 2144 2003-10-03 Marcel Telka <marcel@telka.sk> |
280 | 2145 |
2146 * configure.in (ALL_LINGUAS): Added sk. | |
2147 | |
431 | 2148 2003-10-2 Brian Masney <masneyb@gftp.org> |
278 | 2149 * lib/rfc959.c - fixed rename bug (from |
2150 Aurelien Jarno <aurel32@debian.org>) | |
2151 | |
2152 * src/gtk/gftp-gtk.c - make the help menu left aligned so that it is | |
2153 more consistent with other GNOME apps | |
2154 (from Miguel Ibarra <mibarra@ximian.com>) | |
2155 | |
2156 * src/gtk/transfer.c - right after the pointer to the next transfer | |
2157 is moved, set the current transfer size back to 0. The user could | |
2158 briefly (< 1 sec) see the old size transfered on the next file. | |
2159 | |
431 | 2160 2003-09-23 Taneem Ahmed <taneem@bengalinux.org> |
277 | 2161 |
2162 * configure.in: Added "bn" to ALL_LINGUAS. | |
2163 | |
431 | 2164 2003-9-21 Brian Masney <masneyb@gftp.org> |
276 | 2165 * src/gtk/menu-items.c (dosave_directory_listing) - fixed a bug that |
2166 would occur when saving directory listings to a file, the last filename | |
2167 in the list was never written to the file | |
2168 (from Aurelien Jarno <aurel32@debian.org>) | |
2169 | |
275 | 2170 * lib/protocols.c (gftp_parse_bookmark) lib/gftp.h lib/bookmark.c |
2171 src/gtk/bookmarks.c - added pointer to refresh_local variable that is | |
2172 enabled if the local directory was changed. In src/gtk/bookmarks.c, if | |
2173 the local directory was changed, refresh the directory listing. | |
2174 | |
274 | 2175 * lib/local.c src/gtk/transfer.c src/text/gftp-text.c - if there is a |
2176 dangling symlink in the current directory, don't bail out. This was | |
2177 causing directory listings to appear truncated. | |
2178 | |
2179 * configure.in - increment version to 2.0.16pre0 | |
2180 | |
273 | 2181 * lib/rfc959.c - if there is a login failure, return GFTP_ERETRYABLE |
2182 (from winkey <rush@winkey.oompah.org>) | |
2183 | |
431 | 2184 2003-09-01 Metin Amiroff <metin@karegen.com> |
268 | 2185 |
2186 configure.in: Added "az" in ALL_LINGUAS. | |
2187 | |
431 | 2188 2003-8-21 Brian Masney <masneyb@gftp.org> |
274 | 2189 * Officially released 2.0.15 |
2190 | |
431 | 2191 2003-8-20 Brian Masney <masneyb@gftp.org> |
261 | 2192 * lib/gftp.h lib/protocols.c - largefile fixes |
2193 | |
2194 * configure.in debian/changelog - updated version | |
2195 | |
2196 * cvsclean - clean up after ourselves a little more | |
2197 | |
2198 * ChangeLog-old README TODO docs/website/index.html.in - updated | |
2199 | |
431 | 2200 2003-8-17 Brian Masney <masneyb@gftp.org> |
260 | 2201 * lib/protocols.c (parse_time) - when parsing timestamps that are not in |
2202 the current locale, skip over the proper amount of tokens. This is so | |
2203 that the filename is returned properly. | |
2204 | |
2205 * lib/misc.c (gftp_info) - show the protocols that are installed. | |
2206 | |
431 | 2207 2003-8-11 Brian Masney <masneyb@gftp.org> |
255 | 2208 * lib/local.c (local_get_next_file) - fix for directories that are |
2209 symlinks | |
2210 | |
2211 * src/gtk/*.[ch] - updated copyright dates to 2003 on all of the files | |
2212 | |
254 | 2213 * src/gtk/menu-items.c lib/rfc959.c - fix for selecting ASCII/Binary |
2214 transfers | |
2215 | |
253 | 2216 * src/gtk/delete_dialog.c - don't attempt to clear the cache for the |
2217 protocols that have the cache disabled | |
2218 | |
2219 * lib/local.c (local_chdir) - if request->directory == directory, | |
2220 don't free the request->directory and run getcwd(). This fixes a double | |
2221 free in the delete dialog in the GTK+ port | |
2222 | |
2223 * lib/gftp.h - added FIXME comment | |
2224 | |
2225 * lib/cache.c (gftp_delete_cache_entry) - added assertion | |
2226 | |
431 | 2227 2003-8-7 Brian Masney <masneyb@gftp.org> |
250 | 2228 * configure.in - HPUX fix |
2229 | |
2230 * debian/changelog - incremented version | |
2231 | |
2232 * Officially release 2.0.15rc2 | |
2233 | |
431 | 2234 2003-8-7 Brian Masney <masneyb@gftp.org> |
249 | 2235 * lib/cache.c lib/misc.c lib/protocols.c lib/pty.c - make sure a NUL |
2236 byte appears at the end of the buffer after the call to strncpy | |
2237 | |
2238 * lib/rfc959.c - increased buffer size to directory parsing routine | |
2239 | |
248 | 2240 * lib/protocols.c (gftp_fd_write) - use a signed variable to store the |
2241 result from write(). Write errors were not being caught properly. | |
2242 | |
431 | 2243 2003-8-6 Brian Masney <masneyb@gftp.org> |
247 | 2244 * lib/misc.c (gftp_build_path) - fixed initial path beginning with //. |
2245 (expand_path) - when the path is empty at the end, set it to /. This | |
2246 would happen for directories like /etc/.. | |
2247 | |
431 | 2248 2003-8-4 Brian Masney <masneyb@gftp.org> |
246 | 2249 * src/gtk/transfer.c (update_file_status) - fix possible division by 0 |
2250 | |
431 | 2251 2003-8-4 Brian Masney <masneyb@gftp.org> |
245 | 2252 * src/gtk/gftp-gtk.c (CreateMenus) - on startup, select the proper |
2253 ASCII/binary radio button (looks like an old bug!) | |
2254 | |
2255 * lib/misc.c lib/gftp.h - renamed my version of g_build_path() (was | |
2256 used only in glib 1.2 only) to gftp_build_path() and it's compiled in | |
2257 all the time now | |
2258 | |
2259 * lib/protocols.c lib/sshv2.c src/gtk/dnd.c src/gtk/menu-items.c - | |
2260 instead of using g_build_path(), use gftp_build_path() | |
2261 | |
431 | 2262 2003-8-3 Brian Masney <masneyb@gftp.org> |
244 | 2263 * lib/local.c (local_put_file) - specify an initial file creation mode |
2264 of 0644 | |
2265 | |
2266 * lib/misc.c lib/gftp.h - added gftp_parse_file_size(). This function | |
2267 works correctly for files greater than 2.1GB | |
2268 | |
2269 * lib/rfc959.c (rfc959_get_file) lib/protocols.c lib/rfc2068.c | |
2270 lib/rfc959.c - use gftp_parse_file_size() | |
2271 | |
2272 * lib/protocols.c lib/gftp.h (gftp_get_file, gftp_put_file, | |
2273 gftp_transfer_file) - changed type of startsize paramter from size_t | |
2274 to off_t | |
2275 | |
431 | 2276 2003-7-31 Brian Masney <masneyb@gftp.org> |
243 | 2277 * lib/sshv2.c - fix blocking problem reading the error message from the |
2278 remote server when there was an error establishing a connection | |
2279 | |
2280 * lib/misc.c (copy_fdata) - copy utf8_file variable in gftp_file | |
2281 structure. (fix double free that was only in development version) | |
2282 | |
2283 * lib/misc.c - added --info argument to the command line. This will | |
2284 call gftp_info(), which will print out some information about how | |
2285 gftp was compiled. | |
2286 | |
2287 * lib/protocols.c lib/bookmarks.c lib/gftp.h src/gtk/bookmarks.c - | |
2288 added local_request parameter to gftp_parse_bookmark(). If this is not | |
2289 NULL, and this bookmark specifies a local directory, it will change to | |
2290 it. | |
2291 | |
2292 * configure.in - increment version to 2.0.15rc2 | |
2293 | |
431 | 2294 2003-07-30 Dmitry G. Mastrukov <dmitry@taurussoft.org> |
242 | 2295 |
2296 * configure.in: Added Belarusian to ALL_LINGUAS. | |
2297 | |
431 | 2298 2003-7-29 Brian Masney <masneyb@gftp.org> |
239 | 2299 * src/gtk/options_dialog.c - fix crash that would occur when hitting |
2300 apply, then ok | |
2301 | |
431 | 2302 2003-7-25 Brian Masney <masneyb@gftp.org> |
236 | 2303 * configure.in - define HAVE_OPENPTY if openpty() is found in libutil |
2304 | |
235 | 2305 * lib/gftp.h lib/pty.c - moved including of some PTY related header |
2306 files to pty.c. Hopefully should fix build problems under FreeBSD | |
2307 | |
431 | 2308 2003-7-25 Brian Masney <masneyb@gftp.org> |
234 | 2309 * src/gtk/transfer.c - changed looking up of overwrite_by_default to |
2310 overwrite_default | |
2311 | |
2312 * src/text/gftp-text.h - fix for when the readline library was not | |
2313 found on the local system | |
2314 | |
431 | 2315 2003-7-25 Brian Masney <masneyb@gftp.org> |
232 | 2316 * lib/pty.c - prefer to use openpty() instead of grantpt() if it is |
2317 available (for FreeBSD) | |
2318 | |
2319 * lib/sshv2.c - fixes for FreeBSD password prompt (from Oliver Lehmann | |
2320 <oliver@FreeBSD.ORG>) | |
2321 | |
2322 * src/gtk/gftp-gtk.h src/text/gftp-text.h - added | |
2323 __attribute__((format(printf, 3, 4))) to logging functions (from | |
2324 Oliver Lehmann <oliver@FreeBSD.ORG>) | |
2325 | |
431 | 2326 2003-7-25 Brian Masney <masneyb@gftp.org> |
232 | 2327 * lib/pty.c - prefer to use openpty() instead of grantpt() if it is |
2328 available (for FreeBSD) | |
2329 | |
2330 * lib/sshv2.c - fixes for FreeBSD password prompt (from Oliver Lehmann | |
2331 <oliver@FreeBSD.ORG>) | |
2332 | |
2333 * src/gtk/gftp-gtk.h src/text/gftp-text.h - added | |
2334 __attribute__((format(printf, 3, 4))) to logging functions (from | |
2335 Oliver Lehmann <oliver@FreeBSD.ORG>) | |
2336 | |
431 | 2337 2003-7-23 Brian Masney <masneyb@gftp.org> |
231 | 2338 * TODO - updated |
2339 | |
2340 * debian/* - new files from the Debian maintainer | |
2341 | |
2342 * docs/website/generate-gftp-website.pl - fixed generating changelog | |
2343 file | |
2344 | |
2345 * po/*.po - updated line numbers | |
2346 | |
431 | 2347 2003-7-23 Brian Masney <masneyb@gftp.org> |
230 | 2348 * configure.in - incremented version to 2.0.15rc1. Also, if readline |
2349 wasn't found on the system, the text port wasn't be built | |
2350 | |
2351 * ChangeLog-old - added summary of changes since version 2.0.14 | |
2352 | |
2353 * TODO - updated | |
2354 | |
2355 * src/text/gftp-text.c - build fixes if readline isn't present on the | |
2356 system | |
2357 | |
2358 * lib/sshv2.c - don't print out the network error as well when getting | |
2359 the error message from the remote server. The user is only interested | |
2360 in the error returned from the server. | |
2361 | |
431 | 2362 2003-7-22 Brian Masney <masneyb@gftp.org> |
229 | 2363 * lib/config_file.c lib/gftp.h - added gftp_lookup_bookmark_option() |
2364 and gftp_set_bookmark_option(). Also added _gftp_set_option_value() | |
2365 that is used by the set functions for bookmark and request structures | |
2366 | |
2367 * src/gtk/bookmarks.c - make sure the options are copied over to the | |
2368 new bookmarks. Also show all of the editable toptions for this bookmark | |
2369 entry | |
2370 | |
2371 * src/gtk/options_dialog.c src/gtk/gftp-gtk.h lib/config_file.c | |
2372 lib/gftp.h - improvements to overriding options for each bookmark | |
2373 entry. There is still one crash that is occuring that I have to track | |
2374 down. For the moment, don't edit the bookmarks twice in the same | |
2375 session. | |
2376 | |
431 | 2377 2003-7-20 Brian Masney <masneyb@gftp.org> |
227 | 2378 * lib/config_file.c lib/gftp.h - added compare_function to |
2379 gftp_config_vars structure. (gftp_set_global_option) use the compare | |
2380 function to see if the value was actually changed, and if so set the | |
2381 gftp_configuration_changed variable | |
2382 | |
2383 * lib/misc.c lib/gftp.h - For glib 1.2, added my version of | |
2384 g_build_path() since it's not there | |
2385 | |
2386 * lib/misc.c - GLIB/GTK+ 1.2 fixes | |
2387 | |
2388 * lib/protocols.c (gftp_fd_open) - cleaned up some | |
2389 | |
2390 * lib/rfc959.c (rfc959_init) - if the email address is blank, get the | |
2391 users address here instead of in register_module. It was being blanked | |
2392 out when the config file was being read | |
2393 | |
2394 * lib/options.h lib/rfc2068.c lib/rfc959.c lib/sshv2.c - mark the | |
2395 config variables that can show up in the bookmarks editor | |
2396 | |
2397 * src/text/gftp-text.c src/gtk/options_dialog.c - use | |
2398 gftp_set_global_option() to set the new configuration values | |
2399 | |
2400 * src/gtk/bookmarks.c - fixed crash in bookmarks dialog. Added notebook | |
2401 widget to the dialog as well. The options that can be edited for this | |
2402 site will show up in other tabs | |
2403 | |
2404 * src/gtk/gftp-gtk.c - fixes to the calls to gftp_set_global_option() | |
2405 | |
2406 * src/gtk/options_dialog.c - added gftp_gtk_setup_bookmark_options() | |
2407 to display all the editable options for this bookmark | |
2408 | |
431 | 2409 2003-7-11 Brian Masney <masneyb@gftp.org> |
222 | 2410 * lib/protocols.c (gftp_calc_kbs) - only call gettimeofday() at the |
2411 end only if we are throttling this connection | |
2412 | |
2413 * lib/cache.c lib/options.h docs/sample.gftp/gftprc - added cache_ttl | |
2414 option to determine the amount of time that cache entries will stay | |
2415 around | |
2416 | |
2417 * docs/gftp.xml docs/legal.xml docs/figures/* - documentation from | |
2418 Alexander Kirillov <kirillov@math.sunysb.edu> | |
2419 | |
2420 * docs/website - files for generating my main website. They aren't | |
2421 pretty, but hey it works. I'm mainly putting these in CVS just for | |
2422 backup purposes. | |
2423 | |
431 | 2424 2003-7-10 Brian Masney <masneyb@gftp.org> |
220 | 2425 * lib/misc.c (insert_commas) - improved calculating # of digits |
2426 in number. (Not sure if this worked properly for long long's, aka | |
2427 off_t when _LARGEFILE_SOURCE is defined) | |
2428 | |
2429 * src/gtk/transfer.c (update_file_status) - changed type of remaining | |
2430 field to be off_t. (hopefully fixes >2.1GB problem) | |
2431 | |
2432 * lib/protocols.c (gftp_calc_kbs) - improved throttling module. | |
2433 | |
431 | 2434 2003-7-9 Brian Masney <masneyb@gftp.org> |
219 | 2435 * lib/sshv2.c - if we are logging in to the server, and the message |
2436 size is too big from the server, assume that an error message follows | |
2437 and log the ASCII text to the log window | |
2438 | |
2439 * src/gtk/options_dialog.c - make sure the value is set properly for | |
2440 the textcomboedt option types (the FTP proxy server type uses this) | |
2441 | |
2442 * lib/rfc2068.c - HTTP proxy bug fixes. Also, moved rfc2068_connect() | |
2443 call to rfc2068_send_command() and removed it from the now unneeded | |
2444 places. Also, fix in call to HEAD command | |
2445 | |
2446 * src/text/gftp-text.c - fixed NULL pointer deference in changing | |
2447 directory | |
2448 | |
2449 * docs/sample.gftp/gftprc - enable require SSH user/pass by default | |
2450 | |
431 | 2451 2003-7-9 Brian Masney <masneyb@gftp.org> |
218 | 2452 * lib/config_file.c (gftp_write_config_file) - fix for writing out |
2453 list items to the config file. | |
2454 | |
2455 * lib/config_file.c lib/gftp.h - added gftp_free_proxy_hosts() and | |
2456 gftp_copy_proxy_hosts() | |
2457 | |
2458 * lib/protocols.c (gftp_connect_server) - look up dont_use_proxy | |
2459 instead of ext | |
2460 | |
2461 * lib/protocols.c lib/sshv2.c src/gtk/dnd.c src/gtk/menu-items.c - | |
2462 when calling g_build_path(), set the directory separator to / instead | |
2463 of G_DIR_SEPARATOR_S | |
2464 | |
2465 * src/gtk/gftp-gtk.c (toolbar_hostedit) - fixed crash | |
2466 | |
2467 * src/gtk/gftp-gtk.h - removed gotbytes from gftp_window_data | |
2468 structure | |
2469 | |
2470 * src/gtk/options_dialog.c - show proxy hosts in options dialog | |
2471 | |
2472 * docs/sample.gftp/gftprc - new default config file | |
2473 | |
431 | 2474 2003-7-7 Brian Masney <masneyb@gftp.org> |
215 | 2475 * configure.in src/gtk/Makefile.am src/text/Makefile.am - if the |
2476 OpenSSL libraries are available on the system, link them in and | |
2477 define USE_SSL. The generic SSL engine and the HTTPS protocol checks | |
2478 for this | |
2479 | |
2480 * lib/protocols.c (gftp_get_line) - small fix | |
2481 | |
2482 * lib/rfc2068.c - fixed several bugs in the handling of chunked | |
2483 messages that are spread across multiple packets (the HTTPS protocol | |
2484 unconvered all of these) | |
2485 | |
2486 * lib/sslcommon.c - several fixes and cleanups | |
2487 | |
431 | 2488 2003-7-6 Brian Masney <masneyb@gftp.org> |
213 | 2489 * lib/configure.in - check for getdtablesize() |
2490 | |
2491 * TODO - updated | |
2492 | |
431 | 2493 2003-7-6 Brian Masney <masneyb@gftp.org> |
211 | 2494 * lib/protocols.c lib/sshv2.c src/gtk/dnd.c src/gtk/menu-items.c - |
2495 instead of using g_strconcat to build the directory paths, use | |
2496 g_build_path. Fixes a bug when you was connected to a remote host, | |
2497 and you was in /, the path would show up as // | |
2498 (from Krzysztof Foltman <kfoltman@onet.pl>, slightly changed by me) | |
2499 | |
431 | 2500 2003-7-6 Brian Masney <masneyb@gftp.org> |
210 | 2501 * lib/pty.c lib/gftp.h - added gftp_exec_with_new_pty() and |
2502 gftp_exec_without_new_pty() | |
2503 | |
2504 * lib/sshv2.c - use the 2 new functions above | |
2505 | |
2506 * lib/pty.c lib/gftp.h - split open_ptys() to _gftp_ptym_open() | |
2507 and _gftp_ptys_open() | |
2508 | |
2509 * lib/sslcommon.c - don't do thread setup if we are compiling against | |
2510 glib 1.2. I do not want to link against the pthread library because | |
2511 that would make the text port dependant on pthreads being installed on | |
2512 the box | |
2513 | |
431 | 2514 2003-7-5 Brian Masney <masneyb@gftp.org> |
209 | 2515 * lib/protocols.c (gftp_get_line) - fixed bug where the read function |
2516 was being called one extra time after the end of file was reached | |
207 | 2517 |
209 | 2518 * lib/rfc2068.c - fixes for chunked file transfers. All known issues with the |
2519 HTTP protocol should be (hopefully) fixed now | |
2520 | |
2521 * lib/httpcommon.h (struct rfc2068_params_tag) - added eof variable | |
207 | 2522 |
431 | 2523 2003-7-1 Brian Masney <masneyb@gftp.org> |
207 | 2524 * lib/misc.c (base64_encode) - alphabet fix (+ wasn't a valid |
2525 character, it should have been /) (thanks to Holger Kiehl | |
2526 <Holger.Kiehl@dwd.de> for pointing this out) | |
2527 | |
2528 * lib/config_file.c lib/gftp.h - added copy function for options | |
2529 variables. The functions gftp_config_file_copy_text(), | |
2530 gftp_config_file_copy_ptr_contents() and gftp_config_file_copy_color() | |
2531 were added | |
2532 | |
2533 * lib/protocols.c - make sure the remote_charsets string is restored | |
2534 properly after it is used | |
2535 | |
2536 * src/gtk/bookmarks.c - remove memory leak comments, these are fixed | |
2537 now | |
2538 | |
2539 * src/gtk/transfer.c - removed start_file_transfers variable | |
2540 | |
2541 * src/gtk/misc-gtk.c src/gtk/gftp-gtk.h lib/misc.c lib/gftp.h - moved | |
2542 get_next_selection() to lib | |
2543 | |
2544 * acinclude.h (AC_TYPE_SOCKLEN_T) - AC_DEFINE fix (from | |
2545 Nathan Robertson <nathanr@nathanr.net>) | |
2546 | |
431 | 2547 2003-6-25 Brian Masney <masneyb@gftp.org> |
204 | 2548 * lib/misc.c (expand_path) - small improvements |
2549 | |
2550 * lib/rfc2068.c src/text/gftp-gtk.c - fixes for path handling, namely | |
2551 when changing directories to the parent (..) | |
2552 | |
431 | 2553 2003-6-25 Brian Masney <masneyb@gftp.org> |
203 | 2554 * lib/misc.c - fix warning if DMALLOC is disabled |
2555 | |
2556 * src/text/gftp-text.c - don't attempt to expand the local directory | |
2557 | |
2558 * TODO - updated | |
2559 | |
431 | 2560 2003-6-25 Brian Masney <masneyb@gftp.org> |
202 | 2561 * acinclude.m4 - added AC_TYPE_SOCKLEN_T. Thanks to |
2562 Nathan Robertson <nathanr@nathanr.net> for pointing this out | |
2563 | |
2564 * configure.in - call AC_TYPE_SOCKLEN_T. Updates to AC_OUTPUT | |
2565 | |
2566 * lib/gftp.h - remove check for HAVE_SOCKLEN_T | |
2567 | |
2568 * Makefile.am - formatting fixes | |
2569 | |
431 | 2570 2003-6-25 Brian Masney <masneyb@gftp.org> |
201 | 2571 * configure.in - added mk to ALL_LINGUAS |
2572 | |
2573 * lib/gftp.h - added several macros for dmalloc | |
2574 | |
2575 * lib/misc.c src/text/gftp-text.c src/gtk/gftp-gtk.c - added | |
2576 gftp_shutdown() to misc.c. This will write out the configuration | |
2577 file, clear the cache, and if dmalloc is enabled, free the memory | |
2578 that was allocated on startup | |
2579 | |
2580 * lib/config_file.c lib/gftp.h lib/misc.c lib/options.h - added | |
2581 gftp_configuration_changed parameter | |
2582 | |
2583 * lib/config_file.c lib/misc.c lib/protocols.c - added | |
2584 gftp_config_free_options() | |
2585 | |
2586 * lib/config_file.c src/gtk/bookmarks.c - added gftp_bookmarks() which | |
2587 is derived mostly from bm_close_dialog() | |
2588 | |
2589 * lib/rfc959.c - added rfc959_request_destroy(). Free the getline | |
2590 buffers in this function | |
2591 | |
2592 * src/gtk/misc-gtk.c (gftp_item_factory_translate) - remove double | |
2593 g_strdup() call | |
2594 | |
2595 * lib/config_file.c lib/gftp.h src/gtk/misc-gtk.c - moved | |
2596 get_xpm_path() to GTK+ port. No longer call it startup when reading | |
2597 the config file | |
2598 | |
431 | 2599 2003-6-24 Brian Masney <masneyb@gftp.org> |
199 | 2600 * lib/config_file.c lib/gftp.h lib/protocols.c - added backend for |
2601 overriding options on a per bookmark basis. Also added | |
2602 gftp_copy_local_options() to config_file.c | |
2603 | |
2604 * lib/gftp.h lib/misc.c src/gtk/bookmarks.c - added | |
2605 gftp_free_bookmark() to misc.c. It was taken from the function | |
2606 free_bookmark_entry_items() in bookmarks.c | |
2607 | |
2608 * lib/sslcommon.c - formatting fixes. Added thread functions (mostly | |
2609 from the OReilly SSL book) | |
2610 | |
431 | 2611 2003-6-22 Brian Masney <masneyb@gftp.org> |
198 | 2612 * lib/config_file.c lib/gftp.h - renamed parse_args to |
2613 gftp_config_parse_args() and removed the static declaration | |
2614 | |
2615 * lib/protocols.c (gftp_request_destroy) - fixed memory problem with | |
2616 the new local configuration interface | |
2617 | |
2618 * src/gtk/gftp-gtk.c - added gftp_gtk_config_(read|write)_color(). | |
2619 I am overriding the read and write functions for | |
2620 gftp_option_type_color to be these functions. This is so that I can | |
2621 use a GdkColor structure instead of a gftp_color structure | |
2622 | |
2623 * src/gtk/misc-gtk.c - when destroying the dialogs, set the pointers | |
2624 to NULL before we call the callback functions. This is to make sure | |
2625 that they aren't being used in the callbacks | |
2626 | |
2627 * TODO - updated | |
2628 | |
431 | 2629 2003-6-19 Brian Masney <masneyb@gftp.org> |
195 | 2630 * autogen.sh - updated to hopefully make it more portable across |
2631 various systems | |
2632 | |
2633 * lib/rfc959.c - change variable type of data_addr_len from size_t | |
2634 to socklen_t (fixed warnings on 64 bit machines) | |
2635 | |
2636 * src/gtk/chmod_dialog.c src/gtk/gftp-gtk.c src/gtk/menu-items.c | |
2637 src/gtk/misc-gtk.c src/gtk/mkdir_dialog.c src/gtk/options_dialog.c | |
2638 src/gtk/rename_dialog.c src/gtk/transfer.c - rather than casting | |
2639 from integer to pointer and vice versa, use GINT_TO_POINTER and | |
2640 GPOINTER_TO_INT. These macros do the exact same thing and I'm | |
2641 still getting compiler warnings on Debian Sparc64 with -m64, but at | |
2642 least I'll be able to fix the define in glib and then these warnings | |
2643 will be fixed then | |
2644 | |
431 | 2645 2003-6-18 Brian Masney <masneyb@gftp.org> |
191 | 2646 * lib/protocols.c - send right parameters to the logging function |
2647 (from Nam SungHyun <namsh@kldp.org>) | |
2648 | |
431 | 2649 2003-6-17 Brian Masney <masneyb@gftp.org> |
190 | 2650 * src/gtk/misc-gtk.c (ftp_log) - remote charset fixes for when the log |
2651 message is generated inside a child thread | |
2652 | |
2653 * lib/cache.c - don't complain about not being able to open index.db | |
2654 | |
431 | 2655 2003-6-16 Brian Masney <masneyb@gftp.org> |
188 | 2656 * lib/protocols.c (gftp_string_to_utf8) - return if request is NULL |
2657 | |
187 | 2658 * lib/protocols.c - run g_iconv_close() in gftp_disconnect() instead |
2659 of gftp_end_transfer() | |
2660 | |
186 | 2661 * lib/gftp.h src/text/gftp-text.c src/gtk/misc-gtk.c - changed 2nd |
2662 parameter of logging function to be a request structure, instead of | |
2663 request->user_data. In the logging functions, if the string isn't in | |
2664 UTF-8, convert it with gftp_string_to_utf8() | |
2665 | |
2666 * lib/bookmark.c lib/cache.c lib/gftp.h lib/https.c lib/local.c | |
2667 lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/sshv2.c lib/sslcommon.c | |
2668 src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/gftp-gtk.h | |
2669 src/gtk/menu-items.c src/gtk/misc-gtk.c src/gtk/mkdir_dialog.c | |
2670 src/gtk/rename_dialog.c src/gtk/transfer.c src/text/gftp-text.c | |
2671 src/gtk/gftp-gtk.h src/text/gftp-text.h - pass request structure | |
2672 to logging function instead of request->user_data | |
2673 | |
185 | 2674 * lib/protocols.c (_gftp_get_next_charset) - set the separator for |
2675 remote charsets to be a comma | |
2676 | |
2677 * lib/options.h - updated description of remote charsets | |
2678 | |
184 | 2679 * lib/gftp.h lib/misc.c lib/options.h lib/protocols.c |
2680 src/gtk/misc-gtk.c - added remote_charsets option. Whenever a file is | |
2681 read in that is not in UTF-8, it will first attempt to convert it from | |
2682 the local charset, and if that fails, it will try each of the locales | |
2683 in this list. I have no idea if this even works, so if someone can test | |
2684 this, please let me know. | |
2685 | |
431 | 2686 2003-6-15 Brian Masney <masneyb@gftp.org> |
182 | 2687 * lib/cache.c lib/gftp.h - added gftp_generate_cache_description(). |
2688 | |
2689 * lib/cache.c lib/gftp.h src/text/gftp-text.c src/gtk/delete-dialog.c | |
2690 src/gtk/menu-items.c src/gtk/misc-gtk.c src/gtk/mkdir-dialog.c - Added | |
2691 description parameter to gftp_delete_cache_entry(). | |
2692 | |
2693 * lib/protocols.c lib/gftp.h - added gftp_fd_open(). It will call | |
2694 open() and then set the socket option close on exec | |
2695 | |
2696 * lib/cache.c lib/local.c lib/misc.c - use gftp_fd_open() instead of | |
2697 open() | |
2698 | |
2699 * lib/rfc959.c lib/protocols.c - on newly created sockets, make sure | |
2700 the close on exec socket option is set | |
2701 | |
2702 * lib/options.h src/text/gftp-text.c src/gtk/transfer.c - added | |
2703 preserve_permissions option | |
2704 | |
2705 * lib/protocols.c (gftp_parse_url) - allow an @ to be in the username | |
2706 | |
2707 * src/text/gftp-text.c - after transfering a file, honor | |
2708 preserve_permissions if it is set | |
2709 | |
2710 * src/gtk/delete-dialog.c - improvments to clearing the expired cache | |
2711 entries | |
2712 | |
431 | 2713 2003-6-14 Brian Masney <masneyb@gftp.org> |
179 | 2714 * lib/cache.c (gftp_delete_cache_entry) - fix for restoring newlines |
2715 | |
2716 * lib/gftp.h lib/protocols.c - added EOF flag for gftp_get_line() | |
2717 | |
2718 * lib/gftp.h lib/pty.c - added get_pty_impl() function for each PTY | |
2719 type | |
2720 | |
2721 * src/text/gftp-text.c - after removing files, clear the cache for | |
2722 that directory | |
2723 | |
431 | 2724 2003-6-11 Brian Masney <masneyb@gftp.org> |
178 | 2725 * lib/configure.in lib/gftp.h - portability fix for openpty(). (from |
2726 Nathan Robertson <nathanr@nathanr.net>, which he took from | |
2727 http://mail.python.org/pipermail/patches/2000-June/000953.html) | |
2728 | |
2729 * lib/pty.h - found out about #elif preprocessor macro ;) | |
2730 | |
431 | 2731 2003-6-9 Brian Masney <masneyb@gftp.org> |
177 | 2732 * lib/bookmark.c lib/gftp.h lib/local.c lib/protocols.c lib/rfc2068.c |
2733 lib/rfc959.c lib/sshv2.c - make return value of *_set_config_options() | |
2734 be an integer | |
2735 | |
2736 * lib/rfc2068.c lib/rfc959.c - return the error code of | |
2737 gftp_connect_server() if there was a connection problem | |
2738 | |
431 | 2739 2003-6-8 Brian Masney <masneyb@gftp.org> |
177 | 2740 * lib/rfc959.c lib/rfc2068.c - if gftp_connect_server() returns an |
2741 error, make sure the exact error code is returned | |
2742 | |
431 | 2743 2003-6-8 Brian Masney <masneyb@gftp.org> |
175 | 2744 * lib/sslcommon.c - added entropy_len option. Added |
2745 gftp_ssl_get_index(). Use SSL_get_ex_data() so that we can get the | |
2746 request structure, and error messages can be logged properly. Changed | |
2747 the verify depth from 4 to 9 | |
2748 | |
431 | 2749 2003-6-8 Brian Masney <masneyb@gftp.org> |
174 | 2750 * lib/gftp.h lib/sslcommon.c - added ssl_register_module(). This |
2751 function registers the configuration variables for the SSL engine. | |
2752 Right now, the only variable is the entropy source | |
2753 | |
2754 * lib/https.c (https_register_module) - call ssl_register_module(). | |
2755 Multiple protocols will be able to call this function, it will only | |
2756 be initialized once | |
2757 | |
431 | 2758 2003-6-8 Brian Masney <masneyb@gftp.org> |
173 | 2759 * lib/bookmark.c lib/gftp.h lib/https.c lib/local.c lib/misc.c |
2760 lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/sshv2.c | |
2761 src/text/gftp-text.c src/gtk/gftp-gtk.c - made the init function for | |
2762 all the protocols return an integer instead of nothing. If there was an | |
2763 error setting up the protocol, GFTP_EFATAL should be returned and the | |
2764 connection should be aborted. The HTTPS protocol uses this to return if | |
2765 SSL support was not compiled in | |
2766 | |
2767 * lib/protocols.c src/text/gftp-text.c src/gtk/dnd.c | |
2768 src/gtk/gftp-gtk.c src/gtk/menu-items.c - have gftp_parse_url() log the | |
2769 error messages to the user. This shouldn't have been done in the | |
2770 individual ports | |
2771 | |
2772 * lib/https.c - only initialize the SSL engine the first time a SSL | |
2773 connection is made. | |
2774 | |
431 | 2775 2003-6-8 Brian Masney <masneyb@gftp.org> |
171 | 2776 * aclocal.m4 - removed, this file is automatically generated |
2777 | |
2778 * autogen.sh - just call automake and aclocal, instead of automake-1.4 | |
2779 and aclocal-1.4 (from Nathan Robertson <nathanr@nathanr.net>) | |
2780 | |
431 | 2781 2003-6-8 Brian Masney <masneyb@gftp.org> |
171 | 2782 * lib/https.c lib/options.h lib/sslcommon.c - make sure USE_SSL is |
2783 defined before using any SSL functions | |
2784 | |
2785 * lib/gftp.h lib/protocols.c lib/rfc2068.c lib/sshv2.c lib/sslcommon.c | |
2786 lib/rfc959.c - make sure we use request->datafd for the connection. Removed | |
2787 sockfd from gftp_request structure | |
2788 | |
2789 * lib/rfc959.c - add data_connection to rfc959_parms structure. Use | |
2790 this for the FTP data connection | |
2791 | |
2792 * src/text/gftp-text.c - fixes for username/password prompt | |
2793 | |
2794 * src/gtk/misc-gtk.c src/gtk/transfer.c - s/sockfd/datafd/g | |
2795 | |
2796 * configure.in - added lib/Makefile (forgot to commit last time) | |
2797 | |
2798 * Makefile.am - added intl to SUBDIRS | |
2799 | |
431 | 2800 2003-6-8 Brian Masney <masneyb@gftp.org> |
168 | 2801 * lib/gftp.h - if USE_SSL is defined, include the OpenSSL headers. |
2802 Added read_function, write_function and post_connect function pointers | |
2803 to gftp_request structure. Added SSL object to gftp_request structure | |
2804 if USE_SSL is defined. Added protocol number and init function | |
2805 declarations for the HTTPS protocol | |
2806 | |
2807 * lib/options.h - added HTTPS to the list of supported protocols | |
2808 | |
2809 * lib/protocols.c lib/cache.c lib/rfc2068.c lib/rfc959.c lib/sshv2.c - | |
2810 renamed gftp_read(), gftp_write() and gftp_set_sockblocking() to | |
2811 gftp_fd_read(), gftp_fd_write() and gftp_fd_set_sockblocking() | |
2812 respectively | |
2813 | |
2814 * lib/bookmark.c lib/local.c | |
2815 | |
2816 * lib/misc.c lib/rfc2068.c - moved base64_encode() to misc.c | |
166 | 2817 |
168 | 2818 * lib/protocols.c - improved parsing of URLs. Rather than calling |
2819 gftp_read() or gftp_write() directly, call the read_function or | |
2820 write_function that is set in the request structure. Expanded tabs | |
2821 to spaces. Cleanup for parsing of timestamps. In | |
2822 gftp_connect_server(), if a post_connect function pointer is set, | |
2823 call it after we are connected to the server. Improvements to | |
2824 gftp_get_line (). | |
2825 | |
2826 * lib/httpcommon.h lib/rfc2068.c - moved rfc2068_params structure to | |
2827 httpcommon.h. Fix for chunked file transfers, they were not handled | |
2828 at all before. Made the I/O calls a little more generic so that we can | |
2829 read from either a socket or a SSL connection. | |
2830 | |
2831 * lib/sslcommon.c - added generic SSL layer | |
2832 | |
2833 * lib/https.c - added support for the HTTPS protocol. It piggy backs | |
2834 off of the existing HTTP support and uses the generic SSL layer | |
2835 | |
2836 * src/gtk/bookmarks.c src/gtk/chmod_dialog.c src/gtk/gftp-gtk.c | |
2837 src/gtk/menu-items.c src/gtk/misc-gtk.c src/gtk/options_dialog.c | |
2838 src/gtk/view_dialog.c - set the window icon name to the gFTP <version> | |
2839 | |
2840 * configure.in - added lib back to SUBDIRS (oops) | |
2841 | |
2842 * lib/Makefile.am - added https.c, sslcommon.c and httpcommon.h | |
2843 | |
431 | 2844 2003-5-27 Brian Masney <masneyb@gftp.org> |
168 | 2845 * Makefile.am configure.in autogen.sh - build fixes |
2846 | |
2847 * src/text/gftp-text.c - if the protocol we are connecting to | |
2848 doesn't need a username/password, don't prompt the user for one | |
166 | 2849 |
431 | 2850 2003-5-22 Brian Masney <masneyb@gftp.org> |
168 | 2851 * lib/misc.c (gftp_usage) - updated usage statement |
162 | 2852 |
168 | 2853 * lib/options.h - put terminate options properly |
162 | 2854 |
431 | 2855 2003-05-06 Christian Rose <menthos@menthos.com> |
158 | 2856 |
2857 * configure.in: Added sr and sr@Latn to ALL_LINGUAS. | |
2858 | |
431 | 2859 2003-05-01 Hasbullah Bin Pit <sebol@ikhlas.com> |
154 | 2860 |
2861 * configure.in(ALL_LINGUAS): Added "ms". | |
2862 | |
431 | 2863 2003-4-27 Brian Masney <masneyb@gftp.org> |
151 | 2864 * lib/config_file.c (gftp_config_file_read_float) - use strtod instead |
2865 of strtof(). ANSI C describes strtod, and C99 describes strtof(). Some | |
2866 older systems don't have strtof() | |
2867 | |
2868 * lib/gftp.h - if HAVE_OPENPTY is defined, include pty.h. Fix for | |
2869 GFTP_GET_AI_FAMILY when request or request->hostp is NULL. Added | |
2870 free_hostp boolean to struct gftp_request | |
2871 | |
2872 * lib/misc.c src/gtk/delete_dialog.c src/gtk/transfer.c - added | |
2873 copy_local_options parameter. Add a pointer to newreq->hostp from the | |
2874 source request structure | |
2875 | |
2876 * lib/protocols.c - honor free_hostp | |
2877 | |
2878 * lib/rfc959.c - fix for IPV4/IPV6 detection | |
2879 | |
2880 * src/gtk/misc-gtk.c src/gtk/options_dialog.c - fixed compiler errors | |
2881 when compiling against GTK+ 1.2 | |
2882 | |
2883 * src/gtk/transfer.c - lookup option one_transfer instead of | |
2884 do_one_transfer_at_a_time | |
2885 | |
431 | 2886 2003-04-27 Christian Rose <menthos@menthos.com> |
149 | 2887 |
2888 * lib/rfc959.c: Fix bug #111090 by adding | |
2889 /* xgettext:no-c-format */ comment. This trivial bug prevented any | |
2890 full localization of gftp. | |
2891 | |
431 | 2892 2003-4-25 Brian Masney <masneyb@gftp.org> |
146 | 2893 * lib/rfc959.c - added IPV6 support (RFC2428). The only part of the |
2894 project that isn't IPV6 ready is the proxy comparsion functions. | |
2895 | |
2896 * lib/protocols.c - change the hints.ai_family paramater from AF_INET | |
2897 to PF_UNSPEC | |
2898 | |
2899 * lib/gftp.h lib/misc.c lib/pty.c - moved the functionality of | |
2900 pty[ms]_open() to pty.c. Combined these 2 functions into open_ptys(), | |
2901 and there is one defined for each system type (lots of #define's in | |
2902 this file!) | |
2903 | |
2904 * lib/Makefile.am po/POTFILES.in - added pty.c | |
2905 | |
2906 * lib/sshv2.c - when searching for the password prompt, omit the first | |
2907 character in case it is capitalized. Also, use the new function | |
2908 open_ptys() | |
2909 | |
2910 * configure.in - search for openpty in -lutil. Also, define | |
2911 HAVE_OPENPTY if this function is present on the system | |
2912 | |
2913 | |
431 | 2914 2003-4-23 Brian Masney <masneyb@gftp.org> |
143 | 2915 * Makefile.am - removed config.rpath from EXTRA_DIST |
2916 | |
2917 * configure.in - added 'sr' to ALL_LINGUAS. Incremented | |
2918 version to 2.0.15 (will be a little while before this is released. | |
2919 Still have lots to do) | |
2920 | |
2921 * docs/sample.gftp/gftprc - removed old unused SSH options. These were | |
2922 used by the SSH protocol I ripped out | |
2923 | |
2924 * lib/config_file.c - fix for gftp_set_request_option(). Implemented | |
2925 gftp_lookup_request_options(). Overriding of configuration options now | |
2926 works across the board :) | |
2927 | |
2928 * lib/protocols.c - extra checks for freeing memory | |
2929 | |
2930 * src/text/gftp-text.c - renamed ssh_use_sftp_subsys to the proper | |
2931 name of sshv2_use_sftp_subsys | |
2932 | |
2933 * src/gtk/transfer.c - renamed append_file_transfers option | |
2934 to the proper name of append_transfers. Also, added quick fix for | |
2935 start_file_transfers option that is still missing | |
2936 | |
2937 * debian/gftp-text.postinst - this will add add an alternative for the | |
2938 ftp command and point it to gftp-text | |
2939 | |
431 | 2940 2003-4-21 Brian Masney <masneyb@gftp.org> |
139 | 2941 * lib/gftp.h - added ui_cancel_function to struct gftp_option_type_var |
2942 | |
2943 * src/gtk/gftp-gtk.c - added custom_edit_value to struct | |
2944 gftp_textcomboedt_widget_data | |
2945 | |
2946 * src/gtk/options_dialog.c - fixups for gftp_option_type_textcomboedt. | |
2947 The value will always convert %n to \n when reading in and then do the | |
2948 opposite conversion when saving the variable. Also, added tooltips to | |
2949 the options | |
2950 | |
2951 * lib/rfc959.c - remove FIXME comment | |
2952 | |
431 | 2953 2003-4-18 Brian Masney <masneyb@gftp.org> |
136 | 2954 * lib/config_file.c lib/gftp.h - removed gftp_option_type_subtree, |
2955 gftp_option_type_table and gftp_option_type_newtable | |
2956 | |
2957 * lib/config_file.c - implemented gftp_set_request_option() | |
2958 | |
2959 * lib/gftp.h lib/config_file.c - changed declaration of | |
2960 ui_print_function in struct gftp_option_type. Also added | |
2961 ui_save_function field to this structure | |
2962 | |
2963 * lib/gftp.h added local_options_vars num_local_options_vars variables | |
2964 to gftp_request | |
2965 | |
2966 * lib/local.c (local_set_directory) - small improvements to this | |
2967 function | |
2968 | |
2969 * lib/misc.c - added gftp_copy_local_options() | |
2970 | |
2971 * lib/options.h - fix declaration of General tab | |
2972 | |
2973 * lib/protocols.c - free local options | |
2974 | |
2975 * lib/rfc2068.c - check to see if we're connecting to a FTP site via | |
2976 proxy | |
2977 | |
2978 * lib/rfc959.c lib/protocols.c - changes for CRAY directory listings | |
2979 | |
2980 * src/gtk/gftp-gtk.h - added struct gftp_options_dialog_data and | |
2981 struct gftp_textcomboedt_widget_data | |
2982 | |
2983 * src/gtk/options_dialog.c - start to use new configuration interface | |
2984 | |
2985 * src/gtk/transfer.c - remove FIXME note. This is already in | |
2986 lib/gftp.h | |
2987 | |
431 | 2988 2003-4-13 Brian Masney <masneyb@gftp.org> |
131 | 2989 * lib/config_file.c - fixed float config type |
2990 | |
2991 * lib/gftp.h lib/misc.c - added gftp_gen_ls_string() | |
2992 | |
2993 * src/gtk/menu-items.c (dosave_directory_listing) | |
2994 src/text/gftp-text.c (gftp_text_ls) - use | |
2995 gftp_gen_ls_string() | |
2996 | |
431 | 2997 2003-4-13 Brian Masney <masneyb@gftp.org> |
129 | 2998 * lib/config_file.c - implemented gftp_set_global_option() |
2999 | |
3000 * lib/gftp.h lib/misc.c - added gftp_tdata_new() | |
3001 | |
3002 * src/text/gftp-text.c src/gtk/transfer.c - use gftp_tdata_new() | |
3003 | |
3004 * src/gtk/bookmarks.c - In run_bookmark(), use gftp_parse_bookmark() | |
3005 function. Renamed all instances of gftp_bookmarks to | |
3006 gftp_bookmarks_var | |
3007 | |
3008 * src/gtk/gftp-gtk.[ch] - added global variables viewedit_processes | |
3009 and viewedit_processes_done. These used to be declared in | |
3010 lib/options.h | |
3011 | |
3012 * src/gtk/gftp-gtk.h (struct gftp_window_data) - removed sortcol and | |
3013 sortasds variables. Added prefix_col_str variable. This will either be | |
3014 local or remote | |
3015 | |
3016 * src/gtk/misc-gtk.c - removed r_gethostbyname() and r_getservbyname() | |
3017 | |
3018 * src/gtk/transfer.c - removed gftp_gtk_calc_kbs(), get_status() and | |
3019 parse_attribs(). These are in the lib/ directory now. Also, use | |
3020 g_static_mutex_*() functions from glib instead of pthread_mutex_*() | |
3021 | |
3022 * src/gtk/bookmark.c src/gtk/dnd.c src/gtk/menu-items.c | |
3023 src/gtk/transfer.c - use g_strdup() instead of g_malloc()/strcpy() | |
3024 | |
3025 * src/gtk/options_dialog.c - commented out large parts of this file. | |
3026 This file is busted at the moment | |
3027 | |
3028 * src/gtk/*.[ch] - Use new configuration interface in all source | |
3029 files. Updated copyright dates on all source files | |
3030 | |
431 | 3031 2003-4-9 Brian Masney <masneyb@gftp.org> |
126 | 3032 * lib/gftp.h lib/config_file.c - reordered config option types. Added |
3033 gftp_option_type_textcomboedt type | |
3034 | |
3035 * lib/options.h lib/rfc959.c - moved gftp_proxy_type to rfc959.c | |
3036 | |
3037 * lib/rfc959.c - added proxy_type that is | |
3038 gftp_option_type_textcomboedt. Consolidated help text into comment. | |
3039 In parse_ftp_proxy_string(), improve parsing of proxy config | |
3040 | |
431 | 3041 2003-4-8 Brian Masney <masneyb@gftp.org> |
125 | 3042 * src/text/gftp-text.c lib/misc.c - moved r_gethostbyname() and |
3043 r_getservbyname() to lib/misc.c. Now uses GMutex functions | |
3044 | |
3045 * lib/config_file.c lib/gftp.h lib/options.h - added config | |
3046 variable type textcombo. default_protocol uses this | |
3047 | |
3048 * lib/config_file.c (gftp_read_config_file) - when reading in the | |
3049 list of supported protocols, add the protocol names to the list | |
3050 associated with default_protocol. Also, don't try to have | |
3051 default_protocol fall back to FTP. The code that uses this will fall | |
3052 back properly | |
3053 | |
3054 * lib/gftp.h (struct gftp_transfer) - renamed node to user_data | |
3055 | |
3056 * lib/misc.c lib/gftp.h - moved parse_attribs() from | |
3057 src/gtk/transfer.c to misc.c. Renamed to gftp_parse_attribs() | |
3058 | |
3059 * lib/protocols.c lib/gftp.h - moved get_status() from | |
3060 src/gtk/transfer.c to protocols.c. Renamed to | |
3061 gftp_get_transfer_status(). Uses GMutex functions | |
3062 | |
3063 | |
431 | 3064 2003-4-7 Brian Masney <masneyb@gftp.org> |
125 | 3065 * src/gtk/bookmarks.c - renamed struct gftp_bookmarks to |
3066 gftp_bookmarks_var. In run_bookmark(), use gftp_parse_bookmark() | |
3067 | |
3068 * src/gtk/bookmarks.c src/gtk/dnd.c src/gtk/menu-items.c | |
3069 src/gtk/transfer.c - use g_strdup() instead of g_malloc()/strcpy() | |
3070 | |
3071 * src/gtk/dnd.c src/gtk/menu-items.c - don't use depreciated macros | |
3072 to access the request structure | |
3073 | |
3074 * src/gtk/*.c - use new gftp_lookup_global_option() and | |
3075 gftp_lookup_request_option() functions | |
3076 | |
3077 * src/gtk/gftp-gtk.h src/gtk/gftp-gtk.c - moved viewedit_processes and | |
3078 viewedit_process_done variables from lib/gftp.h and lib/options.h | |
3079 | |
3080 * src/gtk/transfer.c - removed gftp_gtk_calc_kbs(). This is now in | |
3081 lib/protocols.c. Removed Binary/Ascii conversion. This is all done in | |
3082 lib/rfc959.c | |
3083 | |
431 | 3084 2003-4-6 Brian Masney <masneyb@gftp.org> |
124 | 3085 * lib/config_file.c src/text/gftp-text.c - changed arguments of |
3086 gftp_read_config_file() and gftp_read_bookmarks() to take an argument | |
3087 to the path of the global config directory. The text/gtk+ port will | |
3088 just pass SHARE_DIR. The native MacOS X port that is in the works | |
3089 needs this (Nathan Robertson is currently working on this port) | |
3090 | |
3091 * lib/gftp.h lib/config_file.c - removed config variable type | |
3092 gftp_option_type_textarray | |
3093 | |
3094 * lib/gftp.h lib/config_file.c - removed copy_function from | |
3095 gftp_option_type_var. This is implemented with memcpy() instead | |
3096 | |
3097 * lib/rfc959.c - remember to rename all instances of firewall_* to | |
3098 ftp_proxy_* | |
3099 | |
3100 * lib/sshv2.c - improved generating the argument list for the ssh | |
3101 client | |
3102 | |
3103 * lib/sshv2.c lib/misc.c lib/gftp.h - added len argument to | |
3104 ptym_open() | |
3105 | |
3106 * lib/protocols.c lib/misc.c lib/config_file.c - use g_strdup() | |
3107 instead of g_malloc()/strcpy() | |
3108 | |
431 | 3109 2003-4-5 Brian Masney <masneyb@gftp.org> |
124 | 3110 * lib/config_file.c lib/options.h lib/gftp.h lib/rfc959.c |
3111 lib/rfc2068.c lib/ssh.c - added new internal configuration interface. | |
3112 Rather than having a global variable for each option, I have a global | |
3113 hash table (gftp_global_options_htable) that I can look up option names | |
3114 by name using gftp_lookup_global_option(). I also an options hash | |
3115 associated with a request structure, so I will be able to call | |
3116 gftp_lookup_request_option(). I will be able to override options with | |
3117 bookmarks or while transfers are in progress very easily now. Also, all | |
3118 options no longer have to appear in config_file.c, the per protocol | |
3119 options can appear inside their own file | |
3120 | |
3121 * lib/gftp.h lib/bookmarks.c lib/local.c lib/rfc959.c lib/rfc2068.c - | |
3122 remove set_data_type and protocol name from struct gftp_request | |
3123 | |
3124 * lib/rfc959.c - renamed all firewall_* variables to ftp_proxy_* in | |
3125 the config file | |
3126 | |
3127 * lib/gftp.h lib/protocols.c lib/rfc959.c - renamed all GFTP_TYPE_* | |
3128 vars to GFTP_DIRTYPE_* | |
3129 | |
3130 * lib/gftp.h - removed ascii field and renamed the node pointer to | |
3131 user_data in struct gftp_file. In gftp_request, removed any setting | |
3132 that is now stored in the global/local hash tables. Added | |
3133 register_module() pointer that will be called whenever the protocol is | |
3134 first loaded into gftp | |
3135 | |
3136 * lib/rfc959.c src/text/gftp-text.c - moved the ascii/binary | |
3137 translation to rfc959.c. Also, moved any instance of automatically | |
3138 setting the data type to rfc959.c as well. | |
3139 | |
3140 * lib/misc.c lib/sshv2.c - moved all ssh functions from misc.c to | |
3141 sshv2.c. I had these origionally in misc.c because I used to have 2 | |
3142 different SSH protocols | |
3143 | |
3144 * lib/protocols.c src/text/gftp-text.c - added gftp_calc_kbs() to | |
3145 = protocols.c. This no longer needs to be in the different ports | |
3146 | |
3147 * src/text/gftp-text.c - read/write options based on new configuration | |
3148 interface | |
3149 | |
3150 * Use new configuration interface in all source files | |
3151 | |
3152 * Updated copyright dates on all source files | |
3153 | |
3154 * Note: GTK+ port is completely broken at the moment. I'll upload | |
3155 those changes whenever I get them done | |
3156 | |
431 | 3157 2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com> |
121
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
3158 |
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
3159 * configure.in: Added "pt" to ALL_LINGUAS. |
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
3160 |
431 | 3161 2003-03-04 Yuriy Syrota <rasta renome.rovno.ua> |
116 | 3162 |
3163 * configure.in: Added Ukrainian (uk) to ALL_LINGUAS | |
3164 | |
431 | 3165 2003-2-25 Brian Masney <masneyb@gftp.org> |
115 | 3166 * src/gtk/gftp-gtk.c - use gtk_container_add() instead of |
3167 gtk_scrolled_window_add_with_viewport() | |
3168 (from Kang Jeong-Hee <Keizi@mail.co.kr>) | |
3169 | |
431 | 3170 2003-2-23 Brian Masney <masneyb@gftp.org> |
114 | 3171 * lib/cache.c - added function gftp_parse_cache_entry(). Save |
3172 request->server_type (output of SYST in FTP command) to the directory | |
3173 entry | |
3174 | |
3175 * lib/rfc959.c (rfc959_syst) - fix to parse the output correctly | |
3176 | |
3177 * src/{text,gtk}/Makefile.am - remove @LIBINTL@. The gettext.m4 | |
3178 macro should automatically add this to the LIBS variable | |
3179 | |
113 | 3180 * acinclude.m4 - put largefile.m4 in here |
3181 | |
431 | 3182 2003-02-21 Pablo Saratxaga <pablo@mandrakesoft.com> |
110 | 3183 * configure.in: Added Catalan (ca) to ALL_LINGUAS |
3184 | |
431 | 3185 2003-2-17 Brian Masney <masneyb@gftp.org> |
107 | 3186 * lib/protocols.c lib/rfc959.c - added VMS directory listing support |
3187 | |
3188 * lib/config_file.c lib/protocols.c - extra checks when stripping off | |
3189 carriage returns and linefeeds | |
3190 | |
431 | 3191 2003-2-9 Brian Masney <masneyb@gftp.org> |
105 | 3192 * lib/protocols.c (parse_time) - parse more time formats. Better |
3193 error checking. If there was an error parsing this time, | |
3194 skip ahead to the next token | |
3195 | |
3196 * lib/rfc2068.c - this was completely broken. This was broken whenever | |
3197 I did the conversion over to use the gftp_get_line() function. | |
3198 | |
3199 * lib/rfc959.c - use g_strdup instead of g_malloc/strcpy | |
3200 | |
431 | 3201 2003-2-6 Brian Masney <masneyb@gftp.org> |
102 | 3202 * lib/gftp.h lib/protocols.c lib/rfc2068.c - put in new |
3203 parse_time() function that should work across all locales. | |
3204 It uses strptime() internally. | |
3205 | |
3206 * lib/misc.c - remove note from close statement | |
3207 | |
101 | 3208 * lib/config_file.c lib/gftp.h lib/options.h - remove ssh1_sftp_path |
3209 option | |
3210 | |
431 | 3211 2003-02-03 Daniel Yacob <locales@geez.org> |
96 | 3212 * configure.ac: Added "am" (Amharic) to ALL_LINGUAS. |
3213 | |
431 | 3214 2003-1-21 Brian Masney <masneyb@gftp.org> |
93 | 3215 * configure.in - fix for Solaris. Move the initial declaration up |
3216 in the source file | |
3217 | |
431 | 3218 2003-1-21 Brian Masney <masneyb@gftp.org> |
91 | 3219 * lib/gftp.h - added server type defines. Added server_type field to |
3220 gftp_request | |
3221 | |
3222 * lib/local.c - use S_ISDIR and S_ISLINK macros | |
3223 | |
3224 * lib/protocols.c - (gftp_parse_ls*) - use hints from server_type for | |
3225 parsing directory listing | |
3226 | |
3227 * lib/rfc959.c - added function rfc959_syst. Call this on startup | |
3228 | |
3229 * lib/protocols.c lib/rfc959.c lib/sshv2.c - pass request structure | |
3230 to gftp_parse_ls | |
3231 | |
3232 * lib/sshv2.c - set server_type to be GFTP_TYPE_UNIX | |
3233 | |
431 | 3234 2003-1-11 Brian Masney <masneyb@gftp.org> |
88 | 3235 * autogen.sh - removed --intl and --no-changelog flags to gettextize |
3236 | |
3237 * aclocal.m4 - updated | |
3238 | |
3239 * configure.in - and intl and po directories to AC_OUTPUT | |
3240 | |
3241 * cvsclean - remove more stuff | |
3242 | |
3243 * lib/bookmark.c (bookmark_parse_url) - use gftp_parse_bookmark | |
3244 function | |
3245 | |
3246 * lib/cache.c - remove gftp_cache_get_url_prefix(). Use | |
3247 request->url_prefix instead | |
3248 | |
3249 * lib/config_file.c - use proper exit codes. Also complain if the | |
3250 default protocol specified in the config file is invalid | |
3251 | |
3252 * lib/gftp.h lib/local.c lib/protocols.c - removed isblock, ischar, | |
3253 issocket and isfifo in struct gftp_file (not used anymore) | |
3254 | |
3255 * lib/gftp.h lib/misc.c - removed file_countlf (not used anymore) | |
3256 | |
3257 * lib/local.c lib/misc.c lib/protocols.c - various small cleanups | |
3258 | |
3259 * lib/misc.c (string_hash_function) - check key[i] instead of key[0] | |
3260 | |
3261 * lib/protocols.c lib/gftp.h - added gftp_parse_bookmark() | |
3262 | |
3263 * lib/rfc2068.c - if we are connected to a FTP url via a proxy, set | |
3264 request->url_prefix to be ftp. Added rfc2068_destroy() to free | |
3265 url_prefix whenever the structure is to be freed | |
3266 | |
86 | 3267 2002-12-29 Brian Masney <masneyb@gftp.org> |
3268 * lib/gftp.h - don't include sys/sysmacros.h | |
3269 | |
3270 * src/gtk/transfer.c - more GFTP_EFATAL checks | |
3271 | |
84 | 3272 2002-12-29 Brian Masney <masneyb@gftp.org> |
3273 * lib/ssh.c lib/config_file.c lib/Makefile.am lib/gftp.h lib/options.h - | |
3274 removed old legacy SSH protocol and option to enable this protocol | |
3275 | |
3276 * lib/gftp.h - added GFTP_ERETRYABLE and GFTP_EFATAL error codes | |
3277 | |
3278 * lib/bookmark.c lib/local.c lib/protocols.c lib/rfc959.c lib/rfc2068.c | |
3279 lib/sshv2.c - return new error codes instead of -1 or -2 | |
3280 | |
3281 * lib/misc.c (gftp_*_sort_function_ds) - changed return values | |
3282 | |
3283 * src/gtk/transfer.c (connect_thread) - if return value of | |
3284 gftp_connect() is GFTP_EFATAL, don't attempt to retry the connection | |
3285 | |
81 | 3286 2002-12-11 Brian Masney <masneyb@gftp.org> |
3287 * configure.in - fix for enable/disable gtkport, textport and gtk20 | |
3288 | |
80 | 3289 2002-12-10 Brian Masney <masneyb@gftp.org> |
3290 * configure.in - check for grantpt function | |
3291 | |
3292 * lib/misc.c (pty[ms]_open) - use Unix98 PTY allocation if grantpt() | |
3293 is on the current system | |
3294 | |
3295 * lib/gftp.h - include stropts.h if grantpt is here | |
3296 | |
3297 2002-12-5 Brian Masney <masneyb@gftp.org> | |
3298 * Release final 2.0.14 | |
3299 | |
3300 * lib/Chagelog-old - brief updates since 2.0.13 | |
3301 | |
77 | 3302 2002-12-4 Brian Masney <masneyb@gftp.org> |
3303 * lib/misc.c (ssh_start_login_sequence) - if the word WARNING appears | |
3304 in the banner, don't log into the server | |
3305 | |
3306 * docs/sample.gftp/gftprc - removed use_default_dl_types line | |
3307 | |
76 | 3308 2002-12-4 Brian Masney <masneyb@gftp.org> |
3309 * lib/protocols.c (gftp_set_data_type) - return 0 if there is no | |
3310 protocol specific set_data_type function | |
3311 | |
3312 * src/gtk/transfer.c (gftp_gtk_transfer_files) - ascii/binary automatic | |
3313 switching fixes | |
3314 | |
3315 2002-12-3 Brian Masney <masneyb@gftp.org> | |
75 | 3316 * lib/config_file.c lib/gftp.h lib/protocols.c - removed |
3317 use_default_dl_types option. This is always enabled by default now. | |
3318 | |
3319 * src/gtk/dnd.c src/gtk/transfer.c - fix for files that should be | |
3320 transferred as ascii | |
3321 | |
73 | 3322 2002-12-2 Brian Masney <masneyb@gftp.org> |
3323 * src/gtk/bookmarks.c (run_bookmark) - don't override the value of | |
3324 need_userpass for SSH transfers | |
3325 | |
3326 * ChangeLog-old - clean up list of changes from 2.0.13 to 2.0.14rc1 | |
3327 | |
3328 * README - minor fixes | |
3329 | |
3330 * configure.in - increment version to 2.0.14 | |
3331 | |
3332 * debian/copyright - change my email address and webpage | |
3333 | |
3334 * debian/rules - 2 small changes | |
3335 | |
3336 * TODO - added 1 item | |
3337 | |
72 | 3338 2002-12-2 Brian Masney <masneyb@gftp.org> |
3339 * src/gtk/misc-gtk.c (MakeEditDialog) - bind to enter and esc keys | |
3340 | |
67 | 3341 2002-11-27 Brian Masney <masneyb@gftp.org> |
3342 * Officially release 2.0.14rc1 | |
3343 | |
3344 * lib/cache.c - take out a warning message | |
3345 | |
3346 * lib/misc.c lib/protocols.c lib/gftp.h lib/gtk/dnd.c lib/transfer.c - | |
3347 add second argument (free_request) to gftp_request_destroy | |
3348 | |
3349 * lib/protocols.c (gftp_parse_url) - make sure the request structure | |
3350 is cleared before we start to modify it | |
3351 | |
3352 * src/gtk/gftp-text.c - fixed crash if you didn't enter a username | |
3353 | |
66 | 3354 2002-11-26 Brian Masney <masneyb@gftp.org> |
3355 * configure.in - change version to 2.0.14rc1 | |
3356 | |
3357 * lib/local.c - fix for uploading files. Move setting of hostname | |
3358 from local_connect() to local_init() | |
3359 | |
3360 * lib/misc.c (gftp_request) - copy only select fields over instead of | |
3361 whole structure | |
3362 | |
3363 * lib/protocols.c (gftp_request_new) - set datafd and cachefd to -1 | |
3364 | |
3365 * lib/protocols.c (gftp_set_proxy_config) - allow a NULL proxy_config | |
3366 to be passed | |
3367 | |
3368 * src/gtk/misc-gtk.c (update_window) - don't show the hostname if we | |
3369 are connected via the local protocol | |
3370 | |
3371 * src/gtk/transfer.c (create_transfer) - check to see if this protocol | |
3372 is always connected | |
3373 | |
65 | 3374 2002-11-25 Brian Masney <masneyb@gftp.org> |
3375 * lib/misc.c (ssh_start_login_sequence) - fixes for when the initial | |
3376 SSH banner is bigger than 200 characters | |
3377 | |
3378 * lib/local.c (local_connect) - set request->hostname to local | |
3379 filesystem | |
3380 | |
3381 * lib/protocols.c (gftp_parse_url) - don't include 2 slashes for | |
3382 the directory when parsing a local URL | |
3383 | |
3384 * src/gtk/chmod_dialog.c (chmod_dialog) - allow multiple files to be | |
3385 selected | |
3386 | |
3387 * src/gtk/dnd.c - small fixes | |
3388 | |
64 | 3389 2002-11-23 Brian Masney <masneyb@gftp.org> |
3390 * lib/sshv2.c - added more error checking so that the user won't get | |
3391 disconnected if they enter files or directories that don't exist | |
3392 | |
3393 2002-11-23 Brian Masney <masneyb@gftp.org> | |
63 | 3394 * lib/local.c lib/rfc959.c lib/rfc2068.c lib/ssh.c lib/sshv2.c |
3395 lib/gftp.h - added swap_socks function to gftp_request structure | |
3396 | |
3397 * lib/misc.c lib/protocols.c - move swap_socks() from misc.c to | |
3398 protocols.c (renamed to gftp_swap_socks) | |
3399 | |
3400 * src/gtk/misc-gtk.c src/gtk/transfer.c - removed fix_display() | |
3401 | |
3402 * src/gtk/delete_dialog.c src/gtk/transfer.c - changed all occurances of | |
3403 swap_socks() to gftp_swap_socks() | |
3404 | |
3405 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h - removed gftp_is_started | |
3406 variable | |
3407 | |
62 | 3408 2002-11-21 Brian Masney <masneyb@gftp.org> |
3409 * lib/local.c (local_put_file) - small fix | |
3410 | |
61 | 3411 2002-11-21 Brian Masney <masneyb@gftp.org> |
3412 * lib/misc.c lib/ssh.c lib/sshv2.c - improvements to the login | |
3413 sequence for SSH connections | |
3414 | |
3415 lib/sshv2.c - SSH transfers now works again | |
3416 | |
60 | 3417 2002-11-21 Brian Masney <masneyb@gftp.org> |
3418 * lib/protocols.c (gftp_get_next_line) - fixed several bugs | |
3419 | |
3420 * lib/cache.c - Don't do a cache lookup in gftp_new_cache_entry(). In | |
3421 gftp_find_cache_entry(), don't log an error to the user if we can't | |
3422 open up the cache file | |
3423 | |
3424 * lib/rfc959.c lib/rfc2068.c lib/protocols.c - small cache fixes | |
3425 | |
3426 * lib/cache.c lib/rfc2068.c lib/rfc959.c - pass full buffer size | |
3427 instead of buffer size - 1 to gftp_get_line | |
3428 | |
59 | 3429 2002-11-20 Brian Masney <masneyb@gftp.org> |
3430 * lib/config_file.c - don't check buf[-1] for blank newlines in | |
3431 gftp_read_config_file() and gftp_read_bookmarks_file() | |
3432 | |
3433 * lib/misc.c (string_hash_function) - Fixes if the string was less | |
3434 than 2 characters | |
3435 | |
3436 * src/gtk/transfer.c - unlock mutex before we destroy (for POSIX | |
3437 compliance) | |
3438 | |
3439 All 3 of these fixes are from Peter Osterlund <petero2@telia.com> | |
3440 | |
58 | 3441 2002-11-20 Brian Masney <masneyb@gftp.org> |
3442 * lib/protocols.c lib/gftp.h - added gftp_get_line(), gftp_read(), | |
3443 gftp_write(), gftp_writefmt(), and gftp_set_sockblocking() functions. | |
3444 Added struct_gftp_getline_buffer for gftp_get_line function() | |
3445 | |
3446 * lib/cache.c lib/gftp.h lib/local.c lib/misc.c lib/protocols.c | |
3447 lib/rfc2068.c lib/rfc959.c lib/ssh.c lib/sshv2.c - *_get_file() returns | |
3448 off_t instead of long. *_{get,put}_next_file_chunk returns ssize_t | |
3449 instead of size_t. Added *_set_config_options function to gftp_request | |
3450 structure and protocol files. Use the new network functions | |
3451 documented above. Convert usage of ANSI C IO (FILE *) to standard BSD | |
3452 sockets so that I can use timeouts properly with select | |
3453 | |
3454 * lib/misc.c (ssh_start_login_sequence) - use gftp_set_sockblock(), | |
3455 gftp_read() and gftp_write() functions | |
3456 | |
3457 * lib/protocols.c - move some protocol specific code to the protocol | |
3458 specific files | |
3459 | |
3460 * lib/local.c - log succesful messages to gftp_logging_misc instead | |
3461 of gftp_logging_error | |
3462 | |
3463 * lib/cache.c - log some more error conditions to the user | |
3464 | |
3465 * lib/rfc959.c - added rfc959_getcwd(). In, | |
3466 rfc959_accept_active_connection(), set set socket to blocking mode | |
3467 before calling accept() | |
3468 | |
3469 * src/text/gftk-text.c - If we get no files in gftp_text_ls(), | |
3470 return instead of segfaulting | |
3471 | |
3472 * src/gtk/gftp-gtk.c - expand the port field in the toolbar to be 45 | |
3473 pixels wide | |
3474 | |
3475 * src/text/gftp-text.c src/gtk/misc-gtk.c src/gtk/transfer.c | |
3476 src/gtk/view_dialog.c - changes for conversion of request->{sock,data} | |
3477 from ANSI C IO (FILE *) to standard BSD sockets | |
3478 | |
57 | 3479 2002-11-11 Brian Masney <masneyb@gftp.org> |
3480 * configure.in - compile GTK+ 2.0 port by default | |
3481 | |
56 | 3482 2002-11-11 Brian Masney <masneyb@gftp.org> |
3483 * src/gtk/dnd.c - fixes to DnD code | |
3484 | |
3485 * src/gtk/gftp-gtk.[ch] - added main_thread_id variable | |
3486 | |
3487 * src/gtk/misc-gtk.c (ftp_log) - don't check the user_data to see if | |
3488 we're in a child thread, instead compare the value of pthread_self() | |
3489 with main_thread_id | |
3490 | |
3491 * src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/menu-items.c | |
3492 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
3493 don't set user_data to 0x1 if we're in a child thread | |
3494 | |
3495 * lib/gftp.h src/gtk/misc-gtk.c src/text/gftp-text.c - make | |
3496 r_getservbyname() available even if HAVE_GERADDRINFO is defined | |
3497 | |
3498 * lib/misc.c (make_ssh_exec_args) - if port is zero, lookup the default | |
3499 port for the ssh service | |
3500 | |
3501 * lib/protocols.c (gftp_connect_server) - if the port is zero, store | |
3502 the default port for that protocol there | |
3503 | |
3504 * src/gtk/transfer.c - added function update_window_transfer_bytes(). | |
3505 Be able to update the directory download progress in window1 now | |
3506 | |
3507 * lib/config_file.c lib/misc.c lib/protocols.c lib/ssh.c lib/sshv2.c | |
3508 src/text/gftp-text.c - use g_strdup() instead of g_strconcat() where | |
3509 needed | |
3510 | |
54 | 3511 2002-11-11 Andras Timar <timar@gnome.hu> |
3512 * configure.in: added 'hu' to ALL_LINGUAS | |
3513 | |
51 | 3514 2002-11-6 Brian Masney <masneyb@gftp.org> |
3515 * src/gtk/gftp-gtk.c - connect to the select_row signal in the file | |
3516 listbox to grab the double click event | |
3517 | |
50 | 3518 2002-11-5 Brian Masney <masneyb@gftp.org> |
3519 * src/gtk/dnd.c - some code cleanups. Also, add the file transfer with | |
3520 the function add_file_transfer() | |
3521 | |
3522 * src/gtk/misc-gtk.c - remove several unneeded calls to fix_display() | |
3523 | |
3524 * src/gtk/gftp-gtk.c (list_dblclick) - add a note about the double | |
3525 click stuff not working properly | |
3526 | |
49 | 3527 2002-11-5 Brian Masney <masneyb@gftp.org> |
3528 * src/gtk/transfer.c - use stock icons in GTK+ 2.0 port | |
3529 | |
3530 2002-11-5 Brian Masney <masneyb@gftp.org> | |
3531 * lib/*.c src/gtk/*.c - removed function declarations for the static | |
3532 functions from the top of the file. I had to rearrange the order of a | |
3533 bunch of functions to avoid compiler warnings | |
3534 | |
3535 * lib/gftp.h - include sys/sysmacros.h. If major() and minor() isn't | |
3536 defined, give a compiler warning and define our own | |
3537 | |
3538 * lib/local.c (local_get_next_file) - if this file is a device, store | |
3539 the major/minor number in the file size | |
3540 | |
3541 * src/gtk/misc-gtk.c (add_file_listbox) - if this file is a device, | |
3542 use the major() and minor() macros to display the major and minor number | |
3543 | |
47 | 3544 2002-11-5 Brian Masney <masneyb@gftp.org> |
3545 * lib/cache.c lib/gftp.h - added second argument ignore_directory to | |
3546 gftp_delete_cache_entry | |
3547 | |
3548 * src/gtk/menu-items.c (disconnect) - when disconnecting from the | |
3549 remote site, clear all cache entries for that site | |
3550 | |
3551 * src/gtk/delete_dialog.c src/gtk/misc-gtk.c src/gtk/mkdir_dialog.c - | |
3552 pass a 0 as second argument to gftp_delete_cache_entry | |
3553 | |
46 | 3554 2002-10-31 Brian Masney <masneyb@gftp.org> |
3555 * lib/protocols.c (gftp_get_next_file) - don't use g_filename_to_utf8. | |
3556 If g_locale_to_utf8 fails, print out a warning to the user on the | |
3557 console | |
3558 | |
45 | 3559 2002-10-31 Brian Masney <masneyb@gftp.org> |
3560 * src/gtk/*.[ch] - don't check for gtk+ version based on the minor | |
3561 version. May cause problems later on. | |
3562 | |
3563 * lib/protocols.c src/gtk/bookmarks.c src/gtk/misc-gtk.c - use UTF8 | |
3564 functions for user data when using glib 2.0 | |
3565 | |
44 | 3566 2002-10-30 Brian Masney <masneyb@gftp.org> |
3567 * src/gtk/gftp-gtk.c (CreateMenus) - no longer use depreciated | |
3568 _gtk_accel_group_attach in GTK+ 2.0 port. Instead use | |
3569 gtk_window_add_accel_group for both GTK+ ports | |
3570 (from Nam SungHyun <namsh@kldp.org>) | |
3571 | |
43 | 3572 2002-10-30 Brian Masney <masneyb@gftp.org> |
3573 * src/gtk/transfer.c (getdir_thread) - set use_jmp_environment to 0 instead of 1 | |
3574 | |
3575 * src/gtk/misc-gtk.c (signal_handler) - if use_jmp_environment is 0, | |
3576 and SIGINT is received, terminate the program | |
3577 | |
42 | 3578 2002-10-29 Brian Masney <masneyb@gftp.org> |
3579 * src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/gftp-gtk.c | |
3580 src/gtk/gftp-gtk.h src/gtk/menu-items.c src/gtk/misc-gtk.c | |
3581 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
3582 improved and simplified signal handling code | |
3583 | |
41 | 3584 2002-10-29 Brian Masney <masneyb@gftp.org> |
3585 * lib/config_file.c lib/gftp.h lib/options.h src/gtk/menu-items.c | |
3586 src/gtk/view_dialog.c - removed tmp_directory variable. Instead use | |
3587 g_get_tmp_dir () | |
3588 | |
3589 * lib/gftp.h (struct gftp_request) - added int cancel : 1 | |
3590 | |
3591 * lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/ssh.c | |
3592 lib/sshv2.c - check for interrupted signal calls | |
3593 | |
3594 * lib/protocols.c - added gftp_fgets() and gftp_fwrite() functions | |
3595 | |
3596 * src/gtk/delete_dialog.c src/gtk/misc-gtk.c src/gtk/transfer.c - use | |
3597 g_main_context_iteration in GTK+ 2.0 port | |
3598 | |
3599 * src/gtk/misc-gtk.c - use g_object_unref instead of gdk_drawable_unref | |
3600 in GTK+ 2.0 port | |
3601 | |
40 | 3602 2002-10-17 Brian Masney <masneyb@gftp.org> |
3603 * lib/protocols.c - add gftp_abort_transfer function. Also, in | |
3604 gftp_transfer_file, when we do a gftp_put_file, if that fails, | |
3605 try to abort the transfer. | |
3606 | |
3607 * lib/rfc959.c - add rfc959_abort_transfer function | |
3608 | |
3609 * lib/rfc2068.c, lib/local.c - point abort_transfer pointer to | |
3610 rfc2068_end_transfer and local_end_transfer respectively | |
3611 | |
3612 * lib/ssh.c, lib/sshv2.c - add FIXME to implement abort function | |
3613 | |
3614 * src/gtk/transfer.c - when we stop a transfer, try to abort it | |
3615 first. If that fails, disconnect from the site completely | |
3616 | |
39 | 3617 2002-10-15 Brian Masney <masneyb@gftp.org> |
3618 * lib/config_file.c - enable combo in GTK port for Proxy server type | |
3619 | |
3620 * lib/misc.c (gftp_sort_filelist) - make sure prev pointer to first | |
3621 entry is NULL | |
3622 | |
3623 * lib/protocols.c (copy_token) - when setting the end position of | |
3624 the token to \0, after we're done set it back to the origional position | |
3625 | |
3626 * src/gtk/gftp-gtk.c, src/gtk/menu-items.c - changed g_list_first (list) | |
3627 to just list | |
3628 | |
37 | 3629 2002-10-13 Brian Masney <masneyb@gftp.org> |
3630 * lib/gftp.h (struct gftp_config_vars_tag) - remove shown flag and | |
3631 added ports_shown flag. Added GFTP_PORTS_TEXT, GFTP_PORTS_GTK, | |
3632 and GFTP_PORTS_ALL flags | |
3633 | |
3634 * lib/config_file.c - update to use new fields. | |
3635 | |
3636 * lib/config_file.c, lib/options.h, lib/gftp.h - added new global | |
3637 options: local_sortcol, local_sortasds, remote_sortcol, remote_sortasds | |
3638 | |
3639 * src/gtk/gftp-gtk.c - sort based on parameters above. Also, if a url | |
3640 was given on the command line, don't connect to it until the local side | |
3641 has been setup | |
3642 | |
3643 * src/gtk/options_dialog.c - only show variables that have GFTP_PORT_GTK | |
3644 set | |
3645 | |
3646 * src/text/gftp-text.c - add help screen for set command. Added command | |
3647 clear cache. Sort the filelist based on the configuration options. | |
3648 | |
3649 * configure.in - update to version 2.0.14 | |
3650 | |
3651 * cvsclean - clean up the Makefile.am file better | |
3652 | |
36 | 3653 2002-10-07 Brian Masney <masneyb@gftp.org> |
3654 * lib/local.c - fixed file uploads | |
3655 | |
3656 * lib/rfc959.c - fixed crash if you uploaded/downloaded a file that | |
3657 you didn't have permission to | |
3658 | |
3659 * src/gtk/transfer.c - display fixes for hostname | |
3660 | |
3661 * autogen.sh - pass -c to automake | |
3662 | |
34 | 3663 2002-10-07 Brian Masney <masneyb@gftp.org> |
3664 * docs/sample.gftp/gftp-mini-logo.xpm - added mini gFTP logo file | |
3665 from Debian. This can be used as a menu icon. | |
3666 | |
33 | 3667 2002-10-06 Brian Masney <masneyb@gftp.org> |
3668 * src/gtk/delete_dialog.c, src/gtk/gftp-gtk.c, src/gtk/misc-gtk.c, | |
3669 src/gtk/transfer.c - Fixed dead-locks with GDK_THREADS_{ENTER,LEAVE} | |
3670 | |
3671 * configure.in, src/gtk/Makefile.am - Use GTHREAD_LIBS | |
3672 | |
3673 2002-10-03 Brian Masney <masneyb@gftp.org> | |
3674 * Makefile.am - remove intl and m4 directory from subdirs. autogen.sh | |
3675 will automagically add these for me. | |
3676 | |
3677 * autogen.sh - remove check for libtool | |
3678 | |
3679 * configure.in - link in gthread | |
3680 | |
3681 * cvsclean - added this script | |
3682 | |
843 | 3683 * *.[ch] - added $Id: ChangeLog,v 1.493 2006/11/03 02:35:46 masneyb Exp $ tags |
33 | 3684 |
3685 * debian/* - updated files from Debian maintainer | |
3686 | |
32 | 3687 2002-10-03 Brian Masney <masneyb@gftp.org> |
3688 * src/gtk/gftp-gtk.c - call g_thread_init (NULL) | |
3689 | |
3690 * src/gtk/delete_dialog.c, src/gtk/misc-gtk.c, src/gtk/transfer.c - | |
3691 call gdk_threads_enter() and gdk_threads_leave() | |
3692 | |
28 | 3693 2002-09-24 Brian Masney <masneyb@gftp.org> |
3694 * configure.in - take [external] off of AM_GNU_GETTEXT | |
3695 | |
27 | 3696 2002-09-24 Brian Masney <masneyb@gftp.org> |
3697 * intl/ - remove this directory | |
3698 | |
26 | 3699 2002-09-24 gettextize <bug-gnu-gettext@gnu.org> |
3700 * Makefile.am (SUBDIRS): Add intl, | |
3701 (ACLOCAL_AMFLAGS): New variable. | |
3702 (EXTRA_DIST): Add config.rpath mkinstalldirs. | |
3703 * configure.in (AC_OUTPUT): Add intl/Makefile, | |
3704 | |
25 | 3705 2002-09-24 Brian Masney <masneyb@gftp.org> |
26 | 3706 * lib/config_file.c - separated saving of bookmarks from |
3707 gftp_write_config_file() to gftp_write_bookmarks_file(). Bookmarks will | |
3708 no longer be rewritten to disk every time gFTP exits | |
3709 | |
3710 * src/gtk/bookmarks.c - call gftp_write_bookmarks_file() instead of | |
3711 gftp_write_config_file() when altering a bookmark | |
3712 | |
3713 * configure.in - Fixed problem with the text port being compiled | |
3714 against glib 1.2 if we wanted it to be compiled against glib 2.0 | |
3715 instead | |
3716 | |
3717 * autogen.sh - add this build script | |
3718 | |
3719 2002-09-24 Brian Masney <masneyb@gftp.org> | |
25 | 3720 * Remove intl/ directory from CVS |
3721 | |
23 | 3722 2002-09-18 Brian Masney <masneyb@gftp.org> |
3723 * Updated French translation (from Damien Mascr? | |
3724 <damienmascre@free.fr>) | |
3725 | |
3726 * Updated Japanese translation (from Ryoichi INAGAKI | |
3727 <inagaki@ryo1.net>) | |
3728 | |
3729 2002-09-17 Brian Masney <masneyb@gftp.org> | |
3730 * src/gtk/bookmarks.c - Fixed crash that would occur if you saved the | |
26 | 3731 changes two times in the bookmark editor. Also, fixed several memory |
3732 leaks | |
23 | 3733 |
22 | 3734 2002-09-16 Brian Masney <masneyb@gftp.org> |
3735 * po/de.po - Updated German translation (from Matthias Haase | |
3736 <matthias_haase@bennewitz.com>) | |
3737 | |
3738 * po/ru.po - Updated Russian translation (from Vitaly Lipatov | |
3739 <LAV@VL3143.spb.edu>) | |
3740 | |
21 | 3741 2002-09-16 Brian Masney <masneyb@gftp.org> |
3742 * src/gtk/gftp-gtk.c, src/gtk/menu-items.c, src/gtk/misc-gtk.c - | |
3743 Fixed compile errors when compiling against GTK+ 1.2 | |
3744 | |
3745 * src/gtk/misc-gtk.c (MakeEditDialog, MakeYesNoDialog) - fixed to work | |
3746 with GTK+ 1.2 | |
3747 | |
19 | 3748 2002-09-15 Brian Masney <masneyb@gftp.org> |
3749 * lib/gftp.h (struct gftp_transfer) - changed the type of numfiles and | |
3750 numdirs from unsigned long to long. This must be a signed field. This | |
3751 is a bug I introduced a few days ago. | |
3752 | |
3753 * lib/local.c (local_put_file) - remove the + off of the ab mode to | |
3754 fdopen. This is also a bug I introduced a few days ago. | |
3755 | |
3756 * src/gtk/transfer.c (gftp_gtk_calc_kbs) - make sure that the variable | |
3757 difftime isn't a negative number when computing the KB/s | |
3758 | |
3759 * src/gtk/menu-items.c (save_directory_listing) - remove casts to | |
3760 GTK_OBJECT for the str variable | |
3761 | |
3762 * src/gtk/gftp-gtk.c - use GTK_STOCK_* icons in place of left.xpm, | |
3763 right.xpm, up.xpm, down.xpm and stop.xpm in GTK+ 2.0 port | |
3764 | |
3765 * src/gtk/bookmarks.c - show GTK_STOCK_* icons on the popup menu | |
3766 | |
3767 * src/gtk/bookmarks.c, src/gtk/chmod_dialog.c, src/gtk/menu-items.c, | |
3768 src/gtk/misc-gtk.c, src/gtk/options_dialog.c and | |
3769 src/gtk/view_dialog.c - use gtk_dialog_new_with_buttons in GTK+ 2.0 | |
3770 port to create the dialog. Also, associate gFTP icon with this dialog | |
3771 | |
3772 * src/gtk/misc-gtk.c - changed the interface of MakeEditDialog and | |
3773 MakeYesNoDialog. In the GTK+ 2.0 port, I now use stock icons in the | |
3774 dialog buttons. | |
3775 | |
3776 2002-09-11 Marius Andreiana <mandreiana@yahoo.com> | |
18
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
3777 |
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
3778 * configure.in: added 'ro' to ALL_LINGUAS |
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
3779 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3780 2002-09-08 Brian Masney <masneyb@gftp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3781 * lib/misc.c - added gftp_sort_filelist function |
1 | 3782 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3783 * src/gtk/gftp-gtk.c (sortrows) - call gftp_sort_filelist now |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3784 to do the sorting |
1 | 3785 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3786 * config.sub, install-sh, missing, mkinstalldirs - new versions from |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3787 automake 1.4 |
1 | 3788 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3789 * src/text/gftp-text.c, lib/protocols.c - more large file support |
1 | 3790 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3791 2002-09-04 Brian Masney <masneyb@gftp.org> |
19 | 3792 * lib/rfc959.c - FXP fixes (from Tobias Gruetzmacher |
3793 <tobias@portfolio16.de>) | |
1 | 3794 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3795 2002-09-03 Brian Masney <masneyb@gftp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3796 * lib/rfc2068.c - HTTP fixes when running under Solaris. Read from |
19 | 3797 request->sockfd and write to request->sockfd_write (Solaris doesn't |
3798 like it when you read/write to the same FILE structure) | |
1 | 3799 |
19 | 3800 * lib/local.c - encode major/minor numbers for a device in the file |
3801 size. This is probably still busted for other platforms | |
1 | 3802 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3803 * lib/rfc2068.c, lib/rfc959.c, lib/ssh.c, lib/sshv2.c - Sanity |
19 | 3804 checking on the fdopen() calls. Also make sure that all of them have a |
3805 + in their open mode. Doesn't affect UNIX, but it does affect Windows | |
1 | 3806 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3807 * src/gtk/menu-items.c, src/gtk/gftp-gtk.c, src/gtk/misc-gtk.c - added |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3808 function save_directory_listing. It's in the Local and Remote menus |
1 | 3809 |
19 | 3810 * src/gtk/view_dialog.c - changed log message slightly. The new string |
3811 should already be in the po files translated | |
1 | 3812 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3813 2002-08-30 Brian Masney <masneyb@gftp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3814 * lib/misc.c - don't allow passing a 0 to log10 |
1 | 3815 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3816 2002-08-30 Brian Masney <masneyb@gftp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3817 * src/gtk/gftp-gtk.c - Use stockitem for menu items in gtk+ 2.0. |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3818 Use _gtk_accel_group_attach for gtk 2.0 (removes FIXME). Only call |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3819 bind_textdomain_codeset if we're in gtk 2.0 |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3820 (all from Sung-Hyun Nam <namsh@kldp.org>) |
1 | 3821 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3822 2002-08-29 Sung-Hyun Nam <namsh@kldp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3823 * po/ko.po - language team change |
1 | 3824 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3825 2002-08-29 Sung-Hyun Nam <namsh@kldp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3826 * po/ko.po - Updated Korean translation |
1 | 3827 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3828 2002-08-29 Yanko Kaneti <yaneti@declera.com> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3829 * po/bg.po - Updated Bulgarian translation |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3830 |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3831 2002-08-23 Brian Masney <masneyb@gftp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3832 * configure.in - small build fixes |
1 | 3833 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3834 2002-08-23 Brian Masney <masneyb@gftp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3835 * lib/rfc959.c - put anonymous ftp checks in here instead of scattered |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3836 elsewhere |
1 | 3837 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3838 * src/gtk/gftp-gtk.c - call bind_textdomain_codeset in gtk+ port. |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3839 Removed anonymous FTP stuff |
1 | 3840 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3841 * lib/local.c - open files with O_LARGEFILE if _LARGEFILE_SOURCE |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3842 is defined |
1 | 3843 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3844 * lib/protocols.c - removed anonymous FTP stuff |
1 | 3845 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3846 * lib/rfc2068.c - don't check for anonymous username |
1 | 3847 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3848 * src/gtk/misc-gtk.c - translation fixes for menus |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3849 (from Owen Taylor <otaylor@redhat.com>) |
1 | 3850 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3851 2002-08-23 <baddog@cvs.gnome.org> |
19 | 3852 * configure.in - (ALL_LINGUAS): zh_CN.GB2312 -> zh_CN, zh_TW.Big5 -> |
3853 zh_TW | |
1 | 3854 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3855 2002-08-23 Abel Cheung <maddog@linux.org.hk> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3856 * zh_TW.Big5.po renamed to zh_TW.po |
1 | 3857 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3858 * zh_CN.GB2312.po renamed to zh_CN.po |
1 | 3859 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3860 * zh_TW.Big5.gmo - Removed. |
1 | 3861 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3862 * Makefile.in.in, gftp.pot - Remove generated file. |
1 | 3863 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3864 2002-08-23 <baddog@cvs.gnome.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3865 * po/.cvsignore - Shhhhhh |
1 | 3866 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3867 2002-08-14 <cneumair@cvs.gnome.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3868 * po/de.po - Fixed German translation (charset, header) |
1 | 3869 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3870 2002-08-05 Brian Masney <masneyb@gftp.org> |
19 | 3871 * lib/protocols.c - When we connect to a remote server, don't change |
3872 the hostname to the PTR record of the hostname | |
1 | 3873 |
19 | 3874 * src/gtk/transfer.c - Fixed crash if you was already transfering a |
3875 file, and you started another transfer, and if you hit cancel at the | |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3876 Overwrite/Resume/Skip dialog |
1 | 3877 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3878 * docs/sample.gftp/gftprc - put the ext= lines back in the config file |
1 | 3879 |
19 | 3880 * po/es.po - Spanish updates (from Gustavo D. Vranjes |
3881 <gvranjes@softhome.net>) | |
1 | 3882 |
19 | 3883 * po/nl.po - Dutch updates (from Myckel Habets |
3884 <myckelhabets@netscape.net>) | |
1 | 3885 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3886 2002-07-19 Brian Masney <masneyb@gftp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3887 * gFTP 2.0.13 released |
1 | 3888 |