1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
|
1999-12-23 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* configure.in: version=0.4.4
* NEWS: Updated for new version
* gtm.spec.in:
* configure.in:
* Makefile.am:
* src/dialog-prefs.c:
* src/file-data.c:
* src/file-list.c:
* src/gtm.h:
* src/main.c: Added sound for gtm events. For now it is the add,
complete and start. Later if necessary I will add more.
* gtm.soundlist:
* sounds/Makefile.am:
* sounds/.cvsignore:
* sounds/*.wav: New files for the sound events.
* src/dialog-prefs.c (apply_prefs_proxy): Moved the proxy user,
pass, http and ftp from the common config files to the private
config files.
* src/file-data.h:
* src/file-data.c:
* src/file-list.h:
* src/file-list.c:
* src/gtm.h:
* src/main.c:
* src/dialog-prop.c: Removed the save of the file list from the
end of the program to a save during program execution. This way if
program goes down by accident the list is not lost.
* src/Gtm-impl.c (impl_GTM_Download_add_url): Forgot to free the
file_data if the file was not added to the list.
1999-12-15 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/file-data.c (file_data_start_download): Fixed a bug on proxy
code (thanks to Damian Bickhoff <q9405096@brampton.cqu.edu.au>).
1999-12-13 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* applet/gtm_applet.c: Improved the applet menu and changed the
function which handles button events to be correct.
1999-12-12 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-prop.c (apply_prop): After changing the page order I
forgot to change one thing and the options were not applied.
* src/download-info.c (download_info_update_statistics):
* src/file-list.c (file_list_set_row_statistics): The estimated
time and remain time where miss calculated and some strange values
showed up.
1999-12-11 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* applet/gtm_applet.desktop:
* gtm.desktop: Added the Danish language (thanks to Birger Langkjer
<birger.langkjer@image.dk>).
1999-12-09 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* configure.in: Added the Korean translation of the program
(thanks to Kang JeongHee <Keizi@mecom.net>).
1999-12-07 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* configure.in: version=0.4.3
* NEWS: Updated for new version
* applet/gtm_applet.c: Redesign the interface of the applet. It is
now composed of a pixmap.
* applet/Makefile.am:
* applet/tray_full.xpm:
* applet/tray_empty.xpm: Added new files with pixmaps for the new
applet look.
1999-12-06 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-add.c (url_list_build):
* applet/dialog-add.c (url_list_build): Fixed bug of removing an
element from the list and then moving to the next element of the
list.
* applet/gtm_applet.c: Applet properties is saved when the panel
requires it.
* src/file-data.c (file_data_create): Was using the same default
download dir memory for all files and each one was going to be
deallocated individually.
* applet/gtm_applet.c:
* applet/gtm_applet.h: Added functions that open the connection to
GTM and make the new CORBA interface operations. Also placed the
calls to the new dialog boxes.
* applet/Makefile.am:
* applet/dialogs.h:
* applet/dialog-prop.c:
* applet/dialog-new.c:
* applet/dialog-add.c:
* applet/dialog-about.c: Added new dialog boxes to replace the
ones poped up by gtm CORBA interface.
1999-12-05 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/main.c (main): Replace the old CORBA calls with the new version.
* src/Gtm-impl.c:
* idl/Gtm.idl: Revised the CORBA interface. Now the interface
doesn't pop dialog boxes when adding URL to download.
* src/dialog-add.c:
* src/dialog-prefs.c:
* src/main.c (load_preferences):
* src/gtm.h: Added an option to enable/disable confirmation of
drag-n-dropped URL.
* src/dialog-new.c (ok_new_file):
* src/dialog-add.c (ok_add_files): Used function file_data_create
and popup a message dialog box when a URL is a duplicate.
* src/file-data.c:
* src/file-data.h: Added function file_data_create.
* src/file-list.h:
* src/file-list.c (file_list_add): This function should return an
error code instead of poping a error message dialog box it self.
* src/file-list.c: Was saving the filename when the list was saved
but that is not needed since we can built it again with the url.
* src/dialog-prefs.c:
* src/main.c: The program preferences becomes persistent not when the
program finishes but right after the preferences change.
1999-12-04 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/main-window.c:
* src/main-window.h:
* src/dialog-prefs.c:
* src/main.c:
* src/gtm.h: Added option to enable/disable the download page.
* src/main-window.c (main_window_create): Fixed the problems with
saved geometry. Now it saves the height like width and avoids
problems of clipping when the font of gtk theme is changed between
sessions.
* src/main.c (main): Moved the load_preferences to be before
registering the CORBA gtm object and fixed the empty download dir bug.
1999-12-02 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/main.c: Added a command line option to give an URL to
download gtm and it may be usefull to scripts. (Thanks to Ken
Lierman <klierman@bigfoot.com> for the patch).
* src/file-list.c:
* src/file-list.h: Added new function to find an URL on the list
and also maked impossible to add duplicate URL.
* src/gtm.h:
* src/dialog-prefs.c:
* src/main.c:
* src/file-data.c (file_data_stop_download): Added new option to
control the disable of the auto download when the user does a
manual stop.
* src/dialog-about.c (dialog_about): Added the email to the author
name.
1999-12-01 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-prop.c (dialog_prop): Changed the download page on
the properties dialog to be the first one because it is the most
use.
1999-10-30 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* configure.in: Added the French translation of the program
(thanks to Christian Marillat <marillat@alpes-net.fr>).
1999-10-10 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/main-window.c (toolbar_update_style): When toolbar style
changed the toolbar was not correctly resized.
* src/main-window.c: Changed the hints for the start command from
start... to start/resume... This way people know they can resume
downloads.
* src/main.c (load_preferences): Replaced code to get the home dir
with gnome_util_user_home.
* configure.in: Added the Danish translation of the program
(thanks to Kenneth Christiansen <kenneth@ripen.dk>).
1999-10-03 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* configure.in: version=0.4.2
* NEWS: Updated for new version
* src/dialog-add.c: New version of gftp fixes problem of dnd from
gftp. Now I can remove all the checks for this problem. I also
removed the login/password on URL because communication between
gtm and wget is not secure.
* src/dialog-new.c (dialog_new): Missed my code style on this file.
1999-10-01 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-prop.c: Totally revised the dialog-prop code and
interface.
* src/main-window.c: Added new submenu edit to the main menu with
select and unselect all. Move properties from download to
edit. Add accelerators for common operations. Also add the
properties button to the toolbar.
* src/file-list.h:
* src/file-list.c: New functions to select and unselect all
files. Check again the update of toolbar, popup menu, download
info and properties box when the selected files change.
1999-09-30 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/file-data.c (file_data_stop_download): Disable auto download
if the stop button is pressed. That way is not restart right after
the stop.
* src/main.c (main):
* src/main-window.c (main_window_create): Memory used by geometry
was not freed on the correct place.
* src/download-info.c (download_info_update_statistics): The total
and session speeds were incorrectly rounded to Kbytes.
* src/file-list.c (file_list_set_row_statistics):
* src/download-info.c (download_info_update_statistics): When the
download was complete some stupid information was showing like
estimated and remain and when the downloaded file was removed the
information was also stupid.
1999-09-23 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-add.c:
* src/dialog-new.c:
* src/dialog-prefs.c: Because of the way the history id is handle
three widgets cannot share the same history id.
* src/gtm.h:
* src/dialog-add.c:
* src/dialog-new.c:
* src/dialog-prop.c:
* src/dialog-remove.c:
* src/dialog-restart.c:
* src/download-info.c:
* src/file-list.c:
* src/main-window.c:
* src/dialog-prefs.c:
* src/file-data.c:
* src/main.c: Changed variable and comments named Options to
Preferences where it was appropriate because the correct name is
preferences and not options.
* src/dialog-add.c (dialog_add):
* src/dialog-new.c (dialog_new): Fixed the packing of the vbox to
have a good look when the window is resized.
* src/download-info.c: Now the download info page has a fixed size
and to avoid clipping the URL and the download dir added two
scrolled windows for location and options frame.
* src/main-window.c (main_window_create): Fixed the size of the
main window. Now the application has a minimum correct size. Also
removed the horizontal pan because it didn't make much sense.
1999-09-22 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/file-data.c (file_data_start_download): Found some memory
problems on the argument vector. Also added new error messages
when wget is not found. Missed equal on option proxy-user and
proxy-pass.
* src/file-data.c (file_data_start_download):
* configure.in:
* acconfig.h: Remove the pre-defined location for wget that was
causing a lot of errors.
* src/dialog-add.c:
* src/dialog-new.c:
* src/dialog-prefs.c:
* src/main.c:
* src/gtm.h: Changed the preference to change the default download
dir from dialog new to dialog new and dialog add.
* src/main.c:
* src/dialog-prefs.c:
* src/dialog-remove.c:
* src/dialog-restart.c: Added new preferences to control
confirmation of remove and restart.
1999-09-21 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-add.c:
* src/dialog-new.c:
* src/file-list.c: Code to process from netscape, gftp and gmc
passed to dialog-add and was replaced by a call to dialog-add.
* src/dialog-add.c:
* src/Makefile.am (gtm_SOURCES): New source file added for dialog
box add.
* src/dialogs.h:
* src/dialog-new.c:
* src/main-window.c (new_cmd):
* src/file-list.c (file_list_drag_data_received): Removed the
argument from dialog new because I will add a dialog add for more
than one URL drop.
* src/main.c: Changed the CORBA stuff according to the changes to
Gtm.idl.
* applet/gtm_applet.c: Changed the CORBA stuff according to the
changes to the Gtm.idl. With this added the suport for dnd from
gftp and gmc to the applet.
* idl/Gtm.idl: Changed the IDL and now you ca open a dialog box
new to add a new url or add a list of urls to the files list using
a dialog box add.
1999-09-20 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/file-list.c: Added correct support for dnd from gftp and gmc.
* src/main-window.c: Set the drag n' drop only to the file list
because it makes more sence. Also fixed the fact that the list
didn't accept any drops except the reorder ones.
1999-09-19 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-prop.c:
* src/dialog-prefs.c:
* src/file-list.c:
* src/file-data.c:
* src/dialog-new.c: Replaced g_malloc for g_new where it was
appropriate.
1999-09-18 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-prefs.c: Totally revised the dialog-pref code and
interface.
1999-09-16 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/file-data.c (file_data_start_download): The Language problem
was not correctly solved using LANG because LC_ALL overrides it.
* applet/gtm_applet.c:
* src/main.c: Opps! I forgot why the really nasty error messages
are not translated and that is to avoid receving emails with bug
reports that I need to dig on the potfiles to understand them.
1999-09-15 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* applet/gtm_applet.c: Forgot to add the initialization of the
internationalization package!
* src/file-list.c: Column titles of the file list were unmarked
for translation.
* ABOUT-NLS:
* .cvsignore: File ABOUT-NLS was missing on the distribution.
1999-09-14 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* configure.in: version=0.4.1
* NEWS: Updated for new version
* applet/gtm_applet.c:
* src/dialog-about.c:
* src/main.c: Some strings were untranslated or miss spelled.
1999-09-13 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-new.c: When the URL had encoded characters they were
not decoded and the statistics stuff was dead but the file was
correctly downloaded.
1999-09-12 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-prop.c (apply_prop):
* src/dialog-prefs.c (apply_prefs): This signal handler was called
more then one time because I was ignoring page_num.
* src/dialog-prop.c: Added the option to change the location of a
file on the network. This way you can continue a download from
another site.
* src/wget-log.c: When an error ocurred the download stopped but
auto download system started again showing the same error
message. Now after an error auto download is disabled for the file
with the error.
* src/dialog-new.c:
* src/dialog-prefs.c:
* src/dialog-prop.c:
* gtm.spec.in: Change Gnome to GNOME.
1999-09-09 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* configure.in: version=0.4.0
* NEWS:
* TODO: Update for the new version.
* src/dialog-prefs.c: Fixed incorrect English.
* src/main-window.c: Tiny menu update.
* src/download-info.c:
* src/file-data.c:
* src/file-list.c:
* src/main-window.c: Revised the statistics code. Also changed the
statistics interface of file list and download info page.
* src/dialog-prefs.c:
* src/download-info.c:
* src/file-list.c:
* src/gtm.h:
* src/main.c: New options to disable statistics updates on the
file list and download info page.
1999-09-08 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-new.c:
* src/dialog-prefs.c:
* src/main.c:
* src/gtm.h: Added new preference to allow the user to update the
default download dir from dialog box new.
* src/dialog-new.c:
* src/dialog-prop.c:
* src/file-data.h:
* src/file-list.c:
* src/download-info.c: Changed element auto_download to
disable_auto_dl on FileData structure to be coherent with disable
proxy.
* src/main-window.c:
* src/file-list.c:
* src/file-data.c:
* src/dialogs.h:
* src/dialog-prop.c:
* src/dialog-about.c:
* src/Gtm-impl.c: Solved multiple focus row problems. I think now
it is right.
1999-09-03 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/file-list.c:
* src/file-data.c: Removed unused variables.
* macros/: Update to the latest macros used by gnome packages.
* gtm.spec.in: Changed the location of CORBA servers to be
compatible with RedHat 6.0 gnome rpms.
1999-09-02 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-new.c (dialog_new):
* src/file-list.c (file_list_load_data):
* src/main.c (load_options): Auto-download is good. It is set by
default to 1 simultaneos download, ppp0 for the interface and
auto-download set for the file on the dialog box new (This last
one can't be changed).
* src/main-window.c: Changed direct remove of files to a dialog
box remove with confirmation for all selection and not for each file.
* src/file-list.h:
* src/file-list.c: Function that executes a function for each
FileData selected on the list. Function to remove selection.
* src/file-data.h:
* src/file-data.c: It is possible to use a FileData structure on
the code without being connected to an file_list. Set it to NULL
and the updates on related to the file_list are not done. This is
usefull for the handling of unabsolute URL.
* src/dialog-restart.c: Finished the update for restart of selection.
* src/dialog-remove.c: Finished the update for removal of selection.
* src/dialog-prop.c: The OK and CANCEL buttons were not disable
when the selected file data changed.
* src/dialog-new.c: Added an error when the user tries to use an
unabsolute URL.
1999-09-01 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/file-list.c: Added auto-scroll on drag.
* src/: Almost touch every file.
New data organization, new code organization, new drag to change
order on file_list, changed close to remove because it is more
intuitive.
With this new arrangement it is going to be possible to add groups
of downloads and other cool stuff.
1999-08-27 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-new.c (ok_new_file): When I changed the memory stuff
and added a new variable I forgot to initialize it here.
* src/dialog-prefs.c:
* src/dialog-prop.c:
* src/file-list.c: Took care of the FIXME. These FIXME existed
because of an miss understanding of the gtk signal concept. Now
the code is cleaner and with less global variables.
1999-08-25 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/file-list.c (file_list_start_download): Comments, some
options where not correctly placed and set environment variable
LANG to en_US before calling wget to have a known wget
output. This way we don't need a diferent parser for each
translation. (thanks to Yuri Valentini <yuri@mo.nettuno.it> for
pointing this out)
* src/main-window.c:
* src/file-list.h:
* src/file-list.c:
* src/download-info.c:
* src/dialog-prop.c:
* src/dialog-prefs.c: Removed unused variables and functions.
* src/wget-log.c:
* src/wget-log.h:
* src/gtm.h:
* src/file-list.c:
* src/dialog-restart.c (restart_file):
* src/dialog-new.c (ok_new_file): Incorrect allocation of memory
for filename open causing multiple crashes during program
execution. I also looked every memory allocation and change it all
to be bullet proof (at least it is better). Also removed some
numbers to constants.
1999-08-23 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/main-window.c (init_main_window): Fixed a stupid resize of
the horizontal pane.
* src/main.c (check_network): Fixed an warning.
* src/Makefile.am:
* src/file-list.c: Added new column with the state of the
file. The column has an pixmap so I also added new pixmaps.
1999-08-22 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/gtm.h:
* src/main.c:
* src/dialog-prefs.c:
* src/file-list.c (file_list_start_download): Add the passive ftp
option of wget with as an option.
1999-08-21 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* autogen.sh:
* gtm.desktop:
* applet/gtm_applet.c:
* src/dialog-about.c:
* src/main-window.c:
* src/main.c: The correct way to write GNOME is not Gnome but
GNOME. Because GNOME is not a word but a sigla. Thanks to Kevin
Fox <bob@thestuff.net> for the reminder.
* configure.in: This package doesn't need libtool. Also added
Brazilian translation of the program (thanks to Marcus Brito
<pazu@linuxbr.com.br>).
* Makefile.am:
* gtm.desktop:
* applet/gtm_applet.desktop: Added a new gtm icon (thanks to Kevin Fox
<bob@thestuff.net> for the icon).
1999-05-26 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* applet/gtm_applet.c:
* src/main-window.c: Fixed another annoying bug, the netscape dnd
to the applet not working!
* src/wget-log.c:
* src/file-list.c: Used putenv instead of setenv because I think
more systems have it and now should work on Solaris.
* TODO: Gianluca updated the TODO file.
1999-05-16 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-restart.c: Change the restart and the program erases
the old file before the start of the download.
* src/Makefile.am:
* src/dialog-prop.c:
* src/download-info.c:
* src/download-info.h:
* src/file-list.c:
* src/gtm.h:
* src/main-window.c:
* src/main-window.h:
* src/main.c: Total rewrite the interface. Now it is easier to add
the multiple file download. Just need to change the list to a
tree. Also did some cleanup on the code.
* src/wget-log.c: Change the update information. Don't update only
when a new line arrives from wget, update when a caracter arrives
and it's time to refresh.
1999-05-15 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/main-window.c (init_main_window): Forgot to update the
menu_toolbar_moveto when the program starts.
* src/file-list.c:
* src/gtm.h:
* src/main.c: Changed the method to count the number of running
downloads and it looks good.
* src/file-list.h:
* src/file-list.c:
* src/main-window.h:
* src/main-window.c: Added the ordering stuff to the file list.
* src/dialog-new.c:
* src/dialog-prop.c:
* src/dialog-prefs.c:
* src/file-list.c:
* src/main.c:
* src/gtm.h: Thanks to a patch from Gianluca Montecchi
<gianluca@pluto.linux.it> I added the auto download to the
program. It's not finished yet but it works.
1999-05-10 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* Makefile.am: Fixed the generation of the CORBA files. Now
correctly generates the files when the user compiles the package.
* configure.in: version=0.3.1
* NEWS: Updated the news file to reflect the new version.
* applet/gtm_applet.c:
* src/main-window.c: Changed the drag and drop stuff. With little
work should be easy to implement the gmc->gtm dnd.
* applet/gtm_applet.c: Made the widget more compact.
1999-05-09 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* TODO:
* src/wget-log.c: The wget log processing now works fine and
catches the most common errors. But doesn't yet support multiple
file downloads with the same URL.
* src/dialog-prop.c: Fixed bug on the properties dialog.
1999-05-04 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-prefs.c:
* src/gtm.h:
* src/main.c: Start to add the automatically download stuff. For
now just the selection of the Internet interface. Tanks to
Gianluca Montecchi <gianluca@pluto.linux.it> he's working on this.
* gtm.spec.in:
* gtm.desktop:
* applet/gtm_applet.desktop: Spanish translation of this files
thanks to Ra�l Alexis Betancort Santana
<a2363@correo.dis.ulpgc.es>.
1999-04-27 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* README:
* gtm.spec.in:
* applet/Makefile.am:
* idl/Makefile.am:
* src/Gtm-impl.c:
* src/Makefile.am: Fixed the CORBA stuff a little bit because now
I understand it a little better.
* macros/*: Update to the latest macros used by gnome packages.
1999-04-26 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/file-list.c (file_list_start_download): Fixed the bug that
blocked the program when wget was working with slow
sites. Blocking on the pipe listening to wget output.
1999-04-23 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* configure.in: Added the Spanish translation of the program (thanks
to Ra�l Alexis Betancort Santana <a2363@correo.dis.ulpgc.es>.
1999-04-10 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* applet/Makefile.am:
* applet/gtm_applet.c: Changed the look of the applet. Removed the
pixmap and now it's two buttons and a label.
* configure.in:
* Makefile.am: Added new configure option to disable applet
building. By default is on.
1999-04-09 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* gtm.spec.in:
* configure.in: Added new checks for wget before build or install.
* gtm.desktop:
* gtm_applet.desktop:
* gtm.spec.in: Italian translation of this files thanks to
Gianluca Montecchi <gianluca@pluto.linux.it>.
* configure.in:
* help/Makefile.am:
* help/it/topic.dat:
* help/it/gtm.html:
* help/it/Makefile.am: Added Italian help files thanks to Gianluca
Montecchi <gianluca@pluto.linux.it>.
1999-04-07 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* idl/Makefile.am: Added a dist-hook to force the use of orbit-idl
on Gtm.idl before compiling the source.
1999-04-06 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* configure.in: version=0.3.0
* NEWS: Updated the file to the latest stuff that was added to the
program.
* help/C/gtm.html:
* help/pt/gtm.html: Updated the help files. Their still very
useful but with this change maybe someone starts building the help
files for the program...
* src/file-list.c:
* src/file-list.h:
* src/main-window.c:
* src/main-window.h: Added a new popup menu to the file list.
* src/Makefile.am:
* src/dialog-prop.c:
* src/dialogs.h:
* src/file-list.c:
* src/main-window.c: Added a new dialog box to setup the
properties of the items on the file list. Added also new buttons
that only existed on the menus.
1999-04-05 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-close.c (dialog_close):
* src/dialog-restart.c (dialog_restart): This dialog boxes had
OK/CANCEL buttons but the correct buttons are YES/CANCEL.
* src/dialog-close.c (dialog_close): After adding the new restart
button makes sense to ask the user if he wants to loose the
download information when the file is downloaded.
* NEWS:
* src/dialogs.h:
* src/Makefile.am:
* src/main-window.c:
* src/dialog-restart.c: Added buttons and menus to give the user
the chance to restart the download.
* idl/Gtm-impl.c: Fixed warning.
* NEWS:
* src/dialog-new.c:
* src/file-list.c:
* src/gtm.h: Added new option to disable proxy when the user adds
a new URL to download.
* NEWS:
* README: Updated the files to reflect the new features of the
program.
* TODO: Updated the TODO list due to the maturity of the
application and some great I ideas that I have recevied from so
many people. Thanks to all of you.
* configure.in: Added the Italian translation of the program
(thanks to Gianluca Montecchi <gianluca@pluto.linux.it>).
* src/main.c: Used the CORBA server to make sure that only one GTM
program was running instead of the pid method.
* src/dialog-about.c: Fixed a type on a function that was
reporting a warning.
* Makefile.am:
* configure.in:
* gtm.spec.in:
* gtm_applet.desktop:
* gtm_applet.gnorba:
* applet/.cvsignore:
* applet/Makefile.am:
* applet/gtm_applet.c:
* applet/gtm_applet.xpm: Added a new applet that makes request to
download files to the GTM application using CORBA. This code might
help others to use this this CORBA interface to GTM on their
programs.
* Makefile.am:
* configure.in:
* gtm.spec.in:
* idl/.cvsignore:
* idl/Gtm-impl.c:
* idl/Gtm.idl:
* idl/Makefile.am:
* idl/gtm.gnorba:
* src/Makefile.am:
* src/main.c: Added CORBA support to the application. Now it's
possible to request a download of a URL from another application
using CORBA.
* macros/*: Update to the latest macros used by gnome packages.
1999-03-30 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-prefs.c (create_proxy_page): When I was cleanning
this code to become gtm from gwget I erased this line and I is a
problem because the password appears on the screen!
1999-03-24 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/dialog-prefs.c: Labels sensitivity was not set like entry boxes.
1999-03-23 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* configure.in: version=0.2.1
* gtm.spec.in: Fixed a bug. I didn't know that the date was
forced to be in American...
* help/C/Makefile.am:
* help/pt/Makefile.am: Added a file to the distribution that was
only a link.
* help/.cvsignore:
* help/C/.cvsignore:
* help/pt/.cvsignore: I forgot these on the last time I added
files to the project.
* README: The version of gtk has been pushed to gtk 1.2.x.
* macros/*: Update to the latest macros used by gnome packages.
* Makefile.am: desktop files dir has changed so this file was updated.
* NEWS:
* TODO: Updated this files with the new stuff.
* src/main-window.c:
* src/dialog-prefs.c (dialog_prefs): Set the triggers to open help
files.
* Makefile.am:
* configure.in: Added the new makefiles and help directory to this
files.
* help/Makefile.am:
* help/C/Makefile.am:
* help/C/topic.dat:
* help/C/gtm.html:
* help/pt/Makefile.am:
* help/pt/topic.dat:
* help/pt/gtm.html: Added this files to start the construction
of help files.
* gtm.desktop:
* gtm.spec.in: Added portuguese translation to this files.
1999-03-22 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* NEWS: Updated the file.
* src/dialog-new.c (ok_new_file): Fixed a bug that occurs when
freeing then file_data structure after an incorrect URL reported
to the user.
* src/main-window.c (quit_cmd):
* src/dialog-new.c (dialog_new):
* src/dialog-close.c (dialog_close): Made application more gnome
compliant by using GNOME_YES, GNOME_NO, GNOME_OK, GNOME_CANCEL
instead of numbers.
* src/dialog-prefs.c: Made application more gnome compliant by
using GNOME_PAD stuff instead of numbers.
* src/dialog-new.c (dialog_new):
* src/dialog-close.c (dialog_close):
* src/dialog-about.c: Made application more gnome compliant by
setting all dialog boxs to some parent.
* src/dialog-new.c (ok_new_file): Fixed a bug that was a bad
filename path creation that prevented the program to show results
and produced a core dump with some users.
* src/main.c (load_options): Minor improvement removing a call to
a function.
* src/main.c:
* src/gtm.h:
* src/file-list.c:
* src/dialog-prefs.c: Proxy options are finished (At least I hope
they are. I cannot correctly test all of them).
* src/wget-log.c (process_wget_log_line): Added support for proxy
messages.
1999-03-20 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/file-list.c:
* src/dialog-prefs.c: Fixed some translation problems due to a
incorrect use of _() and N_().
1999-03-07 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* NEWS:
* configure.in: version=0.2.0
* TODO:
* README: Corrected some bad english.
* src/dialog-prefs.c: Removed a global variable using a solution
like the one on dialog new. But after some tests I had to roll
back a little and end up with the global variable and another FIXME.
* src/main-window.c (new_cmd):
(drag_data_received_cb):
* src/dialogs.h:
* src/dialog-new.c: I total redesign the new download file dialog
box. Now it has all integrated in only one dialog box and it's
going to be easier to add the local options.
1999-03-06 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/main-window.c:
* src/file-list.h:
* src/file-list.c:
* src/dialog-close.c (close_file): Fixed a problem with the start
and stop of download. It was a lack of parameters on functions
and a not very good response of the program when wget process was
stopped.
* src/file-list.c (file_list_update_row_statistics): Fixed a
file_list refresh problem.
* src/main-window.c (quit_cmd): Fixed the exit of the program that
was not correct yet.
1999-03-05 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* NEWS:
* TODO: Updated the files according to last program changes.
* src/main.c:
* src/main-window.h:
* src/main-window.c:
* src/gtm.h:
* src/file-list.c (file_list_start_download):
* src/dialogs.h:
* src/dialog-prefs.c:
* src/dialog-new.c (save_url):
* src/Makefile.am: New structure to hold global program
options. Save/Load global options. Added preferences dialog box to
configure global program options.
* src/dialog-prefs.c: New file.
1999-03-04 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* configure.in: Added the Portuguese translation of the program
(thanks to Jo�o Neves <jneves@rnl.ist.utl.pt>).
* src/main-window.c:
* src/dialog-new.c:
* src/dialogs.h: Added drag and drop support to the
application (thanks to Tim Wilson <td_email@usa.net>).
1999-02-28 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* NEWS:
* configure.in: version=0.1.0
* src/Makefile.am: Add some files that I have forgot when I added
new files to the source.
* TODO:
* gtm.spec.in:
* configure.in:
* Makefile.am:
* .cvsignore: Added support to build RPM package of the program.
1999-02-27 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* TODO: Added some new ideas.
* src/file-list.h:
* src/gtm.h:
* src/wget-log.c:
* src/file-list.c:
* src/dialog-new.c: Updated the functions that set columns
information and added functions to update the statistics
information. Worked on the processing of the wget log and it works
although it's not complete.
* src/file-list.c: Changed the order of the columns and I think
it's nicer this way.
* src/dialog-close.c (close_file): Fixed a bug that append when we
closed a file on DL_NOT_RUNNING.
* src/file-list.c:
* src/file-list.h: Organized correctly the code that updates the
current state of the download process in the file_list.
* src/file-list.c:
* src/gtm.h: Added new states to the download state.
* src/dialog-close.c (close_file):
* src/main-window.c (set_menu_toolbar_state): Make it possible to
add more states between DL_NOT_RUNNING and DL_COMPLETED without
touching this functions.
* src/Makefile.am:
* src/wget-log.h:
* src/wget-log.c: New files with some functions that were building
up on file-list and are better on a separate file.
* src/main-window.c:
* src/main.c:
* src/file-list.c:
* src/file-list.h:
* src/dialog-close.c: Fixes some wrong child process management
and start/stop child processes. Fixed a bug on the processing of
wget log and I think Im going on the right direction to solve this
problem.
1999-02-26 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* TODO: Added new ideas.
* src/file-list.c (file_list_add): Fixed a bug that occurred before
when I inserted more columns and arranged to don't happen so
easily again.
* src/dialog-new.c (new_url): Fixed a memory leak problem.
* NEWS: Added the column selection.
* src/file-list.c, src/file-list.h, src/main-window.c, src/main.c:
Changed some functions between main-window and file-list because
they belong to the late file. Better handling of child processes
running wget. Now it knows when wget has finished and when wget has
aborted.
Added some new functionality to file list columns.
* src/dialog-close.c, src/dialog-new.c, src/file-list.c,
src/file-list.h, src/gtm.h, src/main-window.c,
src/main-window.h, src/main.c: I have added some new features like
signal handling, keeping only one copy of the program running,
save the current working session. I changed also some structures and
solved some problems with the communication between gtm and wget.
* Makefile.am, NEWS, TODO: Changed the localization of the
gtm.desktop. Updated the NEWS and TODO.
1999-02-24 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* src/Makefile.am, src/dialog-about.c, src/dialog-close.c,
src/dialog-new.c, src/dialogs.h, src/file-list.c, src/file-list.h,
src/gtm.h, src/main-window.c, src/main-window.h: The program now
is capable of adding and removing new files to download. Some new
data structures to keep download information.
* po/POTFILES.in: Added some new files to the source.
* configure.in: Changed the version of the program to 0.1.0
1999-02-21 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
* .cvsignore, AUTHORS, ChangeLog, Makefile.am, NEWS, README, TODO,
acconfig.h, autogen.sh, configure.in, gtm.desktop,
macros/.cvsignore, macros/ChangeLog, macros/Makefile.am,
macros/aclocal-include.m4, macros/autogen.sh,
macros/compiler-flags.m4, macros/curses.m4,
macros/gnome-common.m4, macros/gnome-cxx-check.m4,
macros/gnome-fileutils.m4, macros/gnome-gettext.m4,
macros/gnome-ghttp-check.m4, macros/gnome-gnorba-check.m4,
macros/gnome-guile-checks.m4, macros/gnome-libgtop-check.m4,
macros/gnome-objc-checks.m4, macros/gnome-orbit-check.m4,
macros/gnome-print-check.m4, macros/gnome-pthread-check.m4,
macros/gnome-support.m4, macros/gnome-undelfs.m4,
macros/gnome-vfs.m4, macros/gnome-x-checks.m4,
macros/gnome-xml-check.m4, macros/gnome.m4, macros/linger.m4,
macros/need-declaration.m4, po/.cvsignore, po/ChangeLog,
po/POTFILES.in, src/.cvsignore, src/Makefile.am,
src/dialog-about.c, src/dialogs.h, src/main-window.c,
src/main-window.h, src/main.c: New file.
|