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
|
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.
|