Mercurial > gftp.yaz
annotate ChangeLog @ 177:aec4b4541d3a
2003-6-9 Brian Masney <masneyb@gftp.org>
* lib/bookmark.c lib/gftp.h lib/local.c lib/protocols.c lib/rfc2068.c
lib/rfc959.c lib/sshv2.c - make return value of *_set_config_options()
be an integer
* lib/rfc2068.c lib/rfc959.c - return the error code of
gftp_connect_server() if there was a connection problem
| author | masneyb |
|---|---|
| date | Tue, 10 Jun 2003 12:03:54 +0000 |
| parents | 3b168fed3fde |
| children | 8beb7bfca92b |
| rev | line source |
|---|---|
| 177 | 1 2003-6-9 Brian Masney <masneyb@gftp.org> |
| 2 * lib/bookmark.c lib/gftp.h lib/local.c lib/protocols.c lib/rfc2068.c | |
| 3 lib/rfc959.c lib/sshv2.c - make return value of *_set_config_options() | |
| 4 be an integer | |
| 5 | |
| 6 * lib/rfc2068.c lib/rfc959.c - return the error code of | |
| 7 gftp_connect_server() if there was a connection problem | |
| 8 | |
| 9 2003-6-8 Brian Masney <masneyb@gftp.org> | |
| 10 * lib/rfc959.c lib/rfc2068.c - if gftp_connect_server() returns an | |
| 11 error, make sure the exact error code is returned | |
| 12 | |
| 175 | 13 2003-6-8 Brian Masney <masneyb@gftp.org> |
| 14 * lib/sslcommon.c - added entropy_len option. Added | |
| 15 gftp_ssl_get_index(). Use SSL_get_ex_data() so that we can get the | |
| 16 request structure, and error messages can be logged properly. Changed | |
| 17 the verify depth from 4 to 9 | |
| 18 | |
| 174 | 19 2003-6-8 Brian Masney <masneyb@gftp.org> |
| 20 * lib/gftp.h lib/sslcommon.c - added ssl_register_module(). This | |
| 21 function registers the configuration variables for the SSL engine. | |
| 22 Right now, the only variable is the entropy source | |
| 23 | |
| 24 * lib/https.c (https_register_module) - call ssl_register_module(). | |
| 25 Multiple protocols will be able to call this function, it will only | |
| 26 be initialized once | |
| 27 | |
| 173 | 28 2003-6-8 Brian Masney <masneyb@gftp.org> |
| 29 * lib/bookmark.c lib/gftp.h lib/https.c lib/local.c lib/misc.c | |
| 30 lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/sshv2.c | |
| 31 src/text/gftp-text.c src/gtk/gftp-gtk.c - made the init function for | |
| 32 all the protocols return an integer instead of nothing. If there was an | |
| 33 error setting up the protocol, GFTP_EFATAL should be returned and the | |
| 34 connection should be aborted. The HTTPS protocol uses this to return if | |
| 35 SSL support was not compiled in | |
| 36 | |
| 37 * lib/protocols.c src/text/gftp-text.c src/gtk/dnd.c | |
| 38 src/gtk/gftp-gtk.c src/gtk/menu-items.c - have gftp_parse_url() log the | |
| 39 error messages to the user. This shouldn't have been done in the | |
| 40 individual ports | |
| 41 | |
| 42 * lib/https.c - only initialize the SSL engine the first time a SSL | |
| 43 connection is made. | |
| 44 | |
| 171 | 45 2003-6-8 Brian Masney <masneyb@gftp.org> |
| 46 * aclocal.m4 - removed, this file is automatically generated | |
| 47 | |
| 48 * autogen.sh - just call automake and aclocal, instead of automake-1.4 | |
| 49 and aclocal-1.4 (from Nathan Robertson <nathanr@nathanr.net>) | |
| 50 | |
| 51 2003-6-8 Brian Masney <masneyb@gftp.org> | |
| 52 * lib/https.c lib/options.h lib/sslcommon.c - make sure USE_SSL is | |
| 53 defined before using any SSL functions | |
| 54 | |
| 55 * lib/gftp.h lib/protocols.c lib/rfc2068.c lib/sshv2.c lib/sslcommon.c | |
| 56 lib/rfc959.c - make sure we use request->datafd for the connection. Removed | |
| 57 sockfd from gftp_request structure | |
| 58 | |
| 59 * lib/rfc959.c - add data_connection to rfc959_parms structure. Use | |
| 60 this for the FTP data connection | |
| 61 | |
| 62 * src/text/gftp-text.c - fixes for username/password prompt | |
| 63 | |
| 64 * src/gtk/misc-gtk.c src/gtk/transfer.c - s/sockfd/datafd/g | |
| 65 | |
| 66 * configure.in - added lib/Makefile (forgot to commit last time) | |
| 67 | |
| 68 * Makefile.am - added intl to SUBDIRS | |
| 69 | |
| 70 2003-6-8 Brian Masney <masneyb@gftp.org> | |
| 168 | 71 * lib/gftp.h - if USE_SSL is defined, include the OpenSSL headers. |
| 72 Added read_function, write_function and post_connect function pointers | |
| 73 to gftp_request structure. Added SSL object to gftp_request structure | |
| 74 if USE_SSL is defined. Added protocol number and init function | |
| 75 declarations for the HTTPS protocol | |
| 76 | |
| 77 * lib/options.h - added HTTPS to the list of supported protocols | |
| 78 | |
| 79 * lib/protocols.c lib/cache.c lib/rfc2068.c lib/rfc959.c lib/sshv2.c - | |
| 80 renamed gftp_read(), gftp_write() and gftp_set_sockblocking() to | |
| 81 gftp_fd_read(), gftp_fd_write() and gftp_fd_set_sockblocking() | |
| 82 respectively | |
| 83 | |
| 84 * lib/bookmark.c lib/local.c | |
| 85 | |
| 86 * lib/misc.c lib/rfc2068.c - moved base64_encode() to misc.c | |
| 166 | 87 |
| 168 | 88 * lib/protocols.c - improved parsing of URLs. Rather than calling |
| 89 gftp_read() or gftp_write() directly, call the read_function or | |
| 90 write_function that is set in the request structure. Expanded tabs | |
| 91 to spaces. Cleanup for parsing of timestamps. In | |
| 92 gftp_connect_server(), if a post_connect function pointer is set, | |
| 93 call it after we are connected to the server. Improvements to | |
| 94 gftp_get_line (). | |
| 95 | |
| 96 * lib/httpcommon.h lib/rfc2068.c - moved rfc2068_params structure to | |
| 97 httpcommon.h. Fix for chunked file transfers, they were not handled | |
| 98 at all before. Made the I/O calls a little more generic so that we can | |
| 99 read from either a socket or a SSL connection. | |
| 100 | |
| 101 * lib/sslcommon.c - added generic SSL layer | |
| 102 | |
| 103 * lib/https.c - added support for the HTTPS protocol. It piggy backs | |
| 104 off of the existing HTTP support and uses the generic SSL layer | |
| 105 | |
| 106 * src/gtk/bookmarks.c src/gtk/chmod_dialog.c src/gtk/gftp-gtk.c | |
| 107 src/gtk/menu-items.c src/gtk/misc-gtk.c src/gtk/options_dialog.c | |
| 108 src/gtk/view_dialog.c - set the window icon name to the gFTP <version> | |
| 109 | |
| 110 * configure.in - added lib back to SUBDIRS (oops) | |
| 111 | |
| 112 * lib/Makefile.am - added https.c, sslcommon.c and httpcommon.h | |
| 113 | |
| 114 2003-5-27 Brian Masney <masneyb@gftp.org> | |
| 115 * Makefile.am configure.in autogen.sh - build fixes | |
| 116 | |
| 117 * src/text/gftp-text.c - if the protocol we are connecting to | |
| 118 doesn't need a username/password, don't prompt the user for one | |
| 166 | 119 |
| 162 | 120 2003-5-22 Brian Masney <masneyb@gftp.org> |
| 168 | 121 * lib/misc.c (gftp_usage) - updated usage statement |
| 162 | 122 |
| 168 | 123 * lib/options.h - put terminate options properly |
| 162 | 124 |
| 158 | 125 2003-05-06 Christian Rose <menthos@menthos.com> |
| 126 | |
| 127 * configure.in: Added sr and sr@Latn to ALL_LINGUAS. | |
| 128 | |
| 154 | 129 2003-05-01 Hasbullah Bin Pit <sebol@ikhlas.com> |
| 130 | |
| 131 * configure.in(ALL_LINGUAS): Added "ms". | |
| 132 | |
| 151 | 133 2003-4-27 Brian Masney <masneyb@gftp.org> |
| 134 * lib/config_file.c (gftp_config_file_read_float) - use strtod instead | |
| 135 of strtof(). ANSI C describes strtod, and C99 describes strtof(). Some | |
| 136 older systems don't have strtof() | |
| 137 | |
| 138 * lib/gftp.h - if HAVE_OPENPTY is defined, include pty.h. Fix for | |
| 139 GFTP_GET_AI_FAMILY when request or request->hostp is NULL. Added | |
| 140 free_hostp boolean to struct gftp_request | |
| 141 | |
| 142 * lib/misc.c src/gtk/delete_dialog.c src/gtk/transfer.c - added | |
| 143 copy_local_options parameter. Add a pointer to newreq->hostp from the | |
| 144 source request structure | |
| 145 | |
| 146 * lib/protocols.c - honor free_hostp | |
| 147 | |
| 148 * lib/rfc959.c - fix for IPV4/IPV6 detection | |
| 149 | |
| 150 * src/gtk/misc-gtk.c src/gtk/options_dialog.c - fixed compiler errors | |
| 151 when compiling against GTK+ 1.2 | |
| 152 | |
| 153 * src/gtk/transfer.c - lookup option one_transfer instead of | |
| 154 do_one_transfer_at_a_time | |
| 155 | |
| 149 | 156 2003-04-27 Christian Rose <menthos@menthos.com> |
| 157 | |
| 158 * lib/rfc959.c: Fix bug #111090 by adding | |
| 159 /* xgettext:no-c-format */ comment. This trivial bug prevented any | |
| 160 full localization of gftp. | |
| 161 | |
| 146 | 162 2003-4-25 Brian Masney <masneyb@gftp.org> |
| 163 * lib/rfc959.c - added IPV6 support (RFC2428). The only part of the | |
| 164 project that isn't IPV6 ready is the proxy comparsion functions. | |
| 165 | |
| 166 * lib/protocols.c - change the hints.ai_family paramater from AF_INET | |
| 167 to PF_UNSPEC | |
| 168 | |
| 169 * lib/gftp.h lib/misc.c lib/pty.c - moved the functionality of | |
| 170 pty[ms]_open() to pty.c. Combined these 2 functions into open_ptys(), | |
| 171 and there is one defined for each system type (lots of #define's in | |
| 172 this file!) | |
| 173 | |
| 174 * lib/Makefile.am po/POTFILES.in - added pty.c | |
| 175 | |
| 176 * lib/sshv2.c - when searching for the password prompt, omit the first | |
| 177 character in case it is capitalized. Also, use the new function | |
| 178 open_ptys() | |
| 179 | |
| 180 * configure.in - search for openpty in -lutil. Also, define | |
| 181 HAVE_OPENPTY if this function is present on the system | |
| 182 | |
| 183 | |
| 143 | 184 2003-4-23 Brian Masney <masneyb@gftp.org> |
| 185 * Makefile.am - removed config.rpath from EXTRA_DIST | |
| 186 | |
| 187 * configure.in - added 'sr' to ALL_LINGUAS. Incremented | |
| 188 version to 2.0.15 (will be a little while before this is released. | |
| 189 Still have lots to do) | |
| 190 | |
| 191 * docs/sample.gftp/gftprc - removed old unused SSH options. These were | |
| 192 used by the SSH protocol I ripped out | |
| 193 | |
| 194 * lib/config_file.c - fix for gftp_set_request_option(). Implemented | |
| 195 gftp_lookup_request_options(). Overriding of configuration options now | |
| 196 works across the board :) | |
| 197 | |
| 198 * lib/protocols.c - extra checks for freeing memory | |
| 199 | |
| 200 * src/text/gftp-text.c - renamed ssh_use_sftp_subsys to the proper | |
| 201 name of sshv2_use_sftp_subsys | |
| 202 | |
| 203 * src/gtk/transfer.c - renamed append_file_transfers option | |
| 204 to the proper name of append_transfers. Also, added quick fix for | |
| 205 start_file_transfers option that is still missing | |
| 206 | |
| 207 * debian/gftp-text.postinst - this will add add an alternative for the | |
| 208 ftp command and point it to gftp-text | |
| 209 | |
| 139 | 210 2003-4-21 Brian Masney <masneyb@gftp.org> |
| 211 * lib/gftp.h - added ui_cancel_function to struct gftp_option_type_var | |
| 212 | |
| 213 * src/gtk/gftp-gtk.c - added custom_edit_value to struct | |
| 214 gftp_textcomboedt_widget_data | |
| 215 | |
| 216 * src/gtk/options_dialog.c - fixups for gftp_option_type_textcomboedt. | |
| 217 The value will always convert %n to \n when reading in and then do the | |
| 218 opposite conversion when saving the variable. Also, added tooltips to | |
| 219 the options | |
| 220 | |
| 221 * lib/rfc959.c - remove FIXME comment | |
| 222 | |
| 136 | 223 2003-4-18 Brian Masney <masneyb@gftp.org> |
| 224 * lib/config_file.c lib/gftp.h - removed gftp_option_type_subtree, | |
| 225 gftp_option_type_table and gftp_option_type_newtable | |
| 226 | |
| 227 * lib/config_file.c - implemented gftp_set_request_option() | |
| 228 | |
| 229 * lib/gftp.h lib/config_file.c - changed declaration of | |
| 230 ui_print_function in struct gftp_option_type. Also added | |
| 231 ui_save_function field to this structure | |
| 232 | |
| 233 * lib/gftp.h added local_options_vars num_local_options_vars variables | |
| 234 to gftp_request | |
| 235 | |
| 236 * lib/local.c (local_set_directory) - small improvements to this | |
| 237 function | |
| 238 | |
| 239 * lib/misc.c - added gftp_copy_local_options() | |
| 240 | |
| 241 * lib/options.h - fix declaration of General tab | |
| 242 | |
| 243 * lib/protocols.c - free local options | |
| 244 | |
| 245 * lib/rfc2068.c - check to see if we're connecting to a FTP site via | |
| 246 proxy | |
| 247 | |
| 248 * lib/rfc959.c lib/protocols.c - changes for CRAY directory listings | |
| 249 | |
| 250 * src/gtk/gftp-gtk.h - added struct gftp_options_dialog_data and | |
| 251 struct gftp_textcomboedt_widget_data | |
| 252 | |
| 253 * src/gtk/options_dialog.c - start to use new configuration interface | |
| 254 | |
| 255 * src/gtk/transfer.c - remove FIXME note. This is already in | |
| 256 lib/gftp.h | |
| 257 | |
| 131 | 258 2003-4-13 Brian Masney <masneyb@gftp.org> |
| 259 * lib/config_file.c - fixed float config type | |
| 260 | |
| 261 * lib/gftp.h lib/misc.c - added gftp_gen_ls_string() | |
| 262 | |
| 263 * src/gtk/menu-items.c (dosave_directory_listing) | |
| 264 src/text/gftp-text.c (gftp_text_ls) - use | |
| 265 gftp_gen_ls_string() | |
| 266 | |
| 129 | 267 2003-4-13 Brian Masney <masneyb@gftp.org> |
| 268 * lib/config_file.c - implemented gftp_set_global_option() | |
| 269 | |
| 270 * lib/gftp.h lib/misc.c - added gftp_tdata_new() | |
| 271 | |
| 272 * src/text/gftp-text.c src/gtk/transfer.c - use gftp_tdata_new() | |
| 273 | |
| 274 * src/gtk/bookmarks.c - In run_bookmark(), use gftp_parse_bookmark() | |
| 275 function. Renamed all instances of gftp_bookmarks to | |
| 276 gftp_bookmarks_var | |
| 277 | |
| 278 * src/gtk/gftp-gtk.[ch] - added global variables viewedit_processes | |
| 279 and viewedit_processes_done. These used to be declared in | |
| 280 lib/options.h | |
| 281 | |
| 282 * src/gtk/gftp-gtk.h (struct gftp_window_data) - removed sortcol and | |
| 283 sortasds variables. Added prefix_col_str variable. This will either be | |
| 284 local or remote | |
| 285 | |
| 286 * src/gtk/misc-gtk.c - removed r_gethostbyname() and r_getservbyname() | |
| 287 | |
| 288 * src/gtk/transfer.c - removed gftp_gtk_calc_kbs(), get_status() and | |
| 289 parse_attribs(). These are in the lib/ directory now. Also, use | |
| 290 g_static_mutex_*() functions from glib instead of pthread_mutex_*() | |
| 291 | |
| 292 * src/gtk/bookmark.c src/gtk/dnd.c src/gtk/menu-items.c | |
| 293 src/gtk/transfer.c - use g_strdup() instead of g_malloc()/strcpy() | |
| 294 | |
| 295 * src/gtk/options_dialog.c - commented out large parts of this file. | |
| 296 This file is busted at the moment | |
| 297 | |
| 298 * src/gtk/*.[ch] - Use new configuration interface in all source | |
| 299 files. Updated copyright dates on all source files | |
| 300 | |
| 126 | 301 2003-4-9 Brian Masney <masneyb@gftp.org> |
| 302 * lib/gftp.h lib/config_file.c - reordered config option types. Added | |
| 303 gftp_option_type_textcomboedt type | |
| 304 | |
| 305 * lib/options.h lib/rfc959.c - moved gftp_proxy_type to rfc959.c | |
| 306 | |
| 307 * lib/rfc959.c - added proxy_type that is | |
| 308 gftp_option_type_textcomboedt. Consolidated help text into comment. | |
| 309 In parse_ftp_proxy_string(), improve parsing of proxy config | |
| 310 | |
| 125 | 311 2003-4-8 Brian Masney <masneyb@gftp.org> |
| 312 * src/text/gftp-text.c lib/misc.c - moved r_gethostbyname() and | |
| 313 r_getservbyname() to lib/misc.c. Now uses GMutex functions | |
| 314 | |
| 315 * lib/config_file.c lib/gftp.h lib/options.h - added config | |
| 316 variable type textcombo. default_protocol uses this | |
| 317 | |
| 318 * lib/config_file.c (gftp_read_config_file) - when reading in the | |
| 319 list of supported protocols, add the protocol names to the list | |
| 320 associated with default_protocol. Also, don't try to have | |
| 321 default_protocol fall back to FTP. The code that uses this will fall | |
| 322 back properly | |
| 323 | |
| 324 * lib/gftp.h (struct gftp_transfer) - renamed node to user_data | |
| 325 | |
| 326 * lib/misc.c lib/gftp.h - moved parse_attribs() from | |
| 327 src/gtk/transfer.c to misc.c. Renamed to gftp_parse_attribs() | |
| 328 | |
| 329 * lib/protocols.c lib/gftp.h - moved get_status() from | |
| 330 src/gtk/transfer.c to protocols.c. Renamed to | |
| 331 gftp_get_transfer_status(). Uses GMutex functions | |
| 332 | |
| 333 | |
| 334 2003-4-7 Brian Masney <masneyb@gftp.org> | |
| 335 * src/gtk/bookmarks.c - renamed struct gftp_bookmarks to | |
| 336 gftp_bookmarks_var. In run_bookmark(), use gftp_parse_bookmark() | |
| 337 | |
| 338 * src/gtk/bookmarks.c src/gtk/dnd.c src/gtk/menu-items.c | |
| 339 src/gtk/transfer.c - use g_strdup() instead of g_malloc()/strcpy() | |
| 340 | |
| 341 * src/gtk/dnd.c src/gtk/menu-items.c - don't use depreciated macros | |
| 342 to access the request structure | |
| 343 | |
| 344 * src/gtk/*.c - use new gftp_lookup_global_option() and | |
| 345 gftp_lookup_request_option() functions | |
| 346 | |
| 347 * src/gtk/gftp-gtk.h src/gtk/gftp-gtk.c - moved viewedit_processes and | |
| 348 viewedit_process_done variables from lib/gftp.h and lib/options.h | |
| 349 | |
| 350 * src/gtk/transfer.c - removed gftp_gtk_calc_kbs(). This is now in | |
| 351 lib/protocols.c. Removed Binary/Ascii conversion. This is all done in | |
| 352 lib/rfc959.c | |
| 353 | |
| 124 | 354 2003-4-6 Brian Masney <masneyb@gftp.org> |
| 355 * lib/config_file.c src/text/gftp-text.c - changed arguments of | |
| 356 gftp_read_config_file() and gftp_read_bookmarks() to take an argument | |
| 357 to the path of the global config directory. The text/gtk+ port will | |
| 358 just pass SHARE_DIR. The native MacOS X port that is in the works | |
| 359 needs this (Nathan Robertson is currently working on this port) | |
| 360 | |
| 361 * lib/gftp.h lib/config_file.c - removed config variable type | |
| 362 gftp_option_type_textarray | |
| 363 | |
| 364 * lib/gftp.h lib/config_file.c - removed copy_function from | |
| 365 gftp_option_type_var. This is implemented with memcpy() instead | |
| 366 | |
| 367 * lib/rfc959.c - remember to rename all instances of firewall_* to | |
| 368 ftp_proxy_* | |
| 369 | |
| 370 * lib/sshv2.c - improved generating the argument list for the ssh | |
| 371 client | |
| 372 | |
| 373 * lib/sshv2.c lib/misc.c lib/gftp.h - added len argument to | |
| 374 ptym_open() | |
| 375 | |
| 376 * lib/protocols.c lib/misc.c lib/config_file.c - use g_strdup() | |
| 377 instead of g_malloc()/strcpy() | |
| 378 | |
| 379 2003-4-5 Brian Masney <masneyb@gftp.org> | |
| 380 * lib/config_file.c lib/options.h lib/gftp.h lib/rfc959.c | |
| 381 lib/rfc2068.c lib/ssh.c - added new internal configuration interface. | |
| 382 Rather than having a global variable for each option, I have a global | |
| 383 hash table (gftp_global_options_htable) that I can look up option names | |
| 384 by name using gftp_lookup_global_option(). I also an options hash | |
| 385 associated with a request structure, so I will be able to call | |
| 386 gftp_lookup_request_option(). I will be able to override options with | |
| 387 bookmarks or while transfers are in progress very easily now. Also, all | |
| 388 options no longer have to appear in config_file.c, the per protocol | |
| 389 options can appear inside their own file | |
| 390 | |
| 391 * lib/gftp.h lib/bookmarks.c lib/local.c lib/rfc959.c lib/rfc2068.c - | |
| 392 remove set_data_type and protocol name from struct gftp_request | |
| 393 | |
| 394 * lib/rfc959.c - renamed all firewall_* variables to ftp_proxy_* in | |
| 395 the config file | |
| 396 | |
| 397 * lib/gftp.h lib/protocols.c lib/rfc959.c - renamed all GFTP_TYPE_* | |
| 398 vars to GFTP_DIRTYPE_* | |
| 399 | |
| 400 * lib/gftp.h - removed ascii field and renamed the node pointer to | |
| 401 user_data in struct gftp_file. In gftp_request, removed any setting | |
| 402 that is now stored in the global/local hash tables. Added | |
| 403 register_module() pointer that will be called whenever the protocol is | |
| 404 first loaded into gftp | |
| 405 | |
| 406 * lib/rfc959.c src/text/gftp-text.c - moved the ascii/binary | |
| 407 translation to rfc959.c. Also, moved any instance of automatically | |
| 408 setting the data type to rfc959.c as well. | |
| 409 | |
| 410 * lib/misc.c lib/sshv2.c - moved all ssh functions from misc.c to | |
| 411 sshv2.c. I had these origionally in misc.c because I used to have 2 | |
| 412 different SSH protocols | |
| 413 | |
| 414 * lib/protocols.c src/text/gftp-text.c - added gftp_calc_kbs() to | |
| 415 = protocols.c. This no longer needs to be in the different ports | |
| 416 | |
| 417 * src/text/gftp-text.c - read/write options based on new configuration | |
| 418 interface | |
| 419 | |
| 420 * Use new configuration interface in all source files | |
| 421 | |
| 422 * Updated copyright dates on all source files | |
| 423 | |
| 424 * Note: GTK+ port is completely broken at the moment. I'll upload | |
| 425 those changes whenever I get them done | |
| 426 | |
|
121
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
427 2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com> |
|
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
428 |
|
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
429 * configure.in: Added "pt" to ALL_LINGUAS. |
|
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
430 |
| 116 | 431 2003-03-04 Yuriy Syrota <rasta renome.rovno.ua> |
| 432 | |
| 433 * configure.in: Added Ukrainian (uk) to ALL_LINGUAS | |
| 434 | |
| 115 | 435 2003-2-25 Brian Masney <masneyb@gftp.org> |
| 436 * src/gtk/gftp-gtk.c - use gtk_container_add() instead of | |
| 437 gtk_scrolled_window_add_with_viewport() | |
| 438 (from Kang Jeong-Hee <Keizi@mail.co.kr>) | |
| 439 | |
| 113 | 440 2003-2-23 Brian Masney <masneyb@gftp.org> |
| 114 | 441 * lib/cache.c - added function gftp_parse_cache_entry(). Save |
| 442 request->server_type (output of SYST in FTP command) to the directory | |
| 443 entry | |
| 444 | |
| 445 * lib/rfc959.c (rfc959_syst) - fix to parse the output correctly | |
| 446 | |
| 447 * src/{text,gtk}/Makefile.am - remove @LIBINTL@. The gettext.m4 | |
| 448 macro should automatically add this to the LIBS variable | |
| 449 | |
| 113 | 450 * acinclude.m4 - put largefile.m4 in here |
| 451 | |
| 110 | 452 2003-02-21 Pablo Saratxaga <pablo@mandrakesoft.com> |
| 453 * configure.in: Added Catalan (ca) to ALL_LINGUAS | |
| 454 | |
| 107 | 455 2003-2-17 Brian Masney <masneyb@gftp.org> |
| 456 * lib/protocols.c lib/rfc959.c - added VMS directory listing support | |
| 457 | |
| 458 * lib/config_file.c lib/protocols.c - extra checks when stripping off | |
| 459 carriage returns and linefeeds | |
| 460 | |
| 105 | 461 2003-2-9 Brian Masney <masneyb@gftp.org> |
| 462 * lib/protocols.c (parse_time) - parse more time formats. Better | |
| 463 error checking. If there was an error parsing this time, | |
| 464 skip ahead to the next token | |
| 465 | |
| 466 * lib/rfc2068.c - this was completely broken. This was broken whenever | |
| 467 I did the conversion over to use the gftp_get_line() function. | |
| 468 | |
| 469 * lib/rfc959.c - use g_strdup instead of g_malloc/strcpy | |
| 470 | |
| 101 | 471 2003-2-6 Brian Masney <masneyb@gftp.org> |
| 102 | 472 * lib/gftp.h lib/protocols.c lib/rfc2068.c - put in new |
| 473 parse_time() function that should work across all locales. | |
| 474 It uses strptime() internally. | |
| 475 | |
| 476 * lib/misc.c - remove note from close statement | |
| 477 | |
| 101 | 478 * lib/config_file.c lib/gftp.h lib/options.h - remove ssh1_sftp_path |
| 479 option | |
| 480 | |
| 96 | 481 2003-02-03 Daniel Yacob <locales@geez.org> |
| 482 * configure.ac: Added "am" (Amharic) to ALL_LINGUAS. | |
| 483 | |
| 93 | 484 2003-1-21 Brian Masney <masneyb@gftp.org> |
| 485 * configure.in - fix for Solaris. Move the initial declaration up | |
| 486 in the source file | |
| 487 | |
| 91 | 488 2003-1-21 Brian Masney <masneyb@gftp.org> |
| 489 * lib/gftp.h - added server type defines. Added server_type field to | |
| 490 gftp_request | |
| 491 | |
| 492 * lib/local.c - use S_ISDIR and S_ISLINK macros | |
| 493 | |
| 494 * lib/protocols.c - (gftp_parse_ls*) - use hints from server_type for | |
| 495 parsing directory listing | |
| 496 | |
| 497 * lib/rfc959.c - added function rfc959_syst. Call this on startup | |
| 498 | |
| 499 * lib/protocols.c lib/rfc959.c lib/sshv2.c - pass request structure | |
| 500 to gftp_parse_ls | |
| 501 | |
| 502 * lib/sshv2.c - set server_type to be GFTP_TYPE_UNIX | |
| 503 | |
| 88 | 504 2003-1-11 Brian Masney <masneyb@gftp.org> |
| 505 * autogen.sh - removed --intl and --no-changelog flags to gettextize | |
| 506 | |
| 507 * aclocal.m4 - updated | |
| 508 | |
| 509 * configure.in - and intl and po directories to AC_OUTPUT | |
| 510 | |
| 511 * cvsclean - remove more stuff | |
| 512 | |
| 513 * lib/bookmark.c (bookmark_parse_url) - use gftp_parse_bookmark | |
| 514 function | |
| 515 | |
| 516 * lib/cache.c - remove gftp_cache_get_url_prefix(). Use | |
| 517 request->url_prefix instead | |
| 518 | |
| 519 * lib/config_file.c - use proper exit codes. Also complain if the | |
| 520 default protocol specified in the config file is invalid | |
| 521 | |
| 522 * lib/gftp.h lib/local.c lib/protocols.c - removed isblock, ischar, | |
| 523 issocket and isfifo in struct gftp_file (not used anymore) | |
| 524 | |
| 525 * lib/gftp.h lib/misc.c - removed file_countlf (not used anymore) | |
| 526 | |
| 527 * lib/local.c lib/misc.c lib/protocols.c - various small cleanups | |
| 528 | |
| 529 * lib/misc.c (string_hash_function) - check key[i] instead of key[0] | |
| 530 | |
| 531 * lib/protocols.c lib/gftp.h - added gftp_parse_bookmark() | |
| 532 | |
| 533 * lib/rfc2068.c - if we are connected to a FTP url via a proxy, set | |
| 534 request->url_prefix to be ftp. Added rfc2068_destroy() to free | |
| 535 url_prefix whenever the structure is to be freed | |
| 536 | |
| 86 | 537 2002-12-29 Brian Masney <masneyb@gftp.org> |
| 538 * lib/gftp.h - don't include sys/sysmacros.h | |
| 539 | |
| 540 * src/gtk/transfer.c - more GFTP_EFATAL checks | |
| 541 | |
| 84 | 542 2002-12-29 Brian Masney <masneyb@gftp.org> |
| 543 * lib/ssh.c lib/config_file.c lib/Makefile.am lib/gftp.h lib/options.h - | |
| 544 removed old legacy SSH protocol and option to enable this protocol | |
| 545 | |
| 546 * lib/gftp.h - added GFTP_ERETRYABLE and GFTP_EFATAL error codes | |
| 547 | |
| 548 * lib/bookmark.c lib/local.c lib/protocols.c lib/rfc959.c lib/rfc2068.c | |
| 549 lib/sshv2.c - return new error codes instead of -1 or -2 | |
| 550 | |
| 551 * lib/misc.c (gftp_*_sort_function_ds) - changed return values | |
| 552 | |
| 553 * src/gtk/transfer.c (connect_thread) - if return value of | |
| 554 gftp_connect() is GFTP_EFATAL, don't attempt to retry the connection | |
| 555 | |
| 81 | 556 2002-12-11 Brian Masney <masneyb@gftp.org> |
| 557 * configure.in - fix for enable/disable gtkport, textport and gtk20 | |
| 558 | |
| 80 | 559 2002-12-10 Brian Masney <masneyb@gftp.org> |
| 560 * configure.in - check for grantpt function | |
| 561 | |
| 562 * lib/misc.c (pty[ms]_open) - use Unix98 PTY allocation if grantpt() | |
| 563 is on the current system | |
| 564 | |
| 565 * lib/gftp.h - include stropts.h if grantpt is here | |
| 566 | |
| 567 2002-12-5 Brian Masney <masneyb@gftp.org> | |
| 568 * Release final 2.0.14 | |
| 569 | |
| 570 * lib/Chagelog-old - brief updates since 2.0.13 | |
| 571 | |
| 77 | 572 2002-12-4 Brian Masney <masneyb@gftp.org> |
| 573 * lib/misc.c (ssh_start_login_sequence) - if the word WARNING appears | |
| 574 in the banner, don't log into the server | |
| 575 | |
| 576 * docs/sample.gftp/gftprc - removed use_default_dl_types line | |
| 577 | |
| 76 | 578 2002-12-4 Brian Masney <masneyb@gftp.org> |
| 579 * lib/protocols.c (gftp_set_data_type) - return 0 if there is no | |
| 580 protocol specific set_data_type function | |
| 581 | |
| 582 * src/gtk/transfer.c (gftp_gtk_transfer_files) - ascii/binary automatic | |
| 583 switching fixes | |
| 584 | |
| 585 2002-12-3 Brian Masney <masneyb@gftp.org> | |
| 75 | 586 * lib/config_file.c lib/gftp.h lib/protocols.c - removed |
| 587 use_default_dl_types option. This is always enabled by default now. | |
| 588 | |
| 589 * src/gtk/dnd.c src/gtk/transfer.c - fix for files that should be | |
| 590 transferred as ascii | |
| 591 | |
| 73 | 592 2002-12-2 Brian Masney <masneyb@gftp.org> |
| 593 * src/gtk/bookmarks.c (run_bookmark) - don't override the value of | |
| 594 need_userpass for SSH transfers | |
| 595 | |
| 596 * ChangeLog-old - clean up list of changes from 2.0.13 to 2.0.14rc1 | |
| 597 | |
| 598 * README - minor fixes | |
| 599 | |
| 600 * configure.in - increment version to 2.0.14 | |
| 601 | |
| 602 * debian/copyright - change my email address and webpage | |
| 603 | |
| 604 * debian/rules - 2 small changes | |
| 605 | |
| 606 * TODO - added 1 item | |
| 607 | |
| 72 | 608 2002-12-2 Brian Masney <masneyb@gftp.org> |
| 609 * src/gtk/misc-gtk.c (MakeEditDialog) - bind to enter and esc keys | |
| 610 | |
| 67 | 611 2002-11-27 Brian Masney <masneyb@gftp.org> |
| 612 * Officially release 2.0.14rc1 | |
| 613 | |
| 614 * lib/cache.c - take out a warning message | |
| 615 | |
| 616 * lib/misc.c lib/protocols.c lib/gftp.h lib/gtk/dnd.c lib/transfer.c - | |
| 617 add second argument (free_request) to gftp_request_destroy | |
| 618 | |
| 619 * lib/protocols.c (gftp_parse_url) - make sure the request structure | |
| 620 is cleared before we start to modify it | |
| 621 | |
| 622 * src/gtk/gftp-text.c - fixed crash if you didn't enter a username | |
| 623 | |
| 66 | 624 2002-11-26 Brian Masney <masneyb@gftp.org> |
| 625 * configure.in - change version to 2.0.14rc1 | |
| 626 | |
| 627 * lib/local.c - fix for uploading files. Move setting of hostname | |
| 628 from local_connect() to local_init() | |
| 629 | |
| 630 * lib/misc.c (gftp_request) - copy only select fields over instead of | |
| 631 whole structure | |
| 632 | |
| 633 * lib/protocols.c (gftp_request_new) - set datafd and cachefd to -1 | |
| 634 | |
| 635 * lib/protocols.c (gftp_set_proxy_config) - allow a NULL proxy_config | |
| 636 to be passed | |
| 637 | |
| 638 * src/gtk/misc-gtk.c (update_window) - don't show the hostname if we | |
| 639 are connected via the local protocol | |
| 640 | |
| 641 * src/gtk/transfer.c (create_transfer) - check to see if this protocol | |
| 642 is always connected | |
| 643 | |
| 65 | 644 2002-11-25 Brian Masney <masneyb@gftp.org> |
| 645 * lib/misc.c (ssh_start_login_sequence) - fixes for when the initial | |
| 646 SSH banner is bigger than 200 characters | |
| 647 | |
| 648 * lib/local.c (local_connect) - set request->hostname to local | |
| 649 filesystem | |
| 650 | |
| 651 * lib/protocols.c (gftp_parse_url) - don't include 2 slashes for | |
| 652 the directory when parsing a local URL | |
| 653 | |
| 654 * src/gtk/chmod_dialog.c (chmod_dialog) - allow multiple files to be | |
| 655 selected | |
| 656 | |
| 657 * src/gtk/dnd.c - small fixes | |
| 658 | |
| 64 | 659 2002-11-23 Brian Masney <masneyb@gftp.org> |
| 660 * lib/sshv2.c - added more error checking so that the user won't get | |
| 661 disconnected if they enter files or directories that don't exist | |
| 662 | |
| 663 2002-11-23 Brian Masney <masneyb@gftp.org> | |
| 63 | 664 * lib/local.c lib/rfc959.c lib/rfc2068.c lib/ssh.c lib/sshv2.c |
| 665 lib/gftp.h - added swap_socks function to gftp_request structure | |
| 666 | |
| 667 * lib/misc.c lib/protocols.c - move swap_socks() from misc.c to | |
| 668 protocols.c (renamed to gftp_swap_socks) | |
| 669 | |
| 670 * src/gtk/misc-gtk.c src/gtk/transfer.c - removed fix_display() | |
| 671 | |
| 672 * src/gtk/delete_dialog.c src/gtk/transfer.c - changed all occurances of | |
| 673 swap_socks() to gftp_swap_socks() | |
| 674 | |
| 675 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h - removed gftp_is_started | |
| 676 variable | |
| 677 | |
| 62 | 678 2002-11-21 Brian Masney <masneyb@gftp.org> |
| 679 * lib/local.c (local_put_file) - small fix | |
| 680 | |
| 61 | 681 2002-11-21 Brian Masney <masneyb@gftp.org> |
| 682 * lib/misc.c lib/ssh.c lib/sshv2.c - improvements to the login | |
| 683 sequence for SSH connections | |
| 684 | |
| 685 lib/sshv2.c - SSH transfers now works again | |
| 686 | |
| 60 | 687 2002-11-21 Brian Masney <masneyb@gftp.org> |
| 688 * lib/protocols.c (gftp_get_next_line) - fixed several bugs | |
| 689 | |
| 690 * lib/cache.c - Don't do a cache lookup in gftp_new_cache_entry(). In | |
| 691 gftp_find_cache_entry(), don't log an error to the user if we can't | |
| 692 open up the cache file | |
| 693 | |
| 694 * lib/rfc959.c lib/rfc2068.c lib/protocols.c - small cache fixes | |
| 695 | |
| 696 * lib/cache.c lib/rfc2068.c lib/rfc959.c - pass full buffer size | |
| 697 instead of buffer size - 1 to gftp_get_line | |
| 698 | |
| 59 | 699 2002-11-20 Brian Masney <masneyb@gftp.org> |
| 700 * lib/config_file.c - don't check buf[-1] for blank newlines in | |
| 701 gftp_read_config_file() and gftp_read_bookmarks_file() | |
| 702 | |
| 703 * lib/misc.c (string_hash_function) - Fixes if the string was less | |
| 704 than 2 characters | |
| 705 | |
| 706 * src/gtk/transfer.c - unlock mutex before we destroy (for POSIX | |
| 707 compliance) | |
| 708 | |
| 709 All 3 of these fixes are from Peter Osterlund <petero2@telia.com> | |
| 710 | |
| 58 | 711 2002-11-20 Brian Masney <masneyb@gftp.org> |
| 712 * lib/protocols.c lib/gftp.h - added gftp_get_line(), gftp_read(), | |
| 713 gftp_write(), gftp_writefmt(), and gftp_set_sockblocking() functions. | |
| 714 Added struct_gftp_getline_buffer for gftp_get_line function() | |
| 715 | |
| 716 * lib/cache.c lib/gftp.h lib/local.c lib/misc.c lib/protocols.c | |
| 717 lib/rfc2068.c lib/rfc959.c lib/ssh.c lib/sshv2.c - *_get_file() returns | |
| 718 off_t instead of long. *_{get,put}_next_file_chunk returns ssize_t | |
| 719 instead of size_t. Added *_set_config_options function to gftp_request | |
| 720 structure and protocol files. Use the new network functions | |
| 721 documented above. Convert usage of ANSI C IO (FILE *) to standard BSD | |
| 722 sockets so that I can use timeouts properly with select | |
| 723 | |
| 724 * lib/misc.c (ssh_start_login_sequence) - use gftp_set_sockblock(), | |
| 725 gftp_read() and gftp_write() functions | |
| 726 | |
| 727 * lib/protocols.c - move some protocol specific code to the protocol | |
| 728 specific files | |
| 729 | |
| 730 * lib/local.c - log succesful messages to gftp_logging_misc instead | |
| 731 of gftp_logging_error | |
| 732 | |
| 733 * lib/cache.c - log some more error conditions to the user | |
| 734 | |
| 735 * lib/rfc959.c - added rfc959_getcwd(). In, | |
| 736 rfc959_accept_active_connection(), set set socket to blocking mode | |
| 737 before calling accept() | |
| 738 | |
| 739 * src/text/gftk-text.c - If we get no files in gftp_text_ls(), | |
| 740 return instead of segfaulting | |
| 741 | |
| 742 * src/gtk/gftp-gtk.c - expand the port field in the toolbar to be 45 | |
| 743 pixels wide | |
| 744 | |
| 745 * src/text/gftp-text.c src/gtk/misc-gtk.c src/gtk/transfer.c | |
| 746 src/gtk/view_dialog.c - changes for conversion of request->{sock,data} | |
| 747 from ANSI C IO (FILE *) to standard BSD sockets | |
| 748 | |
| 57 | 749 2002-11-11 Brian Masney <masneyb@gftp.org> |
| 750 * configure.in - compile GTK+ 2.0 port by default | |
| 751 | |
| 56 | 752 2002-11-11 Brian Masney <masneyb@gftp.org> |
| 753 * src/gtk/dnd.c - fixes to DnD code | |
| 754 | |
| 755 * src/gtk/gftp-gtk.[ch] - added main_thread_id variable | |
| 756 | |
| 757 * src/gtk/misc-gtk.c (ftp_log) - don't check the user_data to see if | |
| 758 we're in a child thread, instead compare the value of pthread_self() | |
| 759 with main_thread_id | |
| 760 | |
| 761 * src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/menu-items.c | |
| 762 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
| 763 don't set user_data to 0x1 if we're in a child thread | |
| 764 | |
| 765 * lib/gftp.h src/gtk/misc-gtk.c src/text/gftp-text.c - make | |
| 766 r_getservbyname() available even if HAVE_GERADDRINFO is defined | |
| 767 | |
| 768 * lib/misc.c (make_ssh_exec_args) - if port is zero, lookup the default | |
| 769 port for the ssh service | |
| 770 | |
| 771 * lib/protocols.c (gftp_connect_server) - if the port is zero, store | |
| 772 the default port for that protocol there | |
| 773 | |
| 774 * src/gtk/transfer.c - added function update_window_transfer_bytes(). | |
| 775 Be able to update the directory download progress in window1 now | |
| 776 | |
| 777 * lib/config_file.c lib/misc.c lib/protocols.c lib/ssh.c lib/sshv2.c | |
| 778 src/text/gftp-text.c - use g_strdup() instead of g_strconcat() where | |
| 779 needed | |
| 780 | |
| 54 | 781 2002-11-11 Andras Timar <timar@gnome.hu> |
| 782 * configure.in: added 'hu' to ALL_LINGUAS | |
| 783 | |
| 51 | 784 2002-11-6 Brian Masney <masneyb@gftp.org> |
| 785 * src/gtk/gftp-gtk.c - connect to the select_row signal in the file | |
| 786 listbox to grab the double click event | |
| 787 | |
| 50 | 788 2002-11-5 Brian Masney <masneyb@gftp.org> |
| 789 * src/gtk/dnd.c - some code cleanups. Also, add the file transfer with | |
| 790 the function add_file_transfer() | |
| 791 | |
| 792 * src/gtk/misc-gtk.c - remove several unneeded calls to fix_display() | |
| 793 | |
| 794 * src/gtk/gftp-gtk.c (list_dblclick) - add a note about the double | |
| 795 click stuff not working properly | |
| 796 | |
| 49 | 797 2002-11-5 Brian Masney <masneyb@gftp.org> |
| 798 * src/gtk/transfer.c - use stock icons in GTK+ 2.0 port | |
| 799 | |
| 800 2002-11-5 Brian Masney <masneyb@gftp.org> | |
| 801 * lib/*.c src/gtk/*.c - removed function declarations for the static | |
| 802 functions from the top of the file. I had to rearrange the order of a | |
| 803 bunch of functions to avoid compiler warnings | |
| 804 | |
| 805 * lib/gftp.h - include sys/sysmacros.h. If major() and minor() isn't | |
| 806 defined, give a compiler warning and define our own | |
| 807 | |
| 808 * lib/local.c (local_get_next_file) - if this file is a device, store | |
| 809 the major/minor number in the file size | |
| 810 | |
| 811 * src/gtk/misc-gtk.c (add_file_listbox) - if this file is a device, | |
| 812 use the major() and minor() macros to display the major and minor number | |
| 813 | |
| 47 | 814 2002-11-5 Brian Masney <masneyb@gftp.org> |
| 815 * lib/cache.c lib/gftp.h - added second argument ignore_directory to | |
| 816 gftp_delete_cache_entry | |
| 817 | |
| 818 * src/gtk/menu-items.c (disconnect) - when disconnecting from the | |
| 819 remote site, clear all cache entries for that site | |
| 820 | |
| 821 * src/gtk/delete_dialog.c src/gtk/misc-gtk.c src/gtk/mkdir_dialog.c - | |
| 822 pass a 0 as second argument to gftp_delete_cache_entry | |
| 823 | |
| 46 | 824 2002-10-31 Brian Masney <masneyb@gftp.org> |
| 825 * lib/protocols.c (gftp_get_next_file) - don't use g_filename_to_utf8. | |
| 826 If g_locale_to_utf8 fails, print out a warning to the user on the | |
| 827 console | |
| 828 | |
| 45 | 829 2002-10-31 Brian Masney <masneyb@gftp.org> |
| 830 * src/gtk/*.[ch] - don't check for gtk+ version based on the minor | |
| 831 version. May cause problems later on. | |
| 832 | |
| 833 * lib/protocols.c src/gtk/bookmarks.c src/gtk/misc-gtk.c - use UTF8 | |
| 834 functions for user data when using glib 2.0 | |
| 835 | |
| 44 | 836 2002-10-30 Brian Masney <masneyb@gftp.org> |
| 837 * src/gtk/gftp-gtk.c (CreateMenus) - no longer use depreciated | |
| 838 _gtk_accel_group_attach in GTK+ 2.0 port. Instead use | |
| 839 gtk_window_add_accel_group for both GTK+ ports | |
| 840 (from Nam SungHyun <namsh@kldp.org>) | |
| 841 | |
| 43 | 842 2002-10-30 Brian Masney <masneyb@gftp.org> |
| 843 * src/gtk/transfer.c (getdir_thread) - set use_jmp_environment to 0 instead of 1 | |
| 844 | |
| 845 * src/gtk/misc-gtk.c (signal_handler) - if use_jmp_environment is 0, | |
| 846 and SIGINT is received, terminate the program | |
| 847 | |
| 42 | 848 2002-10-29 Brian Masney <masneyb@gftp.org> |
| 849 * src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/gftp-gtk.c | |
| 850 src/gtk/gftp-gtk.h src/gtk/menu-items.c src/gtk/misc-gtk.c | |
| 851 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
| 852 improved and simplified signal handling code | |
| 853 | |
| 41 | 854 2002-10-29 Brian Masney <masneyb@gftp.org> |
| 855 * lib/config_file.c lib/gftp.h lib/options.h src/gtk/menu-items.c | |
| 856 src/gtk/view_dialog.c - removed tmp_directory variable. Instead use | |
| 857 g_get_tmp_dir () | |
| 858 | |
| 859 * lib/gftp.h (struct gftp_request) - added int cancel : 1 | |
| 860 | |
| 861 * lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/ssh.c | |
| 862 lib/sshv2.c - check for interrupted signal calls | |
| 863 | |
| 864 * lib/protocols.c - added gftp_fgets() and gftp_fwrite() functions | |
| 865 | |
| 866 * src/gtk/delete_dialog.c src/gtk/misc-gtk.c src/gtk/transfer.c - use | |
| 867 g_main_context_iteration in GTK+ 2.0 port | |
| 868 | |
| 869 * src/gtk/misc-gtk.c - use g_object_unref instead of gdk_drawable_unref | |
| 870 in GTK+ 2.0 port | |
| 871 | |
| 40 | 872 2002-10-17 Brian Masney <masneyb@gftp.org> |
| 873 * lib/protocols.c - add gftp_abort_transfer function. Also, in | |
| 874 gftp_transfer_file, when we do a gftp_put_file, if that fails, | |
| 875 try to abort the transfer. | |
| 876 | |
| 877 * lib/rfc959.c - add rfc959_abort_transfer function | |
| 878 | |
| 879 * lib/rfc2068.c, lib/local.c - point abort_transfer pointer to | |
| 880 rfc2068_end_transfer and local_end_transfer respectively | |
| 881 | |
| 882 * lib/ssh.c, lib/sshv2.c - add FIXME to implement abort function | |
| 883 | |
| 884 * src/gtk/transfer.c - when we stop a transfer, try to abort it | |
| 885 first. If that fails, disconnect from the site completely | |
| 886 | |
| 39 | 887 2002-10-15 Brian Masney <masneyb@gftp.org> |
| 888 * lib/config_file.c - enable combo in GTK port for Proxy server type | |
| 889 | |
| 890 * lib/misc.c (gftp_sort_filelist) - make sure prev pointer to first | |
| 891 entry is NULL | |
| 892 | |
| 893 * lib/protocols.c (copy_token) - when setting the end position of | |
| 894 the token to \0, after we're done set it back to the origional position | |
| 895 | |
| 896 * src/gtk/gftp-gtk.c, src/gtk/menu-items.c - changed g_list_first (list) | |
| 897 to just list | |
| 898 | |
| 37 | 899 2002-10-13 Brian Masney <masneyb@gftp.org> |
| 900 * lib/gftp.h (struct gftp_config_vars_tag) - remove shown flag and | |
| 901 added ports_shown flag. Added GFTP_PORTS_TEXT, GFTP_PORTS_GTK, | |
| 902 and GFTP_PORTS_ALL flags | |
| 903 | |
| 904 * lib/config_file.c - update to use new fields. | |
| 905 | |
| 906 * lib/config_file.c, lib/options.h, lib/gftp.h - added new global | |
| 907 options: local_sortcol, local_sortasds, remote_sortcol, remote_sortasds | |
| 908 | |
| 909 * src/gtk/gftp-gtk.c - sort based on parameters above. Also, if a url | |
| 910 was given on the command line, don't connect to it until the local side | |
| 911 has been setup | |
| 912 | |
| 913 * src/gtk/options_dialog.c - only show variables that have GFTP_PORT_GTK | |
| 914 set | |
| 915 | |
| 916 * src/text/gftp-text.c - add help screen for set command. Added command | |
| 917 clear cache. Sort the filelist based on the configuration options. | |
| 918 | |
| 919 * configure.in - update to version 2.0.14 | |
| 920 | |
| 921 * cvsclean - clean up the Makefile.am file better | |
| 922 | |
| 36 | 923 2002-10-07 Brian Masney <masneyb@gftp.org> |
| 924 * lib/local.c - fixed file uploads | |
| 925 | |
| 926 * lib/rfc959.c - fixed crash if you uploaded/downloaded a file that | |
| 927 you didn't have permission to | |
| 928 | |
| 929 * src/gtk/transfer.c - display fixes for hostname | |
| 930 | |
| 931 * autogen.sh - pass -c to automake | |
| 932 | |
| 34 | 933 2002-10-07 Brian Masney <masneyb@gftp.org> |
| 934 * docs/sample.gftp/gftp-mini-logo.xpm - added mini gFTP logo file | |
| 935 from Debian. This can be used as a menu icon. | |
| 936 | |
| 33 | 937 2002-10-06 Brian Masney <masneyb@gftp.org> |
| 938 * src/gtk/delete_dialog.c, src/gtk/gftp-gtk.c, src/gtk/misc-gtk.c, | |
| 939 src/gtk/transfer.c - Fixed dead-locks with GDK_THREADS_{ENTER,LEAVE} | |
| 940 | |
| 941 * configure.in, src/gtk/Makefile.am - Use GTHREAD_LIBS | |
| 942 | |
| 943 2002-10-03 Brian Masney <masneyb@gftp.org> | |
| 944 * Makefile.am - remove intl and m4 directory from subdirs. autogen.sh | |
| 945 will automagically add these for me. | |
| 946 | |
| 947 * autogen.sh - remove check for libtool | |
| 948 | |
| 949 * configure.in - link in gthread | |
| 950 | |
| 951 * cvsclean - added this script | |
| 952 | |
| 177 | 953 * *.[ch] - added $Id: ChangeLog,v 1.86 2003/06/10 12:03:53 masneyb Exp $ tags |
| 33 | 954 |
| 955 * debian/* - updated files from Debian maintainer | |
| 956 | |
| 32 | 957 2002-10-03 Brian Masney <masneyb@gftp.org> |
| 958 * src/gtk/gftp-gtk.c - call g_thread_init (NULL) | |
| 959 | |
| 960 * src/gtk/delete_dialog.c, src/gtk/misc-gtk.c, src/gtk/transfer.c - | |
| 961 call gdk_threads_enter() and gdk_threads_leave() | |
| 962 | |
| 28 | 963 2002-09-24 Brian Masney <masneyb@gftp.org> |
| 964 * configure.in - take [external] off of AM_GNU_GETTEXT | |
| 965 | |
| 27 | 966 2002-09-24 Brian Masney <masneyb@gftp.org> |
| 967 * intl/ - remove this directory | |
| 968 | |
| 26 | 969 2002-09-24 gettextize <bug-gnu-gettext@gnu.org> |
| 970 * Makefile.am (SUBDIRS): Add intl, | |
| 971 (ACLOCAL_AMFLAGS): New variable. | |
| 972 (EXTRA_DIST): Add config.rpath mkinstalldirs. | |
| 973 * configure.in (AC_OUTPUT): Add intl/Makefile, | |
| 974 | |
| 25 | 975 2002-09-24 Brian Masney <masneyb@gftp.org> |
| 26 | 976 * lib/config_file.c - separated saving of bookmarks from |
| 977 gftp_write_config_file() to gftp_write_bookmarks_file(). Bookmarks will | |
| 978 no longer be rewritten to disk every time gFTP exits | |
| 979 | |
| 980 * src/gtk/bookmarks.c - call gftp_write_bookmarks_file() instead of | |
| 981 gftp_write_config_file() when altering a bookmark | |
| 982 | |
| 983 * configure.in - Fixed problem with the text port being compiled | |
| 984 against glib 1.2 if we wanted it to be compiled against glib 2.0 | |
| 985 instead | |
| 986 | |
| 987 * autogen.sh - add this build script | |
| 988 | |
| 989 2002-09-24 Brian Masney <masneyb@gftp.org> | |
| 25 | 990 * Remove intl/ directory from CVS |
| 991 | |
| 23 | 992 2002-09-18 Brian Masney <masneyb@gftp.org> |
| 993 * Updated French translation (from Damien Mascr? | |
| 994 <damienmascre@free.fr>) | |
| 995 | |
| 996 * Updated Japanese translation (from Ryoichi INAGAKI | |
| 997 <inagaki@ryo1.net>) | |
| 998 | |
| 999 2002-09-17 Brian Masney <masneyb@gftp.org> | |
| 1000 * src/gtk/bookmarks.c - Fixed crash that would occur if you saved the | |
| 26 | 1001 changes two times in the bookmark editor. Also, fixed several memory |
| 1002 leaks | |
| 23 | 1003 |
| 22 | 1004 2002-09-16 Brian Masney <masneyb@gftp.org> |
| 1005 * po/de.po - Updated German translation (from Matthias Haase | |
| 1006 <matthias_haase@bennewitz.com>) | |
| 1007 | |
| 1008 * po/ru.po - Updated Russian translation (from Vitaly Lipatov | |
| 1009 <LAV@VL3143.spb.edu>) | |
| 1010 | |
| 21 | 1011 2002-09-16 Brian Masney <masneyb@gftp.org> |
| 1012 * src/gtk/gftp-gtk.c, src/gtk/menu-items.c, src/gtk/misc-gtk.c - | |
| 1013 Fixed compile errors when compiling against GTK+ 1.2 | |
| 1014 | |
| 1015 * src/gtk/misc-gtk.c (MakeEditDialog, MakeYesNoDialog) - fixed to work | |
| 1016 with GTK+ 1.2 | |
| 1017 | |
| 19 | 1018 2002-09-15 Brian Masney <masneyb@gftp.org> |
| 1019 * lib/gftp.h (struct gftp_transfer) - changed the type of numfiles and | |
| 1020 numdirs from unsigned long to long. This must be a signed field. This | |
| 1021 is a bug I introduced a few days ago. | |
| 1022 | |
| 1023 * lib/local.c (local_put_file) - remove the + off of the ab mode to | |
| 1024 fdopen. This is also a bug I introduced a few days ago. | |
| 1025 | |
| 1026 * src/gtk/transfer.c (gftp_gtk_calc_kbs) - make sure that the variable | |
| 1027 difftime isn't a negative number when computing the KB/s | |
| 1028 | |
| 1029 * src/gtk/menu-items.c (save_directory_listing) - remove casts to | |
| 1030 GTK_OBJECT for the str variable | |
| 1031 | |
| 1032 * src/gtk/gftp-gtk.c - use GTK_STOCK_* icons in place of left.xpm, | |
| 1033 right.xpm, up.xpm, down.xpm and stop.xpm in GTK+ 2.0 port | |
| 1034 | |
| 1035 * src/gtk/bookmarks.c - show GTK_STOCK_* icons on the popup menu | |
| 1036 | |
| 1037 * src/gtk/bookmarks.c, src/gtk/chmod_dialog.c, src/gtk/menu-items.c, | |
| 1038 src/gtk/misc-gtk.c, src/gtk/options_dialog.c and | |
| 1039 src/gtk/view_dialog.c - use gtk_dialog_new_with_buttons in GTK+ 2.0 | |
| 1040 port to create the dialog. Also, associate gFTP icon with this dialog | |
| 1041 | |
| 1042 * src/gtk/misc-gtk.c - changed the interface of MakeEditDialog and | |
| 1043 MakeYesNoDialog. In the GTK+ 2.0 port, I now use stock icons in the | |
| 1044 dialog buttons. | |
| 1045 | |
| 1046 2002-09-11 Marius Andreiana <mandreiana@yahoo.com> | |
|
18
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
1047 |
|
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
1048 * configure.in: added 'ro' to ALL_LINGUAS |
|
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
1049 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1050 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
|
1051 * lib/misc.c - added gftp_sort_filelist function |
| 1 | 1052 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1053 * 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
|
1054 to do the sorting |
| 1 | 1055 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1056 * 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
|
1057 automake 1.4 |
| 1 | 1058 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1059 * src/text/gftp-text.c, lib/protocols.c - more large file support |
| 1 | 1060 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1061 2002-09-04 Brian Masney <masneyb@gftp.org> |
| 19 | 1062 * lib/rfc959.c - FXP fixes (from Tobias Gruetzmacher |
| 1063 <tobias@portfolio16.de>) | |
| 1 | 1064 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1065 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
|
1066 * lib/rfc2068.c - HTTP fixes when running under Solaris. Read from |
| 19 | 1067 request->sockfd and write to request->sockfd_write (Solaris doesn't |
| 1068 like it when you read/write to the same FILE structure) | |
| 1 | 1069 |
| 19 | 1070 * lib/local.c - encode major/minor numbers for a device in the file |
| 1071 size. This is probably still busted for other platforms | |
| 1 | 1072 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1073 * lib/rfc2068.c, lib/rfc959.c, lib/ssh.c, lib/sshv2.c - Sanity |
| 19 | 1074 checking on the fdopen() calls. Also make sure that all of them have a |
| 1075 + in their open mode. Doesn't affect UNIX, but it does affect Windows | |
| 1 | 1076 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1077 * 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
|
1078 function save_directory_listing. It's in the Local and Remote menus |
| 1 | 1079 |
| 19 | 1080 * src/gtk/view_dialog.c - changed log message slightly. The new string |
| 1081 should already be in the po files translated | |
| 1 | 1082 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1083 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
|
1084 * lib/misc.c - don't allow passing a 0 to log10 |
| 1 | 1085 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1086 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
|
1087 * 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
|
1088 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
|
1089 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
|
1090 (all from Sung-Hyun Nam <namsh@kldp.org>) |
| 1 | 1091 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1092 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
|
1093 * po/ko.po - language team change |
| 1 | 1094 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1095 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
|
1096 * po/ko.po - Updated Korean translation |
| 1 | 1097 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1098 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
|
1099 * 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
|
1100 |
|
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1101 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
|
1102 * configure.in - small build fixes |
| 1 | 1103 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1104 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
|
1105 * 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
|
1106 elsewhere |
| 1 | 1107 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1108 * 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
|
1109 Removed anonymous FTP stuff |
| 1 | 1110 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1111 * 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
|
1112 is defined |
| 1 | 1113 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1114 * lib/protocols.c - removed anonymous FTP stuff |
| 1 | 1115 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1116 * lib/rfc2068.c - don't check for anonymous username |
| 1 | 1117 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1118 * 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
|
1119 (from Owen Taylor <otaylor@redhat.com>) |
| 1 | 1120 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1121 2002-08-23 <baddog@cvs.gnome.org> |
| 19 | 1122 * configure.in - (ALL_LINGUAS): zh_CN.GB2312 -> zh_CN, zh_TW.Big5 -> |
| 1123 zh_TW | |
| 1 | 1124 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1125 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
|
1126 * zh_TW.Big5.po renamed to zh_TW.po |
| 1 | 1127 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1128 * zh_CN.GB2312.po renamed to zh_CN.po |
| 1 | 1129 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1130 * zh_TW.Big5.gmo - Removed. |
| 1 | 1131 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1132 * Makefile.in.in, gftp.pot - Remove generated file. |
| 1 | 1133 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1134 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
|
1135 * po/.cvsignore - Shhhhhh |
| 1 | 1136 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1137 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
|
1138 * po/de.po - Fixed German translation (charset, header) |
| 1 | 1139 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1140 2002-08-05 Brian Masney <masneyb@gftp.org> |
| 19 | 1141 * lib/protocols.c - When we connect to a remote server, don't change |
| 1142 the hostname to the PTR record of the hostname | |
| 1 | 1143 |
| 19 | 1144 * src/gtk/transfer.c - Fixed crash if you was already transfering a |
| 1145 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
|
1146 Overwrite/Resume/Skip dialog |
| 1 | 1147 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1148 * docs/sample.gftp/gftprc - put the ext= lines back in the config file |
| 1 | 1149 |
| 19 | 1150 * po/es.po - Spanish updates (from Gustavo D. Vranjes |
| 1151 <gvranjes@softhome.net>) | |
| 1 | 1152 |
| 19 | 1153 * po/nl.po - Dutch updates (from Myckel Habets |
| 1154 <myckelhabets@netscape.net>) | |
| 1 | 1155 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1156 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
|
1157 * gFTP 2.0.13 released |
| 1 | 1158 |
