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