home *** CD-ROM | disk | FTP | other *** search
/ Windows News 2011 January - Disc 1 / WN199_CD1.iso / Onglet2 / wxDownloadFast / wxDownloadFast_0.6.0.exe / embedded / InfoAfter.txt < prev    next >
Text File  |  2007-09-24  |  5KB  |  143 lines

  1. wxDownload Fast
  2. =====================================================================
  3.  
  4. 1) Introduction
  5. ---------------
  6. This program was created with the intention of replacing existing
  7. commercial download managers. It will have many options and be as complete
  8. as possible.
  9.  
  10. 2) Features of wxDownload Fast
  11. ---------------------------------
  12. * Faster downloads (with Segmented/Multi-threaded/Accelerated transfers)
  13. * Download resuming (Pause and restart where you stopped)
  14. * Download scheduling
  15. * Organizes files you have already downloaded
  16. * View server messages (HTTP, FTP, file://). No HTTPS support.
  17. * Available in multiple languages and easily translated.  Now available in
  18.   Portuguese [Brazil], Spanish, English, German, Russian, Hungarian, Polish,
  19.   French, Indonesian, Turkish and Dutch
  20. * Connection to FTP/HTTP servers which require a password
  21. * Calculates the MD5/SHA1 checksum of downloaded files so they can be easily verified
  22. * Firefox integration through FlashGot
  23. * Can be used as a portable download manager (Windows only)
  24. * Can be used over proxy servers(HTTP proxy support)
  25.  
  26. 3) Command line Parameters
  27. --------------------------
  28. [URLS],
  29. URLs of the files to be downloaded are separated by spaces
  30. Ex: www.foo.com/foo.exe ftp://ftp.foo.com/foo2.exe http://foo.com:8080/foo3.exe
  31.  
  32. --hide,
  33. Start with the the main window hidden
  34.  
  35. --notray,
  36. Don't show the icon in the system tray
  37.  
  38. -list TEXTFILE, --list=TEXTFILE,
  39. Parse a text file with the list of files to download
  40.  
  41. -destination DIR, --destination=DIR,
  42. Destination directory
  43.  
  44. -reference URL, --reference=URL
  45. Parse a URL that will be set as a reference URL
  46.  
  47. -comments COMMENTS, --comments=COMMENTS,
  48. Add comments for the download
  49.  
  50. 4) Firefox Integration
  51. ----------------------
  52. To integrate with Firefox, do the following:
  53.  
  54. 1) Install the FlashGot extension for Firefox (www.flashgot.org/getit)
  55. 2) After restart the Firefox, go to Tools -> FlashGot -> More Options
  56. 3) Now select the "wxDownload Fast" on the Download Manager's List
  57.  
  58.  
  59. 5) Installation
  60. ---------------
  61.  
  62. 5.1) Windows 2000 & XP
  63. ----------------------
  64.  
  65. - Installing from binary
  66.  
  67. Is available in the page of the program contends this program.  This archive is in
  68. the form of an installation program.
  69. To install the program follow the wizard.
  70.  
  71. Then to change the Language from Portuguese to English do this:
  72. 1) Start the program
  73. 2) Go to menu "Ver->Idiomas->"Ingles"
  74.  
  75. - Compiling source code
  76.  
  77. To build the program on Windows, MinGW and MSys [ www.mingw.org ] are required, 
  78. which are the GCC compiler for Windows and Unix environments respectively.  
  79. Other requirements include the library wxWidgets [www.wxwidgets.org ],
  80. built with the options: --enable-xrc --enable-unicode.
  81. Once you have the above requirements you can change to the directory where the source 
  82. code was unpacked and type:
  83. # make -f Makefile.gcc BUILD=win32
  84.  
  85. With this, the executable will be generated. After that, you can copy the executable to
  86. another place and run it from there.
  87.  
  88. - Compiling source code (Portable mode)
  89.  
  90. Follow the same instructions of the last section, but add the parameter PORTABLE=1 to
  91. the make command:
  92. # make -f Makefile.gcc BUILD=win32 PORTABLE=1
  93.  
  94.  
  95. 5.2) Linux
  96. ----------
  97.  
  98. - Compiling source code
  99.  
  100. GCC and the program make are required to build the program in the Linux.
  101. Other requirements include the library wxWidgets [ www.wxwidgets.org ], built with
  102. the options: --enable-xrc --enable-unicode.  Once you have the above requirements you can change to
  103. the directory where the source code was unpacked and type:
  104. # ./configure
  105. # make
  106.  
  107. With this, the executable will be generated. After that, you can copy the executable to
  108. another place and run it from there. To do this, type:
  109. # su
  110. # make install
  111.  
  112. - Cross-compiling source code for windows
  113.  
  114. This method has as objective to create a Windows executable without the Windows.
  115. In this case it's necessary to install MinGW on linux and build the wxWidgets
  116. library with the follow command:
  117. # ./configure --prefix=/usr/i586-mingw32msvc --host=i586-mingw32msvc --target=i586-mingw32msvc --with-msw --enable-monolithic --disable-shared --enable-xrc --enable-unicode
  118. # make
  119.  
  120. Where "/usr/i586-mingw32msvc" is the directory that the MinGW was installed.
  121.  
  122. Then to build the wxDownload Fast do:
  123. # ./configure --prefix=/usr/i586-mingw32msvc --host=i586-mingw32msvc  --with-wxdir=/home/user/wxWidgets-2.8.0
  124. # make
  125.  
  126. Where "/home/user/wxWidgets-2.8.0" is the directoy where you built the wxWidgets.
  127.  
  128. OBS: To build in the portable mode use the parameter: --enable-portable
  129. # ./configure --prefix=/usr/i586-mingw32msvc --host=i586-mingw32msvc  --with-wxdir=/home/user/wxWidgets-2.8.0 --enable-portable
  130. # make
  131.  
  132.  
  133. 5.3) Mac OS X
  134. ----------
  135.  
  136. - Compiling source code
  137.  
  138. This has not been tested but should work using the same steps as Linux. Please report
  139. your experiences.
  140.  
  141.  
  142.  
  143.