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 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419
|
2007-05-28 David Sedeo <david@alderia.com>
* configure.in: Version 0.99
* NEWS: News for version 0.99
* src/Makefile.am: Add *.h files to sources
* data/gwget.glade: Fix spanish string in glade file. Fix bug #436322
2007-04-23 David Sedeo <david@alderia.com>
* src/main_window_cb.c: Set the preferences window transient of the
main window. Fixes bug #408926.
* src/main_window.c: Set the docked var to true.
* configure.in: Detect Epiphany 2.18
* data/gwget.glade: Set the icon name and the delete_event cb.
* data/org.gnome.gwget.service.in: Add .service for dbus. Fix bug
#425931.
* data/Makefile.am: Create the .service file for dbus.
* src/gwget_data.c: Set the gnome proxy setting correctly. Fix bug
#432621. Patch from Robert Clark (gnome-bugzilla@ratty.org.uk).
2007-04-21 David Sedeo <david@alderia.com>
Patch from Brian Fulkerson <brian@deftdesigns.net> for reduce the
syncs in gconf, useful with large download list.
* src/gwget_data.[ch]: new function gwget_data_set_state_no_sync no
set the state but not update the state in gconf.
* src/main_window.c: Use gwget_data_set_state_no_sync.
2007-02-08 David Sedeo <david@alderia.com>
* src/main_window_cb.c (on_compare_md5_clicked): Clean the code for
the transient window. Now in glade file.
* data/about.glade: Remove unused file
* data/preferences.glade: not required libglade so it can be loaded in
glade3.
* data/gwget.glade: Some little changes. Put md5_window transient of
the properties window.
* data/Makefile.am: Remove newdownload.glade and about.glade
* src/new_window.c: Fix a bug introduced about not take the correct
entry text.
2007-02-07 David Sedeo <david@alderia.com>
* data/newdownload.glade: remove. Put in the main gwget.glade file.
* data/gwget.glade: Add the new_window from the newdownload file.
* src/new_window.c: Load the widgets from the main xml file.
* src/main_window.c:
Put new_window in the main xml file.
Set the sensitive of the clear button according
if there are or not completed downloads.
Use GConfChangeSet for write gconf keys.
Don't call gwget_remember_window_size_and_position on quit (it's a gtk
callback).
* data/gwget.glade: Remove labels from the dialog.
2007-02-05 David Sedeo <david@alderia.com>
* src/main.c:
- Port to Goption.
- Load files even if it's the first instance of gwget.
- Add -d option for destination directory for the downloads
passed in command line. Fixes #403810.
2007-02-02 David Sedeo <david@alderia.com>
* data/gwget.glade: Use of glade-3 format. Get rid of bonobo (-600!
lines)
* src/gwget_data.c (gwget_data_set_menus): only set the menuitems in
the download section of the menu.
(gwget_data_set_popupmenu): New function to set the sensitives
of the popup menu.
* src/main_window_cb.c: Call gwget_data_set_popupmenu before show the
popmenu.
* src/main_window.c: Don't call set menu when the user change the
selection in the treeview. This is done whe the user click the
menuitem.
* src/new_window.c: Remove unneeded var.
2007-01-24 Nicola Mattei <foxdalailama@gmail.com>
* src/md5.{c,h}: added from GNU coreutils 6.7
* gwget.glade: added md5_window and compare_md5 button to
properties window and attached md5_entry activate to
on_md5ok_button_clicked
* src/main_window_cb.h: added on_md5ok_button_clicked and
on_compare_md5_clicked
* src/main_window_cb.c: include gnome-vfs.h and md5.h, define
MD5BUFSIZE, implemented on_md5ok_button_clicked and
on_compare_md5_clicked, added check to set/unset sensitiveness
of compare_md5 button when calling properties window
* src/Makefile.am: added md5.{c,h} to gwget_SOURCES
2007-01-19 David Sedeo <david@alderia.com>
* src/gwget_data.c: Activate clear_button when a donwload finish.
* src/main_window_cb.c: Set sensitive of clear_button to false when
removed all downloads.
* include/ Removed
* configure.in: Remove include dir from the build.
* Makefile.am: Remove include dir from the build.
* src/systray.c: Don't include eggtrayicon.h
* src/Makefile.am: add includedir.
* Move include/*h to src/ dir.
* include/eggtryicon.h: Removed
* include/systray.h: Include notify.
2007-01-18 David Sedeo <david@alderia.com>
* src/eggtrayicon.c: Removed.
* po/Makefile.in.in: Remove from svn
* data/gwget.glade: Add a remove icon to toolbar. Patch from Nicola
Mattei. bug #390769
* include/main_window.h: Don't include eggtrayicon.h
* src/systray.c: Really kill libegg.
2006-12-15 Pema Geyelg <pgeyleg@gmail.com>
* configure.in: Added 'dz' to ALL_LINGUAS
2006-12-11 David Sedeo <david@alderia.com>
Patch from Arjan Timmerman for kill libegg (bug #349258):
* include/main_window.h: Set tray_icon as GtkStatusIcon.
* src/Makefile.am: Remove eggtrayicon.c from the build.
* src/gwget_data.c: Don't put tooltip in the tray icon when download
is completed.
* src/systray.c: Use GtkStatusIcon instead of libegg.
2006-12-11 David Sedeo <david@alderia.com>
* configure.in: Detect epiphany 2.17. Thanks to Joseph Sacco for the
patch.
2006-11-08 David Sedeo <david@alderia.com>
* configure.in: Version 0.98.2
* NEWS: Updated for 0.98.2
* data/GNOME_Gwget_server.in.in: removed
* po/POTFILES.in: Remove data/GNOME_Gwget_server.in
* data/Makefile.am: Remove bonobo deps
* src/main_window_cb.c: Change dialog message in cancel option.
* src/main_window.c: Change dialog when exit.
* configure.in: Detect epiphany 2.16
2006-10-17 David Sedeo <david@alderia.com>
* epiphany-extension/ephy-gwget-extension.c: Dbus fix. Thanks to
Ladislav Michnovic.
2006-09-11 David Sedeo <david@alderia.com>
* src/main_window_cb.c: Set correctly the user and proxy preference.
* src/eggnotificationbubble.{c.h}: Removed, not used anymore.
* src/Makefile.am: Generate gwget-application-client.h.
2006-08-27 Abel Cheung <abel@oaka.org>
* configure.in: Added 'en_GB' 'vi' 'zh_HK' to ALL_LINGUAS.
2006-06-17 David Sedeo <david@alderia.com>
* configure.in: Detect epiphany 2.15. Thanks to Joseph
Sacco for the patch.
2006-05-13 David Sedeo <david@alderia.com>
* src/Makefile.am: Fix generation of gwget-application-service.h
2006-05-13 David Sedeo <david@alderia.com>
Port epiphany-extension to dbus. Get rid of bonobo stuff:
* configure.in: Remove bonobo checks
* epiphany-extension/Makefile.am: Remove bonobo object reference and
use dbus interface
* epiphany-extension/ephy-gwget-extension.c: Use dbus interface
instead of bonobo.
* src/Makefile.am: Remove all bonobo and idl reference.
* src/main.c: Don't include bonobo.h
* src/gwget_data.c: New function gwget_data_new that create a new
gwgetdata struct with the preference download dir.
* src/gwget-application.c: Use gwget_data_new.
2006-05-10 David Sedeo <david@alderia.com>
Patch from Jens Granseuer:
* configure.in: Check gnome-vfs and gnome-vfs-module
* src/main_window_cb.c: Remove gnome-vfs-module-2.0 in the include
* src/main_window_cb.c (on_treeview1_button_press_event): Fix some C99 vs. C89 issue
2006-05-08 David Sedeo <david@alderia.com>
* src/eggtrayicon.c: Patch for work with libnotify 0.4. Thanks to
Joseph Sacco.
2006-05-07 David Sedeo <david@alderia.com>
* configure.in: Version 0.98.1
* include/eggtrayicon.h: Remove eggnotificationbubble includes (Thanks
to Arnaud Fontaine for report it).
2006-05-07 David Sedeo <david@alderia.com>
* configure.in: Version 0.98
2006-05-04 David Sedeo <david@alderia.com>
* src/main_window_cb.c: Fix a segfault on amd64.
(Thank to Arnaud Fontaine)
2006-04-16 David Sedeo <david@alderia.com>
* src/gwget-application-server{.c.h}: readded files for bonobo
component, necesary for epiphany-extension.
2006-04-15 David Sedeo <david@alderia.com>
* include/systray.c: Add name of the icon to gwget_tray_notify.
* src/systray.c (gwget_tray_notify): Set the icon to be displayed in
the notify bubble.
* src/gwget_data.c (gwget_gnotify_finished): Pass the icon name.
2006-04-10 David Sedeo <david@alderia.com>
* src/gwget_data.c: Use run_dialog_error.
* src/main_window.c: Use run_dialog_error.
* data/gwget.glade: Remove dialog that it's unused now.
* src/main_window_cb.c: Use the new run_dialog_error.
* src/utils.c (run_dialog_error): New func.
(run_dialog): Make the dialog HIGify.
* src/main_window_cb.c (on_treeview1_button_press_event): Select the
correct line in the treeview. Patch from Karderio fixes bug #337863.
* configure.in: - Restore bonobo dep because epiphany extension need it.
- libnotify check
* src/eggnotificationbubble.c:
src/eggnotificationbubble.h: Remove since we now use libnotify.
* src/Makefile.am: Include notify and dbus dependeciea. Also added
bonobo deps because epiphany extension need it. Remove
eggnotificationbubble.c (we use libnotify now)
* src/eggtrayicon.c: Remove eggnotificationbubble deps
* src/systray.c: Use count_all_downloads.
2006-03-17 David Sedeo <david@alderia.com>
* configure.in: Detecs epiphany 2.14 (Joseph Sacco). Fix #334915.
2006-03-14 David Sedeo <david@alderia.com>
* src/gwget_data.c: Terminated wget process with SIGKILL. Fix bug
309007.
2006-03-11 David Sedeo <david@alderia.com>
* src/gwget_data.c (gwget_data_update_statistics): Set the title of
the window to the percentage if there are only one download running.
* src/main_window_cb.c: Count the downloads with count_all_downloads
func.
2006-03-09 David Sedeo <david@alderia.com>
Patch for remove bonobo dependecy and use dbus.
* configure.in: Get rid of bonobo dependencies. Include dbus
dependencies.
* src/Makefile.am: Remove bonobo idls reference.
* src/gwget-application-service.xml: New file for dbus interface.
* src/gwget-application.c, src/gwget-application.h: Object for gwget
application.
* src/main.c: replace bonobo stuff with dbus. Remove include of
gwget-application-server.h
* src/main_window_cb.c: Fix some gnome-vfs mime use.
* src/gwget-application-server.h, src/gwget-application-server.c:
Removed.
2006-02-16 David Sedeo <david@alderia.com>
* src/main_window.c (view_selection_func): Fix a crash with recent
version of GNOME (Jens Granseuer). #331432
* src/new_window.c (create_new_window): Fix a crash when url it's
empty (Jens Granseuer). #331431
2006-02-15 David Sedeo <david@alderia.com>
* data/gwget.schemas.in: Set default for proxy_uses_auth to false
(Jens Granseuer) #331308
* configure.in: adds gmodule-2.0 as a dependency (Jens Granseuer)
#331310.
2006-02-14 David Sedeo <david@alderia.com>
* configure.in: Epiphany extension detection fixes (Jens Granseuer)
* src/main.c
* src/wget-log.c: C-99 style fixes (Jens Granseuer)
2006-01-14 David Sedeo <david@alderia.com>
* include/eggtrayicon.h, src/eggtrayicon.c: Updated from rhythmbox to
support notification bubble.
* include/systray.h, src/systray.c: Add gwget_tray_notify
* src/systray.c (systray_load): Remove egg_tray_icon_send_message
call.
(gwget_tray_notify): New func that call egg_tray_icon_notify that use
a bubble.
* src/Makefile.am: Add eggnotificationbubble.c to the build.
* src/gwget_data.c (gwget_gnotify_finished): Call gwget_tray_notify to
show the bubble.
(gwget_data_update_statistics_ui): Remove egg_tray_icon_send_message
call.
2006-01-10 David Sedeo <david@alderia.com>
* src/eggtrayicon.c include/eggtrayicon.h: Updated code from libegg.
2006-01-06 David Sedeo <david@alderia.com>
Patch from Ladislav Michnovic <lmichnovic@suse.cz>
* src/wget-log.c: Correct undefined code.
2006-01-05 David Sedeo <david@alderia.com>
* configure.in: Version 0.97 "The Reyes Magos" release.
* NEWS: update for new version
2005-12-10 David Sedeo <david@alderia.com>
* src/main_window.c (show_prefered_columns), src/main_window_cb.c
(on_boton_pref_clicked): Set the correct value of
limit_speed_spin and limit_simultaneousdownloads_spin.
* src/main_window_cb.c (on_remove_*): Check if really there are
downloads to remove.
(on_edit_menu_activate): Set the sensitive of the remove item if there
are or not downloads to remove.
* data/gwget.glade: Add on_edit_menu_activate.
* include/main_window_cb.h: Add on_edit_menu_activate.
2005-12-06 David Sedeo <david@alderia.com>
Patch from Yoandy Rodriguez <mr.dominus@gmail.com> for autenticate
proxy:
* data/gwget.schemas.in: New vars for proxy user and password.
* include/gwget_data.h: added proxy user and password.
* data/preferences.glade: Preferences for proxy user/password.
* src/gwget_data.c: Set the proxy user/pass env.
* src/main_window.c: Get proxy user/pass from Gconf.
* src/main_window_cb.c: Set proxy user/pass on Gconf.
Set sensitive of the proxy user and password entry on preferences.
2005-11-01 David Sedeo <david@alderia.com>
* configure.in: Added ar in ALL_LINGUAS
2005-11-01 Joseph Sacco <jsacco@ydl.net>
* configure.in: Support for epiphany 1.9
2005-10-16 Pawan Chitrakar <pchitrakar@gmail.com>
* configure.in: Added ne in ALL_LINGUAS
2005-09-13 David Sedeo <david@alderia.com>
* data/gwget.schemas.in: Correct info.
* gwget.desktop.in: Update to follow the spec.
2005-08-10 David Sedeo <david@alderia.com>
* configure.in: Version 0.96
* NEWS for 0.96
2005-08-10 David Sedeo <david@alderia.com>
* README: Update homepage.
2005-08-10 David Sedeo <david@alderia.com>
* src/main_window_cb.c (on_file_menuitem_activate): Set the correct
active state of menuitems.
* include/main_window_cb.h (on_file_menuitem_activate,
count_all_downloads): New functions.
* data/gwget.glade: Change some names of menuitems.
2005-08-10 David Sedeo <david@alderia.com>
* src/main_window_cb.c (new_download): If the download it's recursive,
set the icon "gtk-refresh".
2005-08-08 David Sedeo <david@alderia.com>
* data/gwget.glade: Set correct name of properties_menuitem.
* src/gwget_data.c (gwget_data_set_menus): Check if the gwgetdata is
null. If so, unselect all menuitems in download menu.
2005-07-31 Francisco Javier F. Serrador <serrador@cvs.gnome.org>
* data/gwget.glade: s/Stat_ubar/Stat_usbar/
2005-07-30 David Sedeo <david@alderia.com>
* configure.in: Require Gtk 2.6.
2005-07-30 David Sedeo <david@alderia.com>
Patch Adel Gadllah <adel.gadllah@gmx.net> to support files >2GB:
* include/gwget_data.h, src/gwget_data.c, src/wget-log.c: Set guint64 instead of
guint32 to current and total size vars.
* src/main_window.c: Use file_size string var in gconf instead of
total_size (gconf can't store int64).
* src/main_window_cb.c: Cast to guint32.
2005-07-30 David Sedeo <david@alderia.com>
* src/main_window.c (add_columns): Set all the columns resizables and
sortables.
* src/main_window_cb.c (on_remove_download_activate): Rework this
function.
* src/wget-log.c: Reset some counts when a new file start downloading
in recursive mode.
* src/gwget_data.c: Set correct estimated time.
* src/main_window.c: Remove debug output.
2005-07-26 David Sedeo <david@alderia.com>
* data/gwget.glade: Put icon in open directory popup option. More
icons in menu options.
* include/main_window_cb.c: Declare new functions.
* src/main_window_cb.c (on_remove_download_activate,
on_open_download_activate, on_open_directory_activate): New functions
to remove, open and open directory options for a download.
2005-07-25 David Sedeo <david@alderia.com>
* src/main_window_cb.c: Informs the user that the limit speed
preference only apply to newer downloads. Only informs if there are
current downloads in progress
2005-07-23 David Sedeo <david@alderia.com>
* src/gwget_data.c: Set ftp_proxy env var when use gnome proxy.
2005-07-23 David Sedeo <david@alderia.com>
Add a download menu to the top menu bar:
* data/gwget.glade: Added a Download menu for the options of the
current selected download.
* include/gwget_data.h, src/gwget_data.c (gwget_data_set_menus):
Function to set the correct state of the menu items in the menubar and
in the popup.
* src/main_window.c (view_selection_func): Callback for when a
download it's selected to set the correct state of the menus.
* src/main_window_cb.c: Use gwget_data_set_menus when activate the
popup.
(on_download_menu_activate): Update the menus when the download menu
it's activate.
2005-07-22 David Sedeo <david@alderia.com>
* src/main_window_cb.c: Open the parent folder if the download is
recursive when double click.
(on_view_statusbar_activate): New func to hide or show the statusbar.
* include/main_window_cb.h: on_view_statusbar_activate.
* src/main_window.c: Set the state of statusbar at startup.
* include/gwget_data.h: Add view_statusbar to preferences struct.
* data/gwget.glade: Remove progressbar from status bar. Add view
statusbar option to view menu.
* data/gwget.schemas.in: Add view_statusbar bool key.
2005-06-24 David Sedeo <david@alderia.com>
* src/wget-log.c: Set the correct local filename in recursive mode so
the porcentage columns works.
2005-06-06 Maxim Dziumanenko <mvd@mylinux.ua>
* configure.in: Added "uk" to ALL_LINGUAS.
2005-06-04 David Sedeo <david@alderia.com>
Patch from Mike Castle to fix bug #306332
* epiphany-extension/Makefile.am: search in srcdir instead of topdir.
* src/Makefile.am: search in srcdir instead of topdir.
* src/gwget-application-server.h: remove src/ for include
GNOME_Gwget.h
2005-06-02 David Sedeo <david@alderia.com>
* data/preferencies.glade: Limit the max speed spin button to 1000
instead of 100. Thanks to Marc H. Thoben.
2005-05-15 David Sedeo <david@alderia.com>
* configure.in: bump version to 0.95
* NEWS: update for release.
2005-05-08 David Sedeo <david@alderia.com>
* src/systray.c: Use icon from Julien for downloading.
* pixmaps/gwget-off.png, pixmaps/downloading.png: New icons from
Julien Cegarra.
* pixmaps/Makefile.am: Add downloading.png
2005-05-08 Ivan Yosifov <ivan@yosifov.net>
* src/gwget_data.c: Don't show the downloaded percentage in the speed
column on startup, don't show huge numbers on paused downloads.
* src/main_window.c: If gwget is launched, then closed fast,
wget processes won't get killed. Fixed.
2005-05-08 David Sedeo <david@alderia.com>
Support fot gnotify. Patch from Edward Duffy. See #302768
* include/gwget_data.h: Add icon_name to gwgetdata struct.
* src/gwget_data.c: New gwget_gnotify_finished function.
* src/main_window_cb.c: Use icon_name from gwgetdata struct.
2005-04-21 David Sedeo <david@alderia.com>
* src/main_window.c: Free toolbar_setting.
* src/main_window_cb.c: Only set the icon in download state where it
is in RETRIVING state.
* src/wget-log.c: Set the icon download when in retrive state.
2005-04-18 David Sedeo <david@alderia.com>
* include/systray.c: set_icon_newdownload new function.
* src/systray.c: Put new download icon 1.5 seconds when new download
it is added.
* src/main_window_cb.c: Set the new download icon.
* pixmaps/newdownload.png: New icon for new donwload.
* pixmaps/gwget.png, pixmaps/gwget-off.png: Change gwget icons.
2005-04-16 Ivan Yosifov <ivan@yosifov.net>
* configure.in, epiphany-extension/Makefile.am: added
--with-extension-prefix configure option.
2005-04-09 David Sedeo <david@alderia.com>
* src/gwget_data.c: Set ftp proxy environment variable when the proxy
option it's on. Fix bug #173084.
* src/main_window.c: Show/Hide main_window before the toolbar. Fix
#173082.
2005-04-01 Steve Murphy <murf@e-tools.com>
* configure.in: Added "rw" to ALL_LINGUAS.
2005-03-26 Josep Puigdemont <josep@imatge-sintetica.com>
* configure.in: Added "ca" (Catalan) to ALL_LINGUAS
2005-03-20 Pedro Villavicencio Garrido <pvillavi@gnome.org>
* src/main_window_cb.c (on_about1_activate): use GtkAboutDialog instead
of deprecated GnomeAbout. fix a little memory leak.
2005-03-19 David Sedeo <david@alderia.com>
* src/main_window.c: include gstdio.h. Declare static
gwget_destination_file_exists.
* src/wget-log.c: include utils.h. Declare static
wget_log_read_log_line.
2005-03-19 Ivan Yosifov <ivan@yosifov.net>
* gwget_data.c: call gwget_remember_downloads in
gwget_data_set_state,
gwget_data_set_filename,
gwget_data_set_filename_from_url
2005-03-16 Christian Persch <chpe@cvs.gnome.org>
* epiphany-extension/Makefile.am:
* epiphany-extension/ephy-gwget-extension.c: (handle_content_cb):
Communicate with Gwget via bonobo. Bug #170449.
2005-03-14 Christian Persch <chpe@cvs.gnome.org>
* configure.in: Detect Epiphany 1.6 and 1.8.
* epiphany-extension/.cvsignore:
* epiphany-extension/Makefile.am:
* epiphany-extension/ephy-gwget-extension.c: (handle_content_cb),
(ephy_gwget_extension_init), (ephy_gwget_extension_finalize),
(ephy_gwget_extension_class_init), (ephy_gwget_extension_get_type),
(ephy_gwget_extension_register_type):
* epiphany-extension/ephy-gwget-extension.h:
* epiphany-extension/gwget.xml.in.in:
* po/POTFILES.in: Update Epiphany extension to work with Epiphany 1.6 and 1.8.
Add extension description file.
2005-03-13 David Sedeo <david@alderia.com>
* configure.in: Version 0.94
2005-03-07 Alessio Frusciante <algol@firenze.linux.it>
* configure.in: Added "it" (Italian) to ALL_LINGUAS.
2005-03-05 Julien Cegarra <JulienC@psychologie-fr.org>
* data/preferences.glade, data/gwget.schemas.in :
Modified glade and schema to include options to limit max number
of downloads
* src/main_window_cb.c : Manage new additions in the schema file
* src/gwget_data.c (gwget_data_start_download) :
Check max number of downloads
* src/main_window.c : Add a function to count max number of
downloads (count_download_in_progress)
2005-02-26 Ivan Yosifov <ivan@yosifov.net>
* include/gwget_data.h: Remove line_pos from GwgetData , it is no
longer needed.
* include/wget-log.h: Remove constant MAX_WGET_LINE_SIZE and define
BLOCK_SIZE , which is referanced in
wget_drain_remaining_log. Declare the function
* src/gwget_data.c: Update filename even for non-recursive downloads.
Process pendind log on wget process termination.
* src/gwget_data.c: Created a function gwget_data_set_filename that
updates filename and local_filename.
* src/main_window.c: Reworked gwget_destination_file_exists to use
local_filename. Much simpler now :)
* src/main_window.c: In gwget_get_defaults_from_gconf we also get
local_filename from gconf.
* src/wget-log.c: Rewrite the log capturing around the new function
wget_log_read_log_line. The new function reads
at most one line of log and does not truncate very
long lines like the old code did.
* src/wget-log.c: In wget_log_process_line we intercept the line where
wget tells what filename is it saving under, and
update data structures,GUI,Gconf.
2005-02-22 David Sedeo <david@alderia.com>
* src/systray.c: Present the main window. Thanks to Ivan for the
patch.
2005-02-21 David Sedeo <david@alderia.com>
* src/systray.c: Add a new download item.
2005-02-21 Ivan Yosifov <ivan@yosifov.net>
* src/main_window.c (gwget_get_defaults_from_gconf) :
Currently if a download completes and the user simply takes
the downloaded file and moves it, the next time gwget is started the
download will restart. In gwget_get_defaults_from_gconf we
stat the destination file before adding a completed download
to the list , and if the stat fails - we forget about the
download.
2005-02-21 David Sedeo <david@alderia.com>
* data/gwget.glade: Set toolbar buttons important.
* configure.in: Change the order of epiphany versions.
2005-02-16 David Sedeo <david@alderia.com>
* data/gwget.glade: Fix URL string.
* data/preferences.glade: Put accelerators in strings.
* src/main_window_cb.c: Fix URL string.
2005-02-16 Ivan Yosifov <ivan@yosifov.net>
* src/main_window_cb.c: minor tidying
* src/main.c,
src/gwget_data.c
include/gwget_data.h : Moved gwget_pref initialziation code from main(),
to a new function - gwget_init_pref , declared in
gwget_data.h , defined in gwget_data.c , called in
main()
* src/main_window.c,
include/main_window.h: split gwget_quit() into two functions , namely:
gwget_remember_window_size_and_position() and
gwget_remember_downloads()
* src/gwget_data.c: call gwget_remember_downloads() in
gwget_data_start_download(). This way we won't
loose track of the downloads if gwget is
terminated abnormally ( power surges , hardware
failiures... )
* src/main_window.c: call gwget_remember_window_size_and_position on
configure-events.
We update the download list on change , so why not update
window size on resize (or move) ? :)
2005-02-02 Ivan Yosifov <ivan@yosifov.net>
* src/systray.c: moved the main window popping code from systray_clicked
to pop_main_window , which is called on docklet click and dockelt
destruction
* src/systray.c: if the tray is removed , docklet destroyed , while
running set gwget_pref.docked to FALSE , thus gwget_pref.docked always
reflects the current docking state.
* src/systray.c: no longer pass the main window to systray_load
* src/main_window.c: the main window is show in main_window() or not, depending on
the value of gwget_pref.trayonly
* src/main.c: renamed --trayonly to --force-tray-only , to emphasize that
no sanity checks are done , and if gwget is called --force-tray-only
with no tray , the window will NOT show up.
* src/main.c: reworked save_yourself_handler to pass --force-tray-only
ONLY if gwget_pref.docked == TRUE , which means the tray is present on
logout. If present on logout , it will be there on next login so it is
safe.
2005-01-24 David Sedeo <david@alderia.com>
* configure.in: Version 0.93
2005-01-24 David Sedeo <david@alderia.com>
Patch from Ivan Yosifov for support --trayonly switch. See bug
#164699.
* src/main.c: Support for --trayonly switch in command line.
* src/main_window.c (main_window): Not show main window here. Passed
to systray_load.
* src/systray.c (systray_embedded): Show or Hide the main window if
gwget_pref.trayonly bool variable.
* include/gwget_data.h: Added trayonly bool var the gwget pref.
* include/systray.h: Passed the main window to systray_load.
2005-01-24 David Sedeo <david@alderia.com>
* src/main_window.c (gwget_get_defaults_from_gconf): Set network_mode
if nothing it's set in gconf.
2005-01-20 David Sedeo <david@alderia.com>
* src/main.c: Gnome session support. Patch from Ivan Yosifov
(ivan_yosifov_net). See bug #164699.
2005-01-16 David Sedeo <david@alderia.com>
* data/gwget.schemas.in: Change description of ask_save_each_dl key.
Fix bug #164217.
2005-01-15 David Sedeo <david@alderia.com>
* include/main_window.h, src/main_window.c, systray.c: Rename on_treeview_drag_received to on_gwget_drag_received.
2005-01-15 David Sedeo <david@alderia.com>
* src/new_window.c (create_new_window_with_url): New function.
* src/main_window.c (on_treeview_drag_received): Call create_new_window_with_url if ask_save_each_dl preference it's true.
2005-01-15 David Sedeo <david@alderia.com>
* include/main_window.h: Put xml_new global since we need to manipulate widgets on startup
* src/main_window.c (main_window): Load the xml_new.
* src/new_window.c (on_ok_button_clicked): Add the download dir if it not in the list of paths.
(on_new_browse_save_in_button_clicked): Replace the entry reference with the gtkcomboboxentry.
* data/newdownload.glade: New window no visible on load.
2005-01-15 David Sedeo <david@alderia.com>
* data/newdownload.glade: Replace the save in entry for a gtkcomboboxentry.
* include/main_window.h: Added a list of "save in" paths and a model for the new gtkcomboboxentry.
* src/main_window.c (main_window): Create the model for the gtkcomboboxentry. Added the default directory to the list of paths.
* src/new_window.c: Put the List paths in the gtkcomboboxentry.
2005-01-15 David Sedeo <david@alderia.com>
* src/main_window.c (on_treeview_drag_received): Cleanup.
* data/preferences.glade: Added check button for ask save in for each download. Reallocation of widgets.
* include/gwget_data.h: Add ask_save_each_dl to preferences.
* src/main_window_cb.c (on_boton_pref_clicked, on_pref_ok_button_clicked): Set and get
the new ask_save_each_dl from gconf.
* data/gwget.schemas.in: add ask save in for each download key.
2005-01-15 David Sedeo <david@alderia.com>
* data/gwget.glade: Skip dialogs from taskbar and pager. Hide hseparator for recursive
options dialog.
2005-01-15 David Sedeo <david@alderia.com>
* data/new_download.glade: Delete horizontal separator. Hide from task list.
2005-01-15 David Sedeo <david@alderia.com>
* src/main_window_cb.c (on_pref_ok_button_clicked, on_boton_pref_clicked):
Replace num_retries_entry Entry for a GtkSpin button
* data/preferences.glade: Replace num_retries_entry Entry for a GtkSpin button
2005-01-15 David Sedeo <david@alderia.com>
* configure.in: Added AM_GCONF_SOURCE_2
* data/Makefile.am: Use GCONF_SCHEMA_FILE_DIR for schemasdir
2005-01-04 David Sedeo <david@alderia.com>
* configure.in: Version 0.92.1
2005-01-03 Martin Willemoes Hansen <mwh@sysrq.dk>
* configure.in: Added Danish (da) to ALL_LINGUAS.
* AUTHORS: Converted from iso-8859-1 to utf-8
2005-01-03 David Sedeo <david@alderia.com>
* src/main_window.c (on_treeview_drag_received): Correct message
string. Fix bug #162801.
2005-01-03 David Sedeo <david@alderia.com>
* data/gwget.schemas.in: Don't use abbreviations. Fixed bug #162799
Corrected column titles. Fix bug #162800
2005-01-03 David Sedeo <david@alderia.com>
* data/gwget.schemas.in: Put default values outside of locale tags.
Fix bug 162797.
2005-01-03 David Sedeo <david@alderia.com>
* src/gwget_data.c (gwget_data_set_total_size): check values.
* src/main_window.c (gwget_get_defaults_from_gconf): More checks in
values from gconf.
2005-01-03 David Sedeo <david@alderia.com>
* data/about.glade: Fix GNOME string.
* src/main_window_cb.c (on_about1_activate): Fix GNOME string. Use
translator-credits.
* data/gwget.glade: Remove trailing space.
* data/newdownload.glade: Remove trailing space.
* data/preferences.glade: Remove trailing space.
2005-01-03 Christian Rose <menthos@menthos.com>
* configure.in: Added "sv" to ALL_LINGUAS.
2004-12-27 David Sedeo <david@alderia.com>
* src/new_window.c (create_new_window): More checks about
download_dir.
2004-12-24 David Sedeo <david@alderia.com>
* src/gwget_data.c (gwget_data_create): Check that are corrects values
to create the gwget_data.
* main_window.c (on_treeview_drag_received): Var checks.
2004-12-24 David Sedeo <david@alderia.com>
* src/main_window_cb.c (on_boton_pref_clicked): Check if there are
download_dir in pref.
2004-12-16 Marcel Telka <marcel@telka.sk>
* configure.in (ALL_LINGUAS): Added sk.
2004-12-14 Kostas Papadimas <pkst@gnome.org>
* configure.in: Added Greek (el) translation.
2004-12-08 David Sedeo <david@alderia.com>
* configure.in: Version 0.92
2004-12-08 David Sedeo <david@alderia.com>
* src/main_window_cb.c (stop_all_downloads,
on_cancel_download_activate, on_remove_all_activate): Set the title
when remove download.
2004-12-07 David Sedeo <david@alderia.com>
* src/main_window_cb.c (new_download): Select the download added.
* src/gwget_data.c (gwget_data_update_statistics): If the download
it's selected, put the percentage in the window title.
2004-12-05 David Sedeo <david@alderia.com>
* src/main_window.c (show_prefered_columns): Fix columns to show.
* src/main_window_cb.c (columns check callbacks): Fix columns order.
2004-12-05 David Sedeo <david@alderia.com>
* data/gwget.glade: Rename labels from dialog3.
* src/utilcs.c (run_dialog_information): Use the renamed labels.
(check_server_already_exists): Unused filename variable.
* src/main_window_cb.c (on_cancel_download_activate): Put url in
another line in the warning dialog.
2004-12-05 David Sedeo <david@alderia.com>
* data/gwget.schemas.in: Put default positions to 0. Thanks to
Thorsten Leemhuis.
2004-12-05 David Sedeo <david@alderia.com>
Patch from Julien to add a waiting state and set it when there are a
login incorrect in already dowloading to the same server. Fix bug
#156278.
* include/gwget_data.h: Add a waiting status.
* include/utils.h: Added check_server_already_exists.
* include/main_window_cb.h: start_first_waiting_download added.
* src/gwget_data.c: check if a login fail due to max number of
connexions (using check_server_already_exists), if this is the
case set the download state as WAITING. This fix bug #156278
* src/main_window_cb.c (start_first_waiting_download): When called,
start the first waiting download.
* src/wget-log.c (wget_log_process_line): Check if there are a login
incorrect and set the gwgetdata in waiting state.
2004-12-05 David Sedeo <david@alderia.com>
Patch from Julien:
* src/main_window_cb.c (continue_all_downloads): don't try to continue
a completed download.
(on_properties_activate): Check that there are a gwgetdata selected.
2004-11-27 David Sedeo <david@alderia.com>
* configure.in: Version 0.91
* NEWS: Update news for 0.91
* src/main_window_cb.c (on_about1_activate): Add Julien to Authors.
2004-11-27 David Sedeo <david@alderia.com>
* data/preferences.glade: Removed Image type column check from column
listing tab.
* data/gwget.schemas.in: Removed file type checkbox.
* main_window_cb.c: Remove on_check_file_type_toggled func.
(on_pref_ok_button_clicked): Removed file type from gconf.
2004-11-26 David Sedeo <david@alderia.com>
* src/main_window.c (add_columns): Fix Column Name.
(gwget_get_defaults_from_gconf): Set state if the download is
completed.
2004-11-26 David Sedeo <david@alderia.com>
* src/gwget_data.c (gwget_data_add_download): Check here if the url is
already in our queue.
* src/main_window.c (add_columns): Put the image and name column in
just one column.
* src/new_window.c (on_ok_button_clicked): Don't check here if the url
is on our queue (it's done in gwget_data_add_download).
* src/utils.c (check_url_already_exists): Moved from new_window.c.
2004-11-20 David Sedeo <david@alderia.com>
Added open after download feature.
* data/preferences.glade: Added the checkbox in General tab
* include/gwget_data.h: Added open_after_dl to pref struct.
* src/gwget_data.c (gwget_data_exec): new function to exec the
prefererred gnome app for downloaded file.
(gwget_data_stop_download, gwget_data_process_information): Exec if
the preference if true.
* src/main_window.c (gwget_get_defaults_from_gconf): Get option from
gconf.
* src/main_window_cb.c (on_boton_pref_clicked): Put checkbox in the
correct state.
(on_pref_ok_button_clicked): Get the checkbox state and put it in
gconf.
* data/gwget.schemas.in: Added open_after_dl option, default to false.
2004-11-20 David Sedeo <david@alderia.com>
* src/main_window_cb.c (on_boton_pref_clicked): Put proxy settings
* data/Makefile.am: Fix installation of gwget.schemas file
2004-11-13 Hendrik Richter <hendrik@gnome-de.org>
* configure.in: Added German translation.
2004-11-11 David Sedeo <david@alderia.com>
Patch from: Julien Cegarra <JulienC@psychologie-fr.org>
* gwget.glade: Added dialog3 (information dialog)
* src/utils.c: Added run_dialog_information to display information
dialog using dialog3
* src/new_window.c: Added check_url_already_exits
* src/new_window.c (on_ok_button_clicked): Call check_url_already_exists
before accepting a new download
2004-11-11 David Sedeo <david@alderia.com>
Proxy support, see http://bugzilla.gnome.org/show_bug.cgi?id=157462.
Patch from Paulius Palevicius.
* data/gwget.schemas.in: Added network_mode, http_proxy and
http_proxy_port
* data/preferences.glade: Add a tab for proxy preferences.
* include/gwget_data.h: Add proxy settings to preferences struct.
* include/main_window_cb.h: Added toggle callbacks for proxy
preferences checkboxes.
* src/gwget_data.c (gwget_data_start_download): Set proxy options to wget.
* src/main_window.c (gwget_get_defaults_from_gconf): Get proxy
settings from gconf.
* src/main_window_cb.c (on_pref_ok_button_clicked): Set proxy
preferences. Implement toggles callbacks for proxy preferences
checkboxes.
* src/new_window.c (create_new_window): check if clipboar is null.
2004-11-08 David Sedeo <david@alderia.com>
* configure.in: Added lt to ALL_LINGUAS
2004-11-08 Julien Cegarra <JulienC@psychologie-fr.org>
* data/gwget.glade: Replace icon's label "Stop" and "Resume" to
"Stop all" and "Resume all".
* src/main_window_cb.c (on_boton_pref_clicked): Default to home
directory for "savein" value.
* src/new_window.c (create_new_window): Fix a strange bug in default
to home directory (causing a 0 byte directory name; gwget was then
unable to capture file informations e.g. size).
2004-11-07 David Sedeo <david@alderia.com>
* data/gwget.schemas.in: fix typo.
2004-11-06 David Sedeo <david@alderia.com>
* data/Makefile.am: Fix schemas install dir.
2004-11-04 David Sedeo <david@alderia.com>
* src/main_window_cb.c (continue_downloads, stop_all_downloads): Fix the
loop from all iters in the model.
2004-11-04 David Sedeo <david@alderia.com>
* src/new_window.c (create_new_window): check if there are a url in
the clipboard, if so, put in the url entry. Patch from Lech Jankowski.
* include/new_window.h: Added check_url function.
2004-11-01 David Sedeo <david@alderia.com>
* data/preferences.glade: replace "KB" with "kB/sec"
2004-10-30 David Sedeo <david@alderia.com>
* src/main_window_cb.c (new_download): Correct cur_size and total_size
and percentage in the treeview.
* src/main_window.c (gwget_get_defaults_from_gconf): Get total_size
from gconf.
* src/gwget_data.c (gwget_data_create): Check if the file exists an
put the current size in gwgetdata struct.
2004-10-30 David Sedeo <david@alderia.com>
* configure.in: Check for gconftool
* data/Makefile.am: Install schema.
* data/gwget.schemas.in: new file
2004-10-15 David Sedeo <david@alderia.com>
* configure.in: Correct epiphany detection.
2004-10-14 David Sedeo <david@alderia.com>
* include/Makefile.am: distribute *h files
* autogen.sh: Use automake-1.7
* src/Makefile.am: Put gwget-application-server.h in BUILD_SOURCES
* configure.in: Put ENABLE_EPIPHANY_EXTENSION out of the if statment.
Set enable_epiphany_extension=no when there are not epiphany
installed.
2004-10-14 David Sedeo <david@alderia.com>
* epiphany-extension/Makefile.am: Fix extensiondir.
* configure.in: Informs if the are not epiphany installed. Add
--enable-epiphany-extension switch.
* Makefile.am: Fix SUBDIRS if epiphany-extension is enabled
* src/main.c: Added static to gwget_get_command_line_data function.
* src/systray.c: Use gwget.png and gwget-off.png for notification
icon.
* data/gwget.glade: Change label of Resume toolbar button. Added
tooltips.
* pixmaps/gwget-off.png: new file
* pixmaps/Makefile.am: install gwget-off.png
2004-10-07 David Sedeo <david@alderia.com>
* configure.in: Try to autodetect Epiphany version (1.2, 1.4 or 1.6).
* Makefile.am: Check for epiphany extension compilation
* include/main_window_cb.h: Added continue_all_downloads,
new_download and check_download_in_progress.
* src/gwget_data.c: include main_window_cb.h
2004-10-02 David Sedeo <david@alderia.com>
* data/gwget.glade: Use gwget.png instead of gwget.xpm for
application icon. Put all remove options of the popup in a submenu.
* epiphany-extension/ephy-gwget.c:
* epiphany-extension/ephy-gwget-extension.c:
* epiphany-extension/ephy-gwget-extension.h:
* epiphany-extension/Makefile.am: New epiphany-extension.
* configure.in: Check Epiphany for epiphany-extension compilation.
2004-10-01 David Sedeo <david@alderia.com>
* src/main.c (main): Process urls from command line in the first
instance of gwget.
2004-09-28 Abel Cheung <maddog@linuxhall.org>
* configure.in: Added "zh_TW" to ALL_LINGUAS.
2004-09-22 Julien Cegarra <JulienC@psychologie-fr.org>
* main_window_cb.c: Add continue_all_downloads (Julien Cegarra)
* gwet.glade: Stop button now global and call stop_all_downloads,
preferences button removed, added a continue_all_downloads button
(Julien Cegarra)
2004-09-21 David Sedeo <david@alderia.com>
* configure.in: Added mk to ALL_LINGUAS
2004-09-21 David Sedeo <david@alderia.com>
* include/Makefile.am: Remove install of include files (me).
* include/gwget_data.h: Add gwget_data_add_download (me).
* include/main_window_cb.h: Add check_download_in_progress
(Julien Cegarra).
* include/systray.h: Add set_icon_downloading and set_icon_idle
(Julien Cegarra)
* gwget_data.c (gwget_data_update_statistics):
check_download_in_progress (Julien Cegarra).
* main_window_cb.c (check_download_in_progress): New function that
checks if there are any download in progress and set the icon type
(Julien Cegarra).
* systray.c (systray_load): Add a eventbox to the systray icon.
(systray_load_icon): New function that returns a gdkpixbuf image
based in the filename.
(set_icon_downloading): New function that set the icon of type
downloading.
(set_icon_idle): New function that set the icon idle.
All of this by Julien Cegarra.
* pixmaps/gwget.xpm: Change icon (Julien Cegarra).
* pixmaps/download32x32.xpm: New file (Julien Cegarra).
* pixmaps/waiting32x32.xpm: New file (Julien Cegarra).
2004-09-19 David Sedeo <david@alderia.com>
* src/gwget_data.c (gwget_data_add_download): New function
that get a gwgetdata struct and add to the main window.
* src/gwget-application-server.c
(impl_gwget_application_openURLSList): Call gwget_data_add_download.
* src/new_window.c (on_ok_button_clicked): Call
gwget_data_add_download instead of do it ourself in this function.
2004-09-19 David Sedeo <david@alderia.com>
* src/main.c: change Activation_ID. Add function to get data from
command line. Send the urls list to the bonobo server.
* src/gwget-application-server.c
(impl_gwget_application_openURLSList): Function to manage the urls
passed from corba clients
* src/GNOME_Gwget.idl: Added openURLSList function
2004-09-13 David Sedeo <david@alderia.com>
* data/preferences.glade: connect delete_event with
on_pref_cancel_button_clicked (Julien Cegarra)
2004-09-11 David Sedeo <david@alderia.com>
* src/main.c: Check instance of bonobo
* src/gwget-application.[ch]: bonobo gwget application
Object. Currently doesn't recive message :(
* src/Makefile.am: Added instructions for bonobo object
compilation.
* configure.in: Check Bonobo stuff
2004-09-11 David Sedeo <david@alderia.com>
* configure.in: Version 0.14.1
2004-09-11 David Sedeo <david@alderia.com>
* src/main_window_cb.c (on_boton_pref_clicked):
Apply state of limit_speed_check and resume_at_start
(Julien.Cegarra).
2004-09-10 David Sedeo <david@alderia.com>
* src/main_window_cb.c (on_treeview1_button_press_event):
return False if can open the default application in double click.
2004-09-08 David Sedeo <david@alderia.com>
* src/main_window_cb.c (new_download):
Dont free mime var. This fix a crash.
Dont add the download to the download list
(already added).
2004-09-05 David Sedeo <david@alderia.com>
* src/main_window.c (on_treeview_drag_received):
Fix compilation build with gcc 2.95 (Jens Granseuer).
2004-08-31 David Sedeo <david@alderia.com>
* pixmaps/Makefile.am: Fix icon installation.
* gwget.desktop.in: Icon gwget.png instead of gwget/gwget.png.
2004-08-29 David Sedeo <david@alderia.com>
* configure.in: Added fr to ALL_LINGUAS.
2004-08-24 Jarkko Ranta <jjranta@cc.joensuu.fi>
* configure.in: Added fi to ALL_LINGUAS.
2004-08-21 Miloslav Trmac <mitr@volny.cz>
* configure.in: Added cs to ALL_LINGUAS.
2004-08-20 David Sedeo <david@alderia.com>
* configure.in: Version 0.14
2004-08-18 Estêvão Samuel Procópio <tevaum@cvs.gnome.org>
* configure.in: Added pt_BR to ALL_LINGUAS.
* ChangeLog: Converted from ISO-8859 to UTF-8.
2004-08-17 David Sedeo <david@alderia.com>
* data/gwget.glade: some UI fixes.
* src/utils.c (run_dialog): Set title in bold.
Thanks to Pedro Villavicencio for both patches.
2004-08-16 David Sedeo <david@alderia.com>
* data/preferences.glade: Change "No create directories"
to "Don't create directories"
2004-08-14 David Sedeo <david@alderia.com>
* src/systray.c (systray_clicked): Hide main window
when clicked if main window is visble.
2004-08-14 David Sedeo <david@alderia.com>
* data/about.glade, data/gwget.glade,
data/preferences.glade: Fix some translations
* main_window_cb_c: "inactive" instead of "not running"
2004-08-14 Duarte Loreto <happyguy_pt@hotmail.com>
* configure.in: Added Portuguese (pt) to ALL_LINGUAS.
2004-08-14 Adam Weinberger <adamw@gnome.org>
* configure.in: Added en_CA to ALL_LINGUAS.
2004-08-13 Amanpreet Singh Alam <aalam@redhat.com>
* configure.in: pa(Punjabi) locale is added
2004-08-06 David Sedeo <david@alderia.com>
* src/main_window.c: include <locale.h> to compile
in Freebsd systems. Fix #149378.
(gwget_get_defaults_from_gconf): Put initial state to
not running.
2004-08-05 David Sedeo <david@alderia.com>
* src/main_window_cb.c: Fix wrong gconf type for max_speed.
Fixed #149038. Thanks to Baris Cicek.
* src/gwget_data.c: Pass the limit option to wget.
* src/main_window.c: Set the limit speed to the spin button
in preferences window.
2004-08-02 Baris Cicek <baris@teamforce.name.tr>
* data/preferences.glade: Fixed a typo
2004-07-30 David Sedeo <david@alderia.com>
* data/gwget.glade: Fix typo in popup window
* configure.in: update version.
* include/main_window_cb.h: Added two functions for
limit speed option.
* include/main_window.h: Put correct order of IMAGE_COLUMN
* include/gwget.h: Added limit_speed and max_speed
to preferences struct.
* src/main_window.c (gwget_get_defaults_from_gconf): Get
limit speed pref from gconf.
(show_prefered_columns): Set the buttons of limit
speed sensitive according to gconf pref.
* src/main_window_cb.c (on_pref_ok_button_clicked): Set
the limit speed pref into gconf.
(on_limit_speed_check_toggled): new function to set
sensitive the spin button of the limit speed.
* data/preferences.glade: Added limit speed option
2004-07-28 David Sedeo <david@alderia.com>
* data/gwget.glade: Modify the main window title.
* data/preferences: Added limit speed option.
* include/main_window_cb.h:
on_limit_speed_check_toggled added.
2004-07-22 David Sedeo <david@alderia.com>
* include/gwget_data.h:
Added gwget_data_set_filename_from_url.
* src/wget-log.c (wget_log_process_line):
Set the correct filename in recurse mode.
Set the correct local filename in recurse mode.
* src/gwget_data.c (gwget_data_start_download):
Check no_create_directory always in recurse mode.
Added wmv to multimedia downloads.
* src/new_window.c (on_ok_button_clicked):
Show recursivity options dialog with html, htm, php and
asp files.
2004-07-21 David Sedeo <david@alderia.com>
* src/main_window.c (create_model): Fix order of
creation of the file type column.
2004-07-20 David Sedeo <david@alderia.com>
* include/main_window.h: Added drag types.
Fixed IMAGE_COLUMN position.
* src/main_window.c: Fixed URI_LIST type drag.
Get view_file_type from gconf.
* src/trayicon.c: Support D&D to the icon.
* src/main_window_cb.c: Support for file type
in column listing preferences. Fixed getting the
preferences from the ui.
* src/gwget_data.h: Added view_file_type (for column)
to preferences struct.
* data/preferences.glade: Added check box for the file type
column.
2004-07-13 David Sedeo <david@alderia.com>
* src/main_window_cb.c (on_about1_activate):
Some cosmetic change to about dialog.
* data/gwget.glade, data/preferences.glade,
data/new_download.glade: UI Fixes. Thanks
to Miroslav Strugarevic.
2004-07-10 David Sedeo <david@alderia.com>
* src/main_window_cb.c (on_browse_save_in_button_clicked):
Use filechooser. Removed callbacks from the old fileselection.
* src/new_window.c (on_new_browse_save_in_button_clicked):
Use filechooser. Removed callbacks from the old fileselection.
* data/newdownload.glade data/preferences.glade:
Removed fileselections.
2004-07-09 David Sedeo <david@alderia.com>
* include/main_window.h: added IMAGE_COLUMN
* src/main_window_cb.c (new_download):
Put the icon of the file mime type in the column.
* src/main_window.c (add_column): Create the image column.
2004-07-03 David Sedeo <david@alderia.com>
* include/main_window.h: downloads Glist
* src/main_window_cb.c (on_about1_activate):
- fix logo location
- removed documenters var.
(all):
- Use gwget2 dir instead of gwget in GConf
* src/main_window.c:
- Use gwget2 dir instead of gwget in GConf
- Include utils.h
* src/systray.c: Added download submenu
* include/gwgetdata.h: Added state_str to gwgetdata struct
* src/gwgetdata.c: Set the state_str
* po/gwget.pot: udpated
* po/es.po: Updated
* data/newdonwload.glade: window icon
2004-06-25 David Sedeo <david@alderia.com>
* include/main_window.h: Added tray_tooltip var.
* src/gwget_data.c (gwget_data_update_statistics_ui): Set
tray_icon tooltip if download completed.
* src/systray.c: Create the tray_tooltip
2004-06-21 David Sedeo <david@alderia.com>
* configure.in: Added tr to ALL_LINGUAS
* po/tr.po: Added turkish translation (Thanks to Mark R. Pariente)
2004-06-13 David Sedeo <david@alderia.com>
* systray.c (systray_generate_menu): Add a separator item.
2004-06-12 David Sedeo <david@alderia.com>
* data/newdownload.glade: Changed name of callback of ok button.
* include/gwget_data.h: Added docked to Preferences struct.
* include/main_window.h: Added gwget_quit function.
* src/systray.c: Connect Quit menu item to gwget_quit function.
* src/main_window.c: call gwget_quit on delete event if not docked.
* src/main_window_cb.c (on_quit1_activate): call gwget_quit.
2004-06-12 David Sedeo <david@alderia.com>
* systray.c, main_window.c:exit on delete event if not docked.
|