- Put the log and pid files into VARBASE/log and VARBASE/run respectively.
- Let the user override several variables from rc.conf.
Per wiz@'s suggestion.
Bump PKGREVISION to 1.
2006/06/19: version 2.7.7 = tag release-2-7-7
5196: IP: Store IPs with two int values instead of four to save RAM (pango)
5195: BT: Log tracker error messages in UTF-8
5194: HTML: Print warning on opening page when enable_servers is set to false
2006/06/18
5191: HTML: remove sysinfo on opening page & option motd_html
5192: Fix deactivation of verbosity "gui"
5163: Configure: CVS SCM support for Mac OS X 10.3 (gstat)
2006/06/17
5158: HTML: Use table for printing buildinfo and runinfo data (schlumpf, pango)
2006/06/16
5187: New option: BT_import_new_torrents_interval,
ignore Thumbs.db & desktop.ini in directory lists
5186: GUI: Send only non-empty real_startup_message string
2006/06/15
5156: HTML, improve Options output (schlumpf)
* new command html_mods_use_js_helptext (true|false)
to change display of helptext between javascript popup`s and html table
* fix some padding and border bugs
* add "toggle js_helptext" button to 'vo' and 'voo' to directly toggle the style
2006/06/12
5061: New option small_files_slot_limit to push release of small files (pango)
all files below the configured file size (default 10kb) are uploaded
through one reserved slot
5144: Increase default max_upload_rate to 10 (schlumpf)
5177: HTML, Options: update display after changing options (schlumpf)
5176: Swarming: Change error message text and verbosity for BAD WRITE
BAD WRITE is not really an error, MLDonkey just receives unwanted data
5175: GTK1 oldgui: Last compile fix for abstract verification bitmaps (pango)
5174: Abstract verification bitmaps:
compile fixes for GTK1 GUIs, move generic code to CDK (pango)
5173: Swarmer: Small fix for merged downloads (WIP7b') (pango)
2006/06/11
5172: EDK: Log error which causes pausing a download
5171: New command group "Driver/Users",
print help text for "Bad number of arguments" error message
5170: Fix default max_indirect_connections, minimum is 30
5169: HTML, Options: add description to option section buttons,
remove 'save' button (schlumpf)
5168: Global module to abstract verification bitmaps (pango)
5167: Swarmer: Fix saving ini data for merged downloads (pango)
5166: Swarmer: New module to abstract verification bitmaps (pango)
2006/06/07
5164: CommonSwarming: Pangos WIP5e'
* When cutting a range, the reciprocal link of the range after the right part
still references the left part
* When cutting a block in two parts can before empty, but then can also before
complete (if they have no ranges left)
* Added bad_writes_is_back patch
* When find_range can only find ranges already being downloaded, it now first
does a quick check to see if there's no other, probably more interesting,
blocks remaining. If so, it forces a block change (report no more ranges left)
* While it's a good feature in itself, it's probably a workaround for a bug in
select_block (?); It seems that blocks oversaturated with sources happen way
too often (4 or 5 sources on a single range shouldn't happen).
* Compute the size of unselected ranges in each blocks, so that sources don't
"rush" on blocks just left by a source.
* Some BAD WRITEs seems to happen because we forget ranges we requested
(when switching blocks ?)
* Replaced call to clear_uploader_ranges by a call to clear_uploader_intervals
in BitTorrent support Choke message handler.
5063: EDK: remove duplicate entries in shared_files_new.ini (pango)
5160: Remove stale avifile.ml, clean commonMultimedia logging
5159: Compute magic values only when needed
5157: add some line breaks to option help text for shorter lines (schlumpf)
2006/06/01
5153: New command: force_web_infos to manually download web_infos URLs
5152: Do not connect friends from disabled networks
5151: Options: New stringvalue functions needed for multiuser support
5150: Log: Fix log when server list is empty in check_blocked_servers
2006/05/31
5149: Log: Some additions for commonSwarming
5148: Mail: Fix for multiline SMTP responses (zet)
5143: HTML/Telnet: Country codes for servers
5147: G1/G2: Display proper filename (and therefore support rename) (zet)
5145: EDK: Fix md4 hashing when filesize is an exact multiple
of edk chunk size, MLDonkey is now eMule-compatible (zet)
2006/05/30
5141: Swarmer: New option swarming_block_selection_algorithm (pango)
* Allow to choose swarmer block selection algorithm at runtime.
- Algorithm 1 is the current default algorithm
- Algorithm 2, from WIP3o patch, should try harder to complete partially
downloaded chunks, specially with Bittorrent. It was previously
reverted because of unknown performance problem (slower download ?)
5140: Update .cvsignore files (pango)
5138: Catch ip banned exception (zet)
5137: HTML: Fix display of file magic values with '
5136: FileTP: fixes and enhancements (zet)
* Add "FTP-chunk_size" option (0 = no chunks = download full file at once)
-- A chunk_size would be required if downloading from > 1 source
* Add FTP downloads to bandwidth controller (for stats & speed limiter)
* Support FTP sites that do not buffer input (MS FTP)
* Add support for user/pass (http://user:pass@site or ftp://user:pass@site).
This also adds user/pass support to http_client.
* Error codes from HTTP (ie: 404) and some from FTP are supported (530 sometimes
signals a retry, sometimes a login failure so a regex was used (lftp)).
Downloads are paused when a hard error is received (and noted in the log).
2006/05/25
5131: New option gui_log_size: number of lines for GUI console messages
5129: HTML: Display client_bind_addr in options menu
5124: Log: Login messages can be disabled with verbosity "no-login"
5130: CommonSwarming: Pangos WIP4a'
thanks for testing goes to SchAmane, CruX, jave (forgot someone?)
That's a huge patch over CommonSwarming module (whose job is to select what data
to ask from connected sources, and the merging of received data),
I hope I'm not forgetting anything important :
* first, it's a mantainance patch; Lots of code have been reworked for
readability and compactness (iterators...), functions grouped together,
sometimes renamed to more descriptive names. Lots of comments have been added,
including the description of invariants I've found, and a nice ASCII art
schema of the swarming datastructures ;)
* naming has been made more consistant, to differenciate chunks (from each
network view) from blocks (internal to swarming), and intervals (list of
int64 * int64 beggining/end offset pairs)
* Support for bitmaps encoded as strings (AvailableCharBitmap) removed, since
it's no longer used anywhere; use the more compact AvailableBitv instead
* Removed range_current_begin from ranges, it's enough for a range to have a
beginning and a end ;)
* Rewrote compute_block_num to have precise preconditions, and algorithm proof
* Added some assertions to better enforce invariants
(on verification bitmaps, for example)
* Allocation of ranges is now delayed until the very last moment, instead of
when a chunk starts being downloaded. Main benefit (beside small memory gain)
is that requests for different ranges sizes can be fulfilled at any time.
* Modified received function so that no BAD WRITE message can happen anymore:
condition when data that does not start from the beginning of a range is
correctly detected and data discarded
(since ranges cannot handle that case anyway)
* Rewrote a much simpler version of present_intervals
* Rewrote block selection algorithm for readability and flexibility; select_block
simply "folds" over all available blocks, using compare_choices function to
keep the best available one(s). May need some more CPU (no fast exit)
* Fixed donkey uploaders calls when disconnected
* Reenable the copy of identical chunks between files. Opportunities for copies
are checked every 5 minutes.
* Made file writing a bit smarter in Unix32 module so that writing zeroed chunks
(as can happen a lot with chunks copying) on an otherwise sparse temp file
does not allocate disk space. A bit hackish.
2006/05/23
5121: EDK: Remove obsolete option emule_compression
5122: improve block_list output and runinfo ip blocking (schlumpf)
5123: Fix Invalid_argument("UTF8.length") bug in HTML, down-/uploaders
2006/05/21: version 2.7.6 = tag release-2-7-6
5119: HTML, Options: Include Wiki link in options names
5117: Telnet: replace "avail" by "last seen"/fix non-ASCII-filename column width
2006/05/20
5118: Log: Correct prefix for donkeyClient.ml
5116: HTML: Fix javascript popup in search results for Opera (dextarr)
5112: Fix lprintf_nl (search/replace ()'s) (zet)
5113: Fix config/wget.c (zet)
5111: Configure: Fix $SOURCE_DIR broken since patch #5095
5109: New option: pause_new_downloads
- Set to true all new downloads will be paused automatically.
- This option is automatically set to false on core start.
2006/05/19
5107: Configure: Check for MAGIC_ERROR in magic.h
5106: BT: only send stop once on exit and then wait for success (Amorphous)
5105: BT: Avoid starting torrent which has the same name
as a currently downloading torrent
2006/05/18
5097: HTML: Improved DL multiline input button (jave)
5103: Fix compile bug in magiclib_stub.c on Solaris & NetBSD
2006/05/17
5101: G2: Gnutella2 fixes/log updates (zet)
- Gnutella2 (G2) is working again
- Re-enables search result networks
- Log logged-in users
5098: EDK: Update option description for initial_score
2006/05/15
5090: Http_client: Fix 302 redirect when Location starts with "."
and filename changes
5095: Configure: improve libpng detection, optical improvements
2006/05/14
5094: Wget: New internal variable req_save <bool>
5093: CommonSwarming: Verbose error message if file size does not match
5092: HTML, rss: Add startbt link
5091: HTML: update EDK history links
2006/05/13
5089: IPBlock: Print seperate lists in block_list command for IPs
blocked by local and web IP blocklists (pango)
2006/05/12
4976: Filetype recognition with libmagic
- new debug command: debug_dir, prints magic values for all files
- display file magic values in vd & upstats HTML popup & vd #num
NetBSD/Solaris users have to disable this function "--disable-magic"
until this bug is fixed:
http://savannah.nongnu.org/patch/?func=detailitem&item_id=4976#comment9
5088: Gnutella/FT/http_client fixes (zet)
- Gnutella (G1) is working again
2006/05/11
5087: HTML, upstats: new tooltip with complete filename,
respect max_name_len for filename
2006/05/10
5083: HTML: Update EDK file history links (unease)
2006/05/09
5082: FileTP/Fasttrack/Soulseek: Fix splitting chunks off-by-one (pango)
5081: Change default ip_blocking_descriptions to false for faster startup
5080: Only print servers of enabled networks (pango)
5079: Ignore ._* in directory lists (pango)
5078: Telnet: Remove HTML code from sysinfo command
5077: FT: Fix fasttrack connection problem and adds a bootstrap nodes file url
Removes old/broken imesh bootstrap node (zet)
2006/05/07
5076: Gd: Do not disable html_mods_vd_gfx if core is compiled without GD support
5075: DNS round robin, keep all IP addresses associated with DNS names,
and return next one upon each request. (pango)
2006/05/06
5069: EDK: Fix broken unicode URIs parsing broken since 2.7.4 (pango)
5074: Change default Ocaml version to 3.09.2
5073: Update default IP blocklist URL, replaced
http://www.bluetack.co.uk/config/antip2p.txt with
http://www.bluetack.co.uk/config/level1.gz
5068: New global option user_agent, current option BT-user_agent overrides
the global value in BT module (pango)
5064: BT: only try to connect to http trackers (pango)
5040: Overnet: Open TCP port only when network is active
2006/04/14
5036: BT: Correctly parse .torrent files with an empty directory (again)
5039: Fix dp500 compile
2006/04/13: version 2.7.5 = tag release-2-7-5
2006/04/10
5035: Make Soulseek, Opennapster, DirectConnect compilable again
This does not mean the network modules work again,
they only compile again. More work is needed.
5032: CommonSwarming/WIP2: Some function rewrites and comments (pango)
2006/04/09
5031: Merge CommonSwarming and CommonSwarming2 code (pango)
2006/04/08
5029: EDK: Remove set_brothers command and brotherhood option
5030: Update config.guess and config.sub to version 2006-02-27
4778: CommonSwarming: In addition to the first and last chunk also load
the second last chunk if available before the rest to improve preview
5028: New environment variable for file_completed_cmd:
$DLFILES (number of downloading files)
5027: EDK: Deactivate DonkeySUI if /dev/urandom is missing
2006/04/06
5021: Fix compile bug in tryopen patch when bzip2 is disabled
5020: Allow compile with Ocaml 3.09.2 CVS code,
3.09.1 will stay default for MLDonkey-compiled Ocaml
5016: Options save: Really fix bug addressed in patch #5015
2006/04/05
5015: Fix option file saving bug introduced in tryopen patch
2006/04/03
5011: EDK: Update server info received by UDP when
update_server_list_server false (pango)
5009: Ignore files .DS_Store and ._filename.ext in dir listings on all platforms
5006: Small logfile change
5004: Automatically closes opened descriptors using "tryopen pattern" (pango)
5005: CommonBlocking: Do not block IPs when GeoIP database is not loaded
2006/04/02
5003: BT: Improve client recognition (zet)
5002: Overnet: Fix Out of Memory Exception (zet)
2006/03/31
4997: Swarming: correctly create a new range when one is splitted (pango)
2006/03/29
4931: CommonBlocking: Block/allow IPs by country codes (requires GeoIP) (pango)
- new options:
- ip_blocking_countries, insert country codes here
- ip_blocking_countries_block true|false
false: use ip_blocking_countries as block list,
all other countries are allowed
true: use ip_blocking_countries as allow list,
all other countries are blocked
4995: HTML: Fix friends filelist display
4996: HTML: Add/remove for web_infos (vwi), update old contact.dat URL
- web_infos, rename command add_url to urladd, new command urlremove
- prints option help texts for web_infos and calendar command
- file_kinds are now printed as list with descriptions for easier setup
2006/03/19
4917: HDD space check
- New options:
hdd_send_warning_interval
Send a warning mail each <interval> hours for each directory,
0 to deactivate mail warnings.
hdd_temp_minfree
Mininum free space in MB on temp_directory, minimum 50
hdd_temp_stop_core, default false
If true core shuts down when free space on temp dir is below
hdd_temp_minfree, otherwise all downloads are queued and a
warning email is sent.
hdd_coredir_minfree
Mininum free space in MB on core or log directory, minimum 20
hdd_coredir_stop_core, default true
If true core shuts down when free space on core dir is below
hdd_coredir_minfree, otherwise all ini file saving is stopped
until core shutdown and a warning email is sent.
Logging is sent to RAM when log dir is full.
The hard-coded minimum values can not be circumvented, MLDonkey will always
perform these HDD space checks once a minute.
2006/03/18
4985: Log file clean-up for verbosity = "md4"
2006/03/17
4981: Dllink: Fix wrong referer in HEAD request
4980: Multiuser: internal admin_user variable
4979: Fix hashing large number of files
2006/03/15
4972: FileTP: Allow ftp:// downloads via dllink command
4971: BT: Allow read-only access for shared files
4967: CommonUserDb: Keep old user database updated for easy downgrades
2006/03/09
4962: BT: New command "startbt" to force the start of a torrent download (jave)
2006/03/08
4963: Re-apply $DEVFLAGS to Makefile.in (pango)
4961: EDK: New default URL for server list download
4960: Ignore .DS_Store on MacOSX, BT: ignore dirs in torrents/incoming (pango)
2006/03/06
4954: New function Unix32.owner to read user and group entry of a file
- to debug use command debug_fileinfo <file>
- renamed debug command "disk" to "debug_disk"
- renamed debug command "rlimit" to "debug_rlimit"
4950: Close unneeded file descriptors
2006/03/05
4946: System-wide cookies and referers option
- MLDonkey will not move data from bittorrent.ini to downloads.ini
- This data will be used in web_infos, dllink and BT module.
4951: GUI: Update server country codes after loading GeoIP data
4949: Gzip/Bzip2: Close opened FD after opening an invalid archive file
4945: BT: Automatically start new torrents downloads
- new directory $MLDONKEY_DIR/torrents/incoming, all files present
in this dir are started automatically, its scanned every 10 seconds.
2006/03/01
4939: Support for compressed ipfilter.dat files (.gz, .bz2 or .zip) (pango)
4930: giFT GUI: Authentication support (pango)
- login with giFTcurs now has to be done like this: giFTcurs -p user:password
2006/02/26
4938: Improve MLDonkey system user database
due to older problems with HTML interface:
- renamed command add_user to useradd
- renamed command remove_user to userdel
- user name is printed in browser title when bwstats is active
pkgsrc:
ulimit in startup script not necessary any longer, code now uses setrlimit.
src:
2006/02/26: version 2.7.4 = tag release-2-7-4
2006/02/25
4928: BT: Fix invalid encoding in announce URL (darkfader)
- removed old, broken version and added new version
2006/02/23
4934: FileTP: Small improvements
- fix download restart bug when core is restarted, sources where not loaded
- save referer values to files.ini
- display amount of transfered data in downloaders list
- display source IP and Countrycode in HTML downloaders list
- display filesize in GUI
- display number of sources in GUI
4933: BT: Display number of sources in GUI
2006/02/21
4928: BT: Fix invalid encoding in announce URL (darkfader)
4929: Do not print password_empty warning if enable_user_config true
4926: Runinfo: Warn about not-working DNS resolution,
/dev/urandom detection was not disabled if --disable-donkeysui is used
2006/02/20
4922: OpenBSD: Small change for patch 4920
4921: MinGW: show current DL & UL stats in console title (Schlumpf)
4909: Print warning messages when run on non-supported operating systems
currently for example Windows 95/98/ME (Schlumpf)
4920: Cleanup included header files in C code (Schlumpf)
2006/02/17
4910: EDK: Use updated protocol information when parsing
consecutive messages (sam_dennis)
4915: Log: Small cleanups
4918: some syntax and comment cleanups in stubs_c.c (Schlumpf)
2006/02/13
4906: MinGW: improve uname output (Schlumpf)
4908: Configure: Fix for Beos, allow use of Dragonfly BSD
2006/02/11
4883: Mac OS X: Fix for broken Apple cpp-3.3
4902: EDK: Stub respond to directory browsing requests (sam_dennis)
4905: Update for patch 4823: add another -fno-fomit-frame-pointer
in config/Makefile.in to avoid breaking CryptoPP (mikeX)
4903: EDK: Remove obsolete donkeyNeighbours (thx to sam_dennis)
4907: EDK: Fixed copy/paste error in emule miscoptions1 reading (sam_dennis)
2006/02/10
4904: Configure: Raise required autoconf version to 2.55 due to AC_MSG_FAILURE
2006/02/09
4892: Fix make when CXXFLAGS is defined (mikex)
4894: EDK: Support "new ed2k meta tags" to allow browsing
shared directories of newer eMule clients (sam_dennis)
4891: Configure: Override system-installed Ocaml and force local compile
Use ./configure --enable-force-ocaml to force MLDonkey to compile Ocaml,
regardless if the system has Ocaml already installed or not.
--enable-ocamlver=CVS uses a CVS checkout of Ocaml HEAD.
4885: EDK: Show correct IP of indirect clients in uploader list
2006/02/06
4879: EDK: Support for sources in ed2k:// links
- example:
ed2k://|file|a.txt|1|AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA|/|sources,1.0.0.0:4662|/
4849: EDK: Fix hashing of newly shared files
- avoid hashing shared files twice
- avoid problems while hashing big files
- remove obsolete compute_md4_delay option
4878: Addition to patch 4875 (conditional bzip2 support using cpp)
2006/02/05
4877: BT: Recognize Ktorrent clients (CruX, zet)
4876: EDK: Remove obsolete option random_order_download
4875: conditional bzip2 support using cpp (pango)
4870: runinfo: add connected_user and check empty PW (schlumpf)
4872: Fix gd detection on NetBSD, use data from gdlib-config
MinGW compile-guide was updated, gdlib-config has to be changed
4871: Optimize some Printf.sprintf "%s" code
4869: Remove obsolete redirector code
http://mldonkey.sourceforge.net/Redirector
4856: reverse patch: configure: disable iconv by default on MinGW
it is not necessary anymore
2006/02/04
4867: Use setrlimit to raise allowed ulimit open files
2006/02/03
4863: GUI/Multiuser: Prevent kill by users other than admin
4862: EDK: Fix broken import of eMule temp Files (import_temp) (schlumpf)
4860: Multiuser: print warning if admin password is empty
- user admin is re-created if deleted, it has to be present in any case because
some commands are only available for admin, like users, remove_user and kill
- create structure for startup messages, displayed on GUI, HTML, Telnet
4859: Multiuser: Only user "admin" is allowed to change options
if the new option enable_user_config (default true) is set to false
4858: HTML: Update some links to mldonkey.sf.net
4857: SIGUSR1 & SIGUSR2 do not exist on Windows
4856: configure: disable iconv by default on MinGW
4853: Fix HTML errors on rss command output (unease)
2006/02/02
4851: Support system signals SIGUSR1 & SIGUSR2
SIGUSR1 saves options
SIGUSR2 performs garbage collection
4850: Fixed bitprint hashing for files > 4GB (thx to zet)
mld_hash: implement SIGINT and SIGTERM signals
2006/01/29
4844: Fix Solaris compile broken since DonkeySUI patch
4830: Update Wiki links
New Wiki URL: http://mldonkey.sourceforge.net
New Forum URL: http://mldonkey.sourceforge.net/forums
4843: HTML: Improve output of rss command
4842: Some logfile stuff
4841: Create new dir web_infos for web_infos files,
BT: do not save .torrent or announce.*
all files downloaded by web_infos go to $MLDONKEY_DIR/web_infos
to avoid downloading files twice move files from $MLDONKEY_DIR
into that new dir
4826: improve error message due to corrupt config files (schlumpf)
4821: improve display of sysinfo (schlumpf)
2006/01/26
4816: Update Ocaml-RSS and Xml-light to current versions
4827: longhelp cleanup (anhi)
4823: EDK: CryptoPP optional, disable with --disable-donkeysui
Makefile: link CryptoPP stuff only in binaries which need it
Buildinfo: show compiler versions
Configure: display compiler versions (schlumpf)
Configure: if iconv checking fails continue with disabled iconv
Configure: do not use bzip2 if bzip.h is not found (FLI4L buildroot)
2006/01/25
4820: Move CommonGraphics to DriverGraphics, check libgd version
Configure: Check if libgd > 2.0.14 is installed
NetBSD: added paths for libgd package
NetBSD: adjusted stat command to properly read SCM date
move build-, run-, and diskinfo command to driver module
(thanks to SchAmane)
requires more than the default 64. Bump PKGREVISION to 1.
Fixes PR pkg/32602.
I guess the real solution could be to modify mldonkey's source to unlimit
this value itself, but I don't want to deal with (i.e., learn) ocaml code...
2006/01/19: version 2.7.3 = tag release-2-7-3
4791: web_infos: New type geoip.dat, save files to local disk,
re-download only if file on server is newer
- now all files except type "rss" in web_infos are saved to local disk
if not present or server version is newer
- MLDonkey uses HTML header last-modified to check if a file has been updated
- downloaded file timestamp is changed to last-modified time
- show number of IP blocking ranges in runinfo
- new web_infos kind: geoip.dat
- automatically add geoip.dat to web_infos
- support for *.gz|bz2|zip compressed GeoIP.dat files
4811: EDK: Print warning when starting a file too big for filesystem,
clean Ux32 logging
4810: Update search results with highest avail/completesources tags (zet)
2006/01/16
4803: BT: force uniqueness of added trackers by "trackers" command (pango)
4801: EDK: add more server info fields (html and guiprot) (zet)
4798: Fix thread recognition on *BSD
2006/01/15
4797: EDK: Always put server connect requests in connection queue,
whether max_opened_connections is reached or not
Connection will be established later when a socket is available
2006/01/14
4796: Windows: Log proper warning when MaxUserPort is reached (thx to Enig)
4795: Mailer: Fix Subject encoding (bogeyman)
4716: BT: new command "tracker" to add trackers (bogeyman)
2006/01/12
4792: GeoIP: Add license (distrib/GeoIP_LICENSE.txt, runinfo)
This product includes GeoLite data created by MaxMind,
available from http://maxmind.com/
4776: EDK: Avoid LowID if max_indirect_connections is reached (thx to zet)
4787: EDK: Show server version (ported from Mulus - thx to Knocker),
disconnect blocked server after loading IP blocklist
2006/01/11
4790: Some logging stuff
4781: Disconnect connected server before removing
4782: Configure: Replace AC_CHECK_FILE with "test -d" to allow cross-compile
2006/01/09
4770: Change file opening mechanism, open rw only when needed (pango)
new verbosity option "file" to control Unix32 file handling
4777: Display IP:port for LowID clients, GUI protocol update (zet)
2006/01/07
4769: HTML: Fix some Geoip display bugs
2006/01/06
4768: Dynamic loop delay (pango)
4765: Add GeoIP.dat support (zet)
GeoIP is a GPL database that maps IPs to countries.
http://www.maxmind.com/download/geoip/database/
This patch adds support for a "geoip_dat" option.
It is a simple ocaml translation of just the geoip country lookup code.
If active, the file is left open and consulted on demand.
It didn't seem to slow anything down on my slow system.
Sends the country # to the gui, use latest Sancho version to use it.
Web: displays country codes in a column (name in tooltip).
Maybe someone wants to add flag images (please make them optional).
2006/01/05: version 2.7.2 = tag release-2-7-2
4764: Patch for MLDonkey-compiled Ocaml-3.09.1 to fix GTK1 oldgui compile
4763: Compile patch for GTK1 oldgui with Ocaml 3.09.1
Ocaml 3.09.1 has a bug which prevents compiling GTK1 oldgui.
A patch can be found here: http://caml.inria.fr/mantis/view.php?id=3948
2006/01/04
4761: Insert glibc version in archives build by release targets
4760: Allow use of Ocaml 3.09.1
MLDonkey can now be compiled with Ocaml 3.08.3/4, 3.09.0/1
Default for MLDonkey-compiled Ocaml is now 3.09.1
4759: Configure: Improve gcc check
4757: Compile patches for MorphOS (Christian Rosentreter)
4748: HTML: Allow rename of files with '#', '&' and '%',
remove invalid chars from filenames depending on OS (thx to pango)
4756: HTML: Print build- and runinfo on main page,
fix reload bug when changing html_mods/html_themes (Knocker)
2006/01/03
4751: Ease use of messages_filter option (pango)
4753: Allow upper case MD4 for ed2k-links in mldonkey_submit (fcrozat)
4754: New parameter --auth for mldonkey_command (plf team)
2006/01/02
4749: GUI: send shared sub_files to gui (zet)
2006/01/01
4712: Change terminal color for command line from blue to cyan (romildo)
4742: Log: remove verbosity "tor" & "file", improve verbosity "verb"
4743: EDK: Print "File is already shared" when trying to start downloading
an already shared file
4744: Split client_timeout into ED2K-client_timeout and BT-client_timeout,
increase BT-client_timeout to 90 (tradie)
4745: Update config.guess and config.sub to version 2005-12-23
2005/12/28
4725: Check if ulimit is sufficient for MLDonkey,
auto-adjust max_opened_connections
* moved ED2K-max_indirect_connections to downloads.ini
* max_indirect_connections is now a %-value of max_opened_connections
* minimum ulimit for open files is now 150 (most systems have 1024),
MLDonkey will refuse to start if ulimit is lower
* minimum max_opened_connections is now 75
* reduced max_concurrent_downloads from 60 to 50
* minimum ulimit -n 150 is used like this:
- 75 max_opened_connections
- 50 downloading files
- 5 upload slots
- 20 fd as reserve for ini files
4704: Fix some C compile warnings (schlumpf)
4739: Fix some cross-compiling obstacles, remove Ocaml 3.08.2 compatability
* Cross-compiling is only possible with a correct Ocaml toolchain
* MLDonkey can not build this Ocaml toolchain
* This patch only fixes some autoconf checks
4735: MinGW: pause before core exit because of existing Pid file
4736: New commands: sysinfo, runinfo and diskinfo
* removed temp_directory and core_directory from shares command output
* new commands sysinfo, runinfo and diskinfo
* buildinfo now prints only buildinfo
* runinfo prints run-time information
* new command diskinfo prints filesystem data about temp_directory,
core_directory and all shared dirs
* sysinfo prints buildinfo, runinfo and diskinfo alltogether
4712: Change terminal color for downloading files from blue to cyan (romildo)
2005/12/24
4732: Log: More infos for verbosity = " verb"
2005/12/21
4728: fix date format (zet)
4730: BT: parse path.utf-8 (zet)
2005/12/19
4726: New option space_overhead to adjust garbage collection (bogeyman)
4724: Windows: 10 seconds pause when core start fails
to make error messages readable
2005/12/18
4723: New build target: make ocamldoc (pango)
4721: Log: Improve output for verbosity "verb", remove verbosity "hid"
2005/12/17
4719: Fix linking of dp500 (pango)
4715: OV: Improve searching, longer ov timeout, some more bugfixes (bogeyman)
4718: Fix bug which prevented proper write to files introduced in patch #4694
4717: EDK: Removed unused variable file_md4s_to_register (bogeyman)
2005/12/16
4703: BT: Deactivate dead trackers,
re-enable them if no active trackers are found (pango)
4708: HTML upstats: Enable preview for shared files
4652: dllink: reject EDK files > 4GB, print access errors for .torrent files
2005/12/15
Removed orphaned files:
src/networks/donkey/donkeyFiles.mli
src/networks/donkey/donkeyInteractive.mli
src/networks/donkey/donkeyMain.mli
4710: Re-add some protocol information as comments removed by patch 4694
4709: Fix zip file extract broken due to patch 4694 (Ocaml 3.09)
4707: Fix recover_temp broken by patch 4674 (force_download)
2005/12/14
4706: EDK: Remove donkeyChunks, use commonSwarming for op_file_check
4702: Correct timezone in e-mail, nicer uptime, timezone and uptime in runinfo
4694: Fix lots of compile warnings in Ocaml 3.09
4705: Update config.guess and config.sub to version 2005-11-11
Mozilla MLdonkey Protocol Handler updated to version 1.7
2005/12/13
Removed orphaned files:
src/networks/fasttrack/fasttrack.ml
src/networks/gnutella/gnutella1.ml
src/networks/gnutella/gnutella.ml
src/networks/gnutella/gnutellaScheduler.ml
src/networks/gnutella/gnutellaZlib.ml
src/networks/gnutella2/g2Scheduler.mlt
src/networks/gnutella2/gnutella2.ml
4700: Log: New verbosity option "gui" to debug GUI protocol
4696: Fix some C compiler warnings
2005/12/10
4687: Compile fix for Ocaml 3.09.0 (gildor), MLDonkey can now be compiled
with Ocaml 3.08.[2,3,4] and Ocaml 3.09.x (4687_min2.patch)
4693: Compile patch in sha1.c for FreeBSD (lioux)
4689: Catch exception in file_completed_cmd to let commit complete
4691: file_completed_cmd: $DURATION in seconds (debonair)
2005/12/06: version 2.7.1 = tag release-2-7-1
4679: FileTP: Fix HTTP downloading for URLs with space chars, log cleaning
4674: EDK: Re-enable checking old_files before starting a download
and force_download command
4676: BT: decode_version fix and html sort fix (bogeyman)
2005/12/05
4673: IPBlock: display original length and optimized length in block_list,
log file clean up
2005/12/04
4672: FileTP: Fix major bug in HTTP downloading, introduced in 2.6.0
2005/12/03
4671: Compile fix in CryptoPP.h for gcc-2.96 (trdw)
4670: Increase max_buffer_size limit for high-volume connections
2005/12/02
4649: Updates for file_completed_cmd (pango, spiralvoice)
* some log cleaning
* added information to notification email if auto_commit is disabled,
email is sent by file_completed, not file_commit
* moved execution of !!file_completed_cmd from file_completed
to file_commit, kept option name for easier upgrading
this was done because the filename of a downloading file can be
different than the filename of the committed file if a file
with the same name as the to be committed file is already in
incoming. older method did not take this into account at all..
* added environment variables for file_completed_cmd, see description:
A command that is called when a file is committed, does not work on MinGW.
Arguments are (kept for compatability):
$1 - temp file name, without path
$2 - file size
$3 - filename of the committed file
Also these environment variables can be used (prefered way):
$TEMPNAME - temp file name, including path
$FILEID - same as $1
$FILESIZE - same as $2
$FILENAME - same as $3
$FILEHASH - internal hash
$DURATION - download duration
$INCOMING - directory used for commit
$NETWORK - network used for downloading
$ED2K_HASH - ed2k hash if MD4 is known
4667: Update Ocaml download URL
4666: Always create incoming directories before commit
4663: CryptoPP: Latest fixes ported from aMule CVS
2005/12/01
4657: Fix for C files for AMD64, mipsel platforms
improve endianness checking in tiger.c, md5_c.c and CryptoPP.h,
print endianness in buildinfo, removed sha1_old code
4661: Log: Print newline before exception message when MLDonkey can´t use a port
BT: exit if client_port = tracker_port
2005/11/28
4654: Fix guiprot when addr not resolvable (zet)
4655: Set conn_user on gui (zet)
4656: BT: update last seen complete field and fix bitfield reading (zet)
2005/11/27
4653: GTK2 GUI: add isohunt statistics (su_blanc)
2005/11/22
4364: Let mlnet build under the cygwin unix emulation layer (Amorphous)
4648: GTK2 GUI: improve display of razorback stats (su_blanc)
added the display of filedonkey.com data
4646: BT: little change to recognise Clients (bogeyman)
4645: Fix donkey total uptime stats order (bogeyman)
2005/11/21
4406: Unicode: Fix filenames in shared_files_new.ini and file rename
in HTML interface (mld_unicode_patch6.patch) (CML)
4440: New option shutdown_timeout, 3 sec, was hardcoded before (Amorphous)
4644: Update GNU config.guess and config.sub to current versions
4643: HTML: Fix gdstats output when html_use_gzip true
4640: Calendar: view calendar command: vcal
4641: Fix exception in load_web_infos
4642: HTML: Improve preview via webbrowser (pango)
2005/11/19
These patches are experimental, please test carefully and report your findings.
4563: replace all Printf.printf occurences by Printf2.lprintf (su_blanc)
4479: Callback mechanism for low ID users does not work (miriup)
Reactivating submission of server IP and port during client
handshake in edonkey
"However, sometimes, especially when I have no files to download I do
not receive callbacks at all. It is suggested to apply this patch in
a testing mldonkey for a week on a non-low id connection before including
it in a stable release, ... I can't test high-ID at all."
4574: Friends upload slot (pango)
2005/11/19: version 2.7.0 = tag release-2-7-0
4631: Validate ED2K-client_private_key
2005/11/16
4630: GTK2 GUI - some bug fixes (su_blanc)
* display Razorback graphical stats for currently selected file
2005/11/14
4625: GTK2 GUI - bug fix (su_blanc)
* bug #14865 : availability display "dotty"
added alpha channel to availability pixbuf.
* bug #14963 : autosize slightly broken
the tick mark for 'autosize all columns' appears only if all columns are set
to 'autosize' mode. 'autosize all columns' triggers an 'autosize' mode for
all columns if at least one has not this mode set. Otherwise all the columns
are set to 'fixed' mode.
* bug : razorback stats
display stats on user request.
2005/11/13
4583: Change stats.razorback2.com usage to on-demand (su_blanc)
to avoid overloading the server (disable_razorback_stats.diff)
4619: Remove duplicate Gc.compact () from EDK mem_stats (pango)
2005/11/12
4617: GUI: send bt subfiles over gui prot (zet)
4587: Buildinfo: Split build-time and run-time information (schlumpf)
4350: Code cleanup : web interface chunks display (pango)
(web_chunks_using_tables_v2.patch)
4616: Change allow_browse_share, so only friends can see file lists (pango)
4615: Add -g to CFLAGS when --enable-profile (pango)
4605: replace string/bool bit arrays with bit vectors (zet)
4607: remove html output from telnet 'vc all' (zet)
4613: Optimizing Set.cardinal to reduce CPU usage (pango)
4614: Gtk2 mlgui improvements (su_blanc)
* fix bug : close all current searches when one quits mlgui
otherwise the core continues to search
to test:
* open mlgui
* make a search request
* close the gui
* in HTML interface, check "View searches" tab.
* lower CPU usage by delaying heavy computations (use Glib.Idle)
* rework the search tab, just make it more simple,
limit results to max hits, added min availability criterium
* added Autosize columns. Should fix bug #14868
* change pixmap for availability bars in pixbuf. should fix bug #14865
2005/11/09
4558: further Overnet patches, query_next_peers3.patch (bogeyman)
2005/11/07
4586: cleanup brand stats code (bt/edonkey) (zet)
updated to coalesce bt software parsing and add some more ids
2005/11/05
4589: CryptoPP doesn't like -fomit-frame-pointer, so remove it (przemoc)
4597: OV/KAD: fix a search reset bug (bogeyman)
4585: Change ED2K_max_sources_per_file from 20000 to 5000
4579: Slackware package (tgz) - basic mlnet support (ratmmmam)
2005/10/31
4583: GTK2 mlgui improvement (su_blanc)
Lablgtk-2.6.0 is needed for GTK2 mlgui, it fixes a mem leak with GdkPixbuf.
added:
* razorback stats: click on a file in the downloads tab to display the stats
(at startup wait for few seconds, the time to download the png files...).
* proxy options for mlgui
* a graph tab: global downloads, global uploads and a view per file
(downloads and uploads).
modified:
* fix Tray icon as per task #4694
* reduce mem use
* configuration files locations: mlgui and mlim do not need CommonOptions.
Should not change anything for the users as we check the $HOME variable.
4558: Overnet: several patches (includes and fixes patch #4551) (bogeyman)
* better detection of dead peers
* so we can ping less often
* and can be sure these peers are alive
* use ip:port from received pakets instead from the peer info
* use a weak Hashtbl for known_peers and remove search_known_peers
* we are removing all dead peers, in buckets and prebuckets,
(do not wonder, if you get less peers left ;o)
* do not send useless "Connect" pakets, Fillbucket really works
* every 30m file searchs were created twice.
There are really less peers than without this patch, maybe i'll have to tweak
how we fill buckets. But for now this works and produce less traffic.
4581: Fix upload rate for high volume connections (> 1.5Mbit/sec) (pango)
4584: HEAP: use GC.quick_stats for mem_stats level=0 (bogeyman)
2005/10/30
4580: Update .cvsignore files (pango)
4564: HTML: fix vd p/d/queued output (zet)
4576: BT: remove sources when file is cancelled,
mem_stats: Garbage collector info (zet)
2005/10/28: version 2.6.7 = tag release-2-6-7
4562: removed patch, breaks GUI connect after SIGTERM
2005/10/27
4551: remove patch, breaks Overnet
4562: BasicSocket.ml fix, fix select when fd_tasks is empty
close all fd on exit (su_blanc)
4561: Options.ml4 proper old directory (su_blanc)
4560: mingw : proper detection of gToolbox.mli (su_blanc)
4559: mingw compilation of Crypto.cpp (su_blanc)
4553: HP-UX: If /dev/urandom is not present print info where to get it
4554: HP-UX: Compile fix for statvfs (disk usage statistics) (Inkus)
4555: EDK: Send emule_version on server login to prevent
"Your client is too old" message (Knocker)
4556: Fix linking mlnet to X and GTK libs when using --enable-gui (su_blanc)
-------------------------------------------------------------------------------
2005/10/25: version 2.6.6 = tag release-2-6-6
4551: OV/KAD: use kind like eMule does +misc bugfixes (bogeyman)
"do not wonder, if you get less peers left ;o)", also reduces traffic
4550: Create bitprint for large files (zet)
4549: html_mods: relevant_queues option (zet)
This patch creates a relevant_queues option which specifies a list of
queue #'s that should be displayed in the vd # sources table.
See sources command for the list of queues.
By default all queues except the DoNotTry queue(7) are displayed.
4548: IPBlock: really don't load descriptions on core restart,
if set to false (bogeyman)
2005/10/24
4547: Fix dupe sending of motd/nets in gui_initialize (zet)
2005/10/23
4545: make TAGS, creates files for source code navigation in Emacs (pango)
4544: Change internal code for statfs function (pango)
4543: Lower CPU usage, optimize CommonSources.count_file_ready_sources (pango)
4542: Remove Donkey-Fakes support, service is down
4541: New option BT_max_tracker_redirect
connect to bittorent trackers with http redirect (jhon)
2005/10/19
4535: OV/KAD: Yet another improved logging (bogeyman)
4533: Yet another compile patch for mld_hash,
remove svg_converter with make clean
4534: Compile fix for make_torrent
2005/10/18
4531: Compile fix for GTK1 oldgui
4530: Compile fix for mldonkeytop (pango)
4525: Always use svg_converter.byte (gildor)
4524: Fix building mld_hash (gildor)
4523: Fix building of svg_converter.byte (gildor)
2005/10/17
4520: Check for /dev/urandom, /dev/null and $TEMP
4521: CryptoPP: Compile patch for gcc-2.96 (sworn)
2005/10/16
4519: Int64ops cleanup (pango)
2005/10/11: spiralvoice (version 2.6.5 = tag release-2-6-5)
4508: Configure: Print some important build targets
4507: EDK: Print server banners into logfile (pango)
4500: BT: Fix multifile download with zero-byte files (thanks to jave)
4506: replace obsolete longarry and fifo2 code (bogeyman)
2005/10/10: spiralvoice
4504: Clean http_server.ml logging
4502: Remove obsolete Weak2 sourcecode (bogeyman)
4503: OV: fill buckets only with peers we send to and heard of (bogeyman)
4499: Check for stalled pid file and remove it if MLDonkey is not running
(does not work on MinGW due to missing Unix.kill) (pango, spiralvoice)
4501: HTML: Fix chunk wrapping on IE (zet)
2005/10/09: spiralvoice
4477: prevented some compiler warnings (Schlumpf)
4496: Nicer summary of configure command
2005/10/06: spiralvoice
4337: improved upload scheduler (pango)
4494: fix infinite loop when create_dir_mask on fat32 (zet)
4495: BT: include Wiki link to report unknown clients (bogeyman)
4493: BT: Correctly parse .torrent files with an empty directory (zet)
4487: BT/HTML: Display files inside a multifile torrent (bogeyman, jave)
4458: EDK: add enable_sui toggle option (enabled by default) (zet)
4491: Compilation fix for NetBSD>=2.99 (Thomas Klausner)
4490: memstats for a weakhash and a new OV command dump_bucket (bogeyman)
4473: New command: whoami
4457: BeOS: Compile patch for CryptoPP (Michael Lotz)
4460: Added search for .torrents via IsoHunt (WingMaster)
4456: Fix shrink effect in vd for Opera (Luar Roji)
4452: Clean configure.in, check for c++ compiler
* zlib is not optional anymore
* remove old code (Cryptokit, Broosnet etc.)
* distinguish between Cygwin and MinGW
* print start warning message only for Cygwin
* remove whitespaces
4450: Remove swarmer data when cancelling download (kempston, zet)
2005/09/21: spiralvoice
4454: commonSources: add sources from resumed files
(outside_queue sources) back to the queues (zet)
4453: Telnet: Print reject message for connecting client
if it is not allowed to connect,
prepend "dllink" for all commands starting with "http://"
4455: Improve make distclean
4449: New parameter for pid file: -pid <dir>, small improvements for pid files
4451: Correct the help of allowed_ips (gildor)
2005/09/19: spiralvoice
4439: Fix for "make mlnet.byte" (zet)
4438: Fix secure-ident related compile bugs in Opennap & Soulseek
4437: BT: show up/down stats for Brand unknown (bogeyman)
4436: EDK: Solve memleak in donkeyChunks (file_md4s_to_register) (bogeyman)
4434: Added button to eMugle in Search (wingmaster)
4432: Add more info to mem_stats (zet)
2005/09/18: spiralvoice
4431: Newgui: Compile fix
4419: EDK: Support secure user identification (crypto5, by zet)
2005/09/17: spiralvoice
4424: OV: discard peers with ip 1.0.0.0 and random port
4425: EDK: Support server extended getsources2 opcode (zet)
4429: Better error message if MLDonkey lacks network support
for a file in files.ini
4427: BT: 10 retries / follow 10 redirections in
dllink http://server/file.torrent
4423: OV/KAD: Save only active peers to config files/ save max 200 peers
(bogeyman)
2005/09/14: spiralvoice
4420: Remove obsoleted commonSwarming1 code
4418: Re-activate sources_per_chunk option (pango)
4417: BT: Improve BT upload speed (pango)
4374: fix "max_hard_download_rate has to be doubled" (pango)
This patch changes internal code, no option has to be changed
2005/09/13: spiralvoice
4406: Improved Unicode filename support (CML)
4412: OV: Handle OvernetPeerNotFound correctly (bogeyman)
4411: OV/KAD: Some peers are not added to known_peers (bogeyman)
4410: Shorter filesystem name for XFS
4409: Compile fix if Bzip2 is not available
4408: OpenBSD: configure.in fix to find libbz2 and others in /usr/local
2005/09/08: spiralvoice
4397: Buildinfo: Run-time check for Windows OS version / Unix uname (zet)
4403: html_mods: mem_stats in a single readable table (zet)
4402: BT: BT-user_agent option (zet)
2005/09/06: spiralvoice
4268: Web/Gui: free core's buffer allocated by vd # and gui (bogeyman)
4393: Lower ip blocking memory usage (pango)
new option ip_blocking_descriptions true|false
4401: BT: Send 'stopped' event to all trackers when exiting (zet)
2005/09/04: spiralvoice (version 2.6.4 = tag release-2-6-4)
4392: Print "Core started" on stdout even if logging is enabled
Fixes problems when MLDonkey is spawned by a GUI
2005/09/03: spiralvoice
4247: memstats: BT/FT/GNUT/G2: initial memstats, ALL: show nr of old_files,
BT: nr of torrent files
4390: Mail: Print incoming path if !!url_in_mail is used
4389: BT: Fix core exit if dirs of a shared multifile torrent are not writable
4368: new option: create_file_sparse true|false, this works only for
files on NTFS drives in MinGW compiled MLDonkey (thanks to zet)
2005/09/01: spiralvoice
4385: EDK: Preserve untested servers (by pango)
4351: optimize ip blocking lists (by pango)
4376: EDK: Re-enable result_done (already downloaded) in search results (by zet)
4126: Improved log_file handling
* there is now a default log_file: mlnet.log, old downloads.ini is *not* updated
* its default log_file_size is 2MB, this is checked only on core start,
if log_file is bigger it will be resetted
* logging will always be appended to log_file
* new command "clear_log" to reset log_file while the core is working
* new command "open_log" to reopen log after close_log
* removed command "log_file", same can be achieved through "set log_file <file>"
4384: HTML: Add "Import Serverlist" in servers, clean third button row (by schlumpf)
4365: Disable console "X" close button on MinGW, second version (by CML)
4382: Solve libgd configure in mandrake 10.0
4381: better differentiation of eDonkey and BT Stats Table (by schlumpf)
4380: some info for SCM Version (CVS co Date/ SVN revision) (by schlumpf)
4379: Fix compile error when libgd is not present
4378: Longhelp: Better description for add_user
4377: Better description for shared_directories in downloads.ini
4356: EDK: Improved server.met handling / fix contact.dat loading
* Changed user agent from "MLdonkey" to "MLDonkey", solves problem
when downloading files from www.gruk.org and www.srv1000.com
* MLDonkey new recognizes links like ed2k://|serverlist|http://server/file.ext|/
* "servers" command now takes URLs
* if period in web_infos is zero the file is only loaded during core start
(as requested by the owner of www.gruk.org)
* in all places where a filename or URL for a server.met can be used this
file can also be compressed with gz/bz2/zip
* automatically replace old default server.met in web_infos
("server.met", 24,
"http://ocbmaurice.dyndns.org/pl/slist.pl/server.met?download/server-best.met");
with fake servers free list from gruk.org:
("server.met", 0, "http://www.gruk.org/server.met.gz");
* fixed bug which prevented loading Overnet contact.dat file in web_infos
2005/08/29: spiralvoice
4368: Use sparse files on MinGW/NTFS (by zet)
4370: BT/Win32: fix multifile hashing (by Amorphous)
2005/08/28: spiralvoice
4366: HTML: more maintainable html_mods styles (by pango)
4367: Improve logging
4361: New command: uptime
Lots of improvements for MinGW, this platform now supports
files > 2GB, threads and libgd generated statistics.
Here you will find compilation instructions:
http://mldonkey.berlios.de/modules.php?name=Wiki&pagename=Windows
4342: Large_file support for mld_hash and MinGW MLDonkey core (by zet)
4358: Add thread support for MinGW (by zet)
4362: configure.in support for libgd on MinGW/FreeBSD
4349: increase filedescriptor limit for mingw (by zet)
4365: Disable console "X" close button on MinGW (by zet)
2005/08/26: spiralvoice
4360: Configure: Test for nl_langinfo(CODESET)
4359: Upload: Give upload slot truely randomly (by pango)
4347: Improve exit codes, codes were inspired by sysexits.h
4345: Code clean: Optimize redundant time_to_string functions
4357: Rename ed2k_hash to mld_hash
4344: Improve ./configure checks (bzlib.h, iconv on Windows)
---------------------------------------------------------------------
2005/08/21: spiralvoice (version 2.6.3 = tag release-2-6-3)
4254: Patch reverted, did not work
"html_mods: Table data is incorrectly centered"
4336: Improve some log file messages
4321: BT: fixed "make_torrent produce corrupted files on Windows" (by beedauchon)
4335: Buildinfo: Fix bug if Bzip2 version string is empty (by beedauchon)
4329: HTTPClient: Implement retries for failed requests
4319: Fix compile if libbz2 is not available,
new configure option: --disable-bzip2
4334: BT/FileTP: Some progress on cancel bug (by kempston)
4333: send ip blocked addr state to gui, compute_torrent from gui (by z)
4332: Let configure fail if GNU make is not installed
2005/08/18: spiralvoice
4323: HTML: Search results: new colums for Bitrate, Codec and length
4324: Log: Improve output for verbosity "hid"
4322: EDK: compatibleclient 40 -> Shareaza
4320: Fix compile on FreeBSD < 5.3
2005/08/15: spiralvoice
4317: Updated ./configure for compiling lablgtk2 with --enable-batch
4316: Updated ./distrib/Install.txt for Ocaml 3.08.4 and new GUI options
4292: html_mods: Match styles default frameHeight with the common default
4314: Allow compiling with Ocaml 3.08.4
Compiling with 3.08.3 still works
4312: BT: Allow seeding (by beedauchon)
4311: BT: create_torrent: default_tracker and default_comment (by beedauchon)
4309: GUI: send ed2k/bt network u/d totals (by z)
4308: Gnutella/G2: Fix commit if no TigerTree is available
4305: buildinfo: Print some system internals
4304: EDK: Fix disconnect state with verbosity = "hid"
4297: Create ini file backups on shutdown
Note: file_sources.ini is never saved, it makes no sense to keep this file.
New options:
* backup_options_format, default "tar.gz", "zip" can also be used
* backup_options_delay, default 0
How often (in hours) should a backup of the ini files be written into old_config.
A value of zero means that a backup is written only when the core shuts down.
* backup_options_generations, default 10
Define the total number of options archives in old_config.
Command save got two new parameters:
* "save all" saves options, sources and creates a ini file backup
* "save backup" speaks for itself;-)
---------------------------------------------------------------------
2005/08/11: spiralvoice (version 2.6.2 = tag release-2-6-2)
4296: BT: Fix options parsing
---------------------------------------------------------------------
2005/08/09: spiralvoice (version 2.6.1 = tag release-2-6-1)
4291: EDK: Better logging for unknown compatibleclient values
4290: BT: Some small fixes for messages interested and cancel
by beedauchon
4289: LOG: Improve verbosity "hid"
4287: Better clear Fifo buffers, by bogeyman
4268: Web/Gui: free core's buffer allocated by vd # and gui
by bogeyman
2005/08/08: spiralvoice
4285: IPBlock: Server support
* display in vm/vma if a server has a blocked IP
* prevent connections to a IP blocked server,
in EDK case this resulted in a LowID connection
4284: Remove whitespaces / Some logging changes
2005/08/07: spiralvoice
4279: MinGW: HDD statistics support
4281: Remove white spaces / Some logging stuff
4251: HTML: few fixes / new option html_frame_border true|false
4278: Windows: Fix bug creating work dirs in empty dir
2005/08/06: spiralvoice
4276: IPBlock: Never block local IPs even if they are in blocklist
4274: Use relative path if downloads.ini is present
2005/08/05: spiralvoice
4272: HTML: Cursor focus in input field
4271: GTK2: Fix compile bug in src/gtk2/chat/chat_art.ml
4155: Let MLDonkey create its data in $HOME/.mldonkey
Usage instructions:
* if the core is started in a directory where downloads.ini exists
this directory will be used, this is the same behaviour as before
* on Windows the current directory will always be used,
this is consistent with eMule
* on other systems $HOME/.mldonkey will be created and used,
this is consistent with eDonkey, aMule and Unix standards
* if variable MLDONKEY_DIR is used that directory has priority,
to simulate the behaviour without this patch use:
export MLDONKEY_DIR="." && ./mlnet
2005/08/04: spiralvoice
4270: Overnet: Convert local IPs sent by OV clients to real IPs
4269: IPBlock: Several fixes, better zip file support
4264: Fasttrack: Force commit of all complete files
4258: BT: Statistics, recognize more clients, min_interval, torrents/old and more...
This patch was done by Beedauchon, it incorporates weeks of work from him.
* move .torrent to torrents/old if the file is not shared anymore
* new command rm_old_torrents: delete all files in torrents/old
* eDonkey like statistics for BT clients (csbt command)
* compute_torrent and make_torrent can put a comment into the .torrent file
* MLdonkey computes a BT-compatible client_uid starting with "-ML"
* parse more fields from .torrent files and display them in HTML interface
* Tracker: replace "/tracker" by "/announce"
* Tracker: add "/scrape"
* Multitracker support for downloading
2005/08/02: spiralvoice
4263: Fasttrack: Force bootstrapping nodes
2005/08/01: spiralvoice
4261: HTML: Add DL button - opens dialog for entering links (by omgwtf2)
4260: IPblock: Enable IP blocking for Overnet and HTTP server
(=BT Tracker) (by beedauchon)
4257: Kick uploaders which send no data for more than 1 minute
4256: Print message if glibc version mismatch
updates for buildinfo (version of libbz2, libz, libpng)
2005/07/29: spiralvoice
4255: HTML: updates for cs command
4254: html_mods: Table data is incorrectly centered
4253: HTML: New style Construction (by omgwtf2)
4251: few html fixes (reverted) (by beedauchon)
2005/07/28: spiralvoice
4250: Remove whitespaces from commonUploads.ml
4249: HTML: Links to fake check services in search results
(by bogeyman)
2005/07/27: spiralvoice
4194: FileTP : Add support for "referer",
error messages cleanup (by beedauchon)
4245: BT: Remove whitespace (by beedauchon)
4244: Change web_infos period to hours (this is a bugfix,
no need to change ini files)
new option: enable_mlnet_redirector
2005/07/26: spiralvoice
4243: FileTP: Clean lots of whitespaces
4031: HTML: relative refs in HTML output (by beedauchon)
4191: Access to disk data (free space, max file name length)
This is first step implmenting this, checkout the
disk command for debugging.
4242: IPBlock: Support guarding_full.zip
4241: Fix html_mods_vd_gfx_remove
4240: EDK: New option keep_downloaded_in_old_files
2005/07/23: spiralvoice
4184: support guarding.p2p in zip/gz/bz2 format
bz2 segfaults on OpenBSD, therefore disabled
see notes in the patch on how to compile with MinGW
2005/07/22: spiralvoice
4205: Improve logging with timestamps 2 (incomplete)
4204: Improve logging with timestamps (incomplete)
2005/07/21: spiralvoice
4195: GUI: Change configure options
Now "./configure" compiles no GUI, "--disable-gui" is default.
To use a GUI use "--enable-gui", this enables GTK2 GUI.
Other options are:
--enable-gui=newgui2 (use GTK2 GUI)
--enable-gui=newgui1 (use GTK1 newgui)
--enable-gui=oldgui (use GTK1 oldgui)
Options like "--disable-newgui" or "--enable-gtk2" were removed.
2005/07/20: spiralvoice
4193: CommonGraphics : some whitespace cleanups
4190: Gdstats: Fix tag.png/jpg link output
4188: Overnet: Dont put our own ID in the buckets (by Bogeyman)
backslashes anymore. A single backslash is enough. Changed the
definition in all affected packages. For those that are not caught, an
additional check is placed into bsd.pkginstall.mk.
Solve memory leak in Overnet/Kademlia
EDK: Files copied to incoming dir for sharing do not appear in
upstats after hashing
HTML: Add Multiline File Information in search results
EDK: Re-enable source exchange with eMule clients
Gdstats: Fix corrupted pics output/improved output
EDK: Parse and display version numbers
around at either build-time or at run-time is:
USE_TOOLS+= perl # build-time
USE_TOOLS+= perl:run # run-time
Also remove some places where perl5/buildlink3.mk was being included
by a package Makefile, but all that the package wanted was the Perl
executable.
And always is defined as share/examples/rc.d
which was the default before.
This rc.d scripts are not automatically added to PLISTs now also.
So add to each corresponding PLIST as required.
This was discussed on tech-pkg in late January and late April.
Todo: remove the RCD_SCRIPTS_EXAMPLEDIR uses in MESSAGES and elsewhere
and remove the RCD_SCRIPTS_EXAMPLEDIR itself.
under share/examples/rc.d. The variable name already was named
RCD_SCRIPTS_EXAMPLEDIR.
This is from ideas from Greg Woods and others.
Also bumped PKGREVISION for all packages using RCD_SCRIPTS mechanism
(as requested by wiz).
script to ease its startup as an unprivileged user. While here, split the
Makefile to help the forthcoming mldonkey-gui package.
This makes it very easy to run mldonkey on a dedicated server w/o X11.
Furthermore, this approach is similar to what other systems do (like Gentoo).
Bump PKGREVISION to 3. Ok'ed by wiz@, the maintainer.
in the process. (More information on tech-pkg.)
Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.
Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.
2.5.20:
A major bug in the last release that prevented connections to
Overnet has been fixed.
2.5.19:
Most Savannah patches were applied and important bugfixes including
fixes for a memory leak with no UDP, a problem with losing downloaded
parts at startup, and Emule compatibility. A 'recover_bytes' command
was added to check on disk for non-zero parts in a file and set
them as already downloaded.
This version should be more stable than the experimental version 2.5.17,
and represents a new important step towards the unification of the
different network plugins. Compared to 2.5.16, the swarming engine and the
sources management of the Edonkey plugin have been completely rewritten.
Almost all patches from Savannah were applied.
This release comes with streaming of files over PC link (for DP500
players) and over HTTP (for remote mplayer). There were some code
clean-ups, with better code sharing between Gnutella and Gnutella2
plugins, and some bugfixes.
Patches accepted back.
2004/02/10: Fabrice (version 2.5.11, tag release-2-5-11)
- New GUI protocol 24, all times in relative-time.
- Re-applied patch #2603
- ./config/configure.in: select former or new implementation of sha1
depending on the presence of byteswap.h and endian.h.
- Applied patches #2611, #2612, #2613, #2614
2004/02/09: Fabrice (version 2.5.10, tag release-2-5-10)
* Applied patches sha1, #2597, #2603, #2604
* New GUI messages:
Gui -> Core: GetUploaders, GetPending,
GetSearches, (GetSearch search_id),
(ConnectClient cid), (DisconnectClient cid)
Core -> Gui: (Uploaders num_list), (Pending num_list),
(Search search_request)
GetSearches and GetSearch allow a GUI to query for former searches and
to receive the results corresponding to a particular former search.
* New console command "disconnect <client_id>"
* FileTP:
* New option 'remote_shells' to define, for each hostname, which
remote shell to use and with which arguments (e.g. if you want
to use rsh or ssh with username@hostname or a particular port).
still no password allowed...
* New version of 'get_range' that accepts a 'rangex' argument to
send the data without base64 encoding (works for me, but I don't
know for other shells). Set the 'get_range' option to set the
path of the remote get_range command, and 'range_arg' to use
either 'range' or 'rangex'.
2004/02/07: Fabrice (version 2.5.9, tag release-2-5-9)
* Applied patches #2428, #2595, #2596
* TcpBufferedSocket: 'exec_command' only creates one TcpBufferedSocket.t
both for reading and writing.
* FileTP:
* Basic "remote shell" protocol (using ssh):
use 'http <ssh://hostname/relative-filename>' to download the file
hostname:~/relative-filename. ssh must be able to connect to the
host without password exchange. The remote host must have the
'get_range' utility in the PATH of ssh (use "make utils" to
have 'get_range' compiled with in mldonkey). The transfer rate is
not very good (30 KB/s, either because of too small
tcpBufferedSocket buffers, or because of the base64 encoding).
Note: Due to the changes in CommonSwarming, this version is to be considered
as EXPERIMENTAL on all networks, EXCEPT Edonkey & Overnet.
2004/02/06: Fabrice (version 2.5.8, tag release-2-5-8)
* FileTP:
* Basic FTP protocol:
use 'http <ftp://url>' and 'mirror <ftp://url>'
* Option 'mirrors': list of list of interchangeable url prefixes.
2004/02/06: Fabrice (version 2.5.7, tag release-2-5-7)
* New network 'FileTP' for simple file transfer protocols:
* Basic HTTP protocol:
use 'http <http://url>' to start a download.
use 'mirror <file_num> <http://url>' to add a mirror.
* TcpBufferedSocket: initial size of buffer now depends on the last
read input. might cause problems in memory until a better cache of
buffers is implemented
2004/02/06: Fabrice (version 2.5.6, tag release-2-5-6)
* CommonInteractive:
* file_cancel: removes the file itself
* Unix32:
* new function 'destroy' to completely destroy a FD, so that it cannot
be used afterwards (but it does not remove the file). Used
in CommonInteractive.file_commit and CommonInteractive.file_cancel.
* DonkeyInteractive: clients might get stucked if they tried to
upload a file that has just been commited, since the name is not
updated anymore in Unix32.rename. We need to remove the former 'file'
structure and then add a new one for the shared file, thus disconnecting
all the former uploaders (knowing them, they will reconnect asap :)).
To be done.
* Applied patches #2586, #2587, #2588
2004/02/05: Fabrice (version 2.5.5, tag release-2-5-5)
* Change in the version numbers, keep only 3 digits :)
2004/02/04: Fabrice (version 2.5.4+8, tag release-2-5-4-8)
* Bittorrent:
* New version of uploaders choice.
* Applied patches #2571, #2579, #2580 (is patch #2578 reversed ?)
2004/02/04: Fabrice (version 2.5.4+7)
* Bittorent:
* Fixed upload for seeded files, and probably some other bugs.
* Telnet interface:
* ?? display commands per category
2004/02/03: Fabrice (version 2.5.4+6)
* Applied patches #2556, #2558, #2559, #2561, #2568, #2569, #2571,
#2572, #2574
* TcpBufferedSocket: event CONNECTED is sent the first time a socket
is available for writting.
* Newgui:
* Gui_cdget: Updated some regexps to correctly query IMDB.
* Bittorrent:
* BTTracker: the tracker should work.
* New internal command "torrents" to list URLs of files in
torrents/tracked/
2004/02/02: Fabrice (version 2.5.4+5)
* New Internationnalisation format: short strings are stored for translation
in ~/.mldonkey/mlnet_strings.$LANG. The new scheme allows easy
translation of options descriptions and all other strings used
after CommonOption. Can also be used to translate the interfaces.
Unfortunately, this new scheme makes most of the former translations
obsolete, but most of them have been approximately changed to the
new format (see distrib/i18n/mlnet_strings.*, copy yours in
~/.mldonkey/ to check)
2004/02/01/ Fabrice (version 2.5.4+4)
* Applied patches #2532 (new-gui), #2535 (INSTALL.txt), #2549 (vers mesg),
#2550 (minsize shared)
2004/01/28: Fabrice (version 2.5.4+3)
* CommonShared:
Strategies of sharing can be defined in "searches.ini" (recursive or not,
min file size, extensions).
* Predefined strategies:
[all_files]: recursively all files > 10 KB
[mp3s]: recursively .mp3 < 10 MB
[avis]: recursively .avi > 500 MB
[only_directory]: not recursive, all files > 10 KB
* Strategy for incoming/ is now [only_directory].
* Format of "shared_directories" option changed accordingly: new default
directory shared/ with strategy [all_files].
* CommonComplexOptions:
file_state, file_age and file_size are saved for all networks in options.
* CommonSwarming:
functions to save and load chunks and present_chunks from options.
2004/01/27: Fabrice
* TcpBufferedSocket:
* Weak form of connection_manager, that should progressively be used to
better distribute connections among networks.
* Zlib Compression of connection is now done transparently.
* Int32ops: removed Int32 operations. int32 should be removed as many times
as possible to avoid limitations at 4GB. Bittorrent protocol does not
support files > 4 GB (check new version ?)
2004/01/26: Fabrice
* CommonSwarming: completely rewritten. No partition anymore. Better
block choice strategy. More efficient strutures.
* BTTracker:
* new directories in "torrents/":
* downloads/: .torrent of files being currently downloaded
* tracked/: .torrent of files being currently tracked (maybe seeded)
* seeded/: .torrent of files being currently seeded
* mldonkey command 'compute_torrent' computes a .torrent file for a
filename and put it in torrents/tracked/. The file is immediatly
tracked.
* mldonkey tracker can be accessed:
http://ip:6881/tracker?info_hash=.... -> for the tracker
http://ip:6881/filename.torrent -> to download 'filename.torrent'
2004/01/23: Fabrice
* ed2k_hash: new option -check <size> to compute different hashes on
a generated file of size <size> KB, to test DiskFile, SparseFile and
MultiFile implementations.
* Unix32:
* Open ALL files in RW mode by default, and fall back in RO mode in
case of error.
* New format SparseFile completely implemented.
* Unix32.rename makes the Unix32.t invalid. Might cause some bugs
when sharing just commited files (TO CHECK).
* Options:
* New EXPERIMENTAL option 'emulate_sparsefiles' in downloads.ini,
to emulate sparse files on non-sparse filesystems (e.g. FAT).
Currently only works for Edonkey files, and <preview> and
<recover_file> won't work for them.
2004/01/16: Fabrice
* Fixed problem with files.ini when downloading BitTorrent files
2004/01/15: Fabrice
* Applied Savannah patches #2480, #2481 (emule), #2482 (old GUI)
2004/01/14: Fabrice
* Applied Savannah patches:
#2475, #2474 (bin modes), #2479 (BT), #2473 (negative time),
#2437 (force-download typo), #2423 ("links" command), #2421 (connecttime),
#2417 (message 21), #2415 (LSD not banned), #2414 (old GUI),
#2413 (emule tags), #2411 (emule stats), #2473 (telnet)
* Applied Pango's patch: common_recover_temp
2003/12/22: Fabrice
* make_torrent:
* .torrent filename is specified by -torrent
* New option "-split <filename>" that will split <filename> in smaller
files according to a .torrent file.
* Applied pause.patch
2003/12/17: Fabrice
* Applied upload_slots patch again
2003/12/16: Dek
* mldonkey CVS moved to berlios until savannah is back again.
see https://developer.berlios.de/cvs/?group_id=610
for server-details, web-CVS etc.
2003/12/16: Fabrice
* Applied patches from spiralvoice page: prevent_interface_close, xmule,
emule_tags, upload_cnum, suxx_wap, mld_cb10, remove_challenge,
upload_slots, html_gnutella2, amule
2003/12/15: Fabrice
* Modified "forget" command
* Bittorrent: crash when commiting directories fixed
2003/12/09: Fabrice
* Opennap: removed redondant client_port option
* Gnutella2: removed options with same values as for Gnutella
2003/12/08: Fabrice
* New option 'allow_local_network' to allow connections on the local
network for debugging purpose.
* Bittorrent:
* If 'tracker_port' is not nul, a WEB server is started inside mldonkey
that is used as a tracker, with url:
http://YOUR-IP:<tracker_port>/tracker
* New option 'shared_torrent_files', a list of pairs:
torrent_files = [
("/test_bt.torrent", "../../one_torrent_file.torrent");
]
where the first string in the pair is the relative url on the
tracker web-server http://YOUR-IP:<tracker_port>/test_bt.torrent
and the second is the filename .torrent on the disk to be served.
* New option 'tracked_files': a list of the filenames of the .torrent
files that should be tracked.
* New option 'shared_files': a list of pairs (path to .torrent file,
path to corresponding shared file).
2003/12/06: Fabrice
* New option file_started_cmd (by default "mlprogress") used when a
new download is started to display a progress popup. Set to "" to
disable.
* Improved progress popup.
2003/12/06: Fabrice
* Added 'mlprogress <num>' program that popup a window to display the
download of file <num> (thx to b8_zoggy). Not tested yet.
2003/12/06: Fabrice
* Applied Spiralvoice patches ban.clients, win.patch, patch_pack2c
* Added option 'allow_any_command' to use ! instead of !! for
arbitrary commands (false by default for security reasons)
2003/12/05: Fabrice
* Merged devel/ and stable/ branches for Gnutella2
2003/12/04: Fabrice
* Added module CommonBitzi (merge with devel version)
2003/12/03: Fabrice
* Updated ed2k_hash to compute Sig2dat and Bitprints. For Mac users, you can
check whether bitprints with tiger-trees are correctly computed:
./ed2k_hash.byte -hash bp COPYING
gives:
urn:bitprint:QI3PHA4WVH75CAL72NCNTXZE3SNHU6K3.5URJJG7REVGICNBK5UQBPFGIEO234ZJ3MX2T54I
Partial 0 : 5URJJG7REVGICNBK5UQBPFGIEO234ZJ3MX2T54I
2003/12/02: Fabrice
* Applied patch #2399 (anti-thieves v2)
* Splitted Gnutella and Gnutella2 plugins
2003/12/02: Fabrice
* gui_messages.ini.dutch added
* Suppressed UDP frames sent by a firewalled client, causing it to be
black-listed.
2003/12/01: Fabrice
* Applied patch #2390
* Added Autoconf.windows boolean
* New tool 'make_torrent' generated by 'make make_torrent', that can be
used to generate, print, verify and modify .torrent files.
2003/11/29: Fabrice
* Applied patch #2382 (mingw), #2380 (anti-thieves),
#2384 (gui), #2386 (gui)
* Removed client addr as string in GUI protocol 20
2003/11/29: Fabrice
* Unix32: create_ro = create_rw
* New module BTTracker, to implement a tracker for BitTorrent.
Command "compute_torrent <filename>" in console to generate
the torrent file associated with filename. Not working yet.
2003/11/29: Fabrice
* Removed patch #1261
* Applied patch #2243 (bind sockets), #2377 (mlnet.static),
#2378 (ocaml url)
* Fixed compilation problem in oldgui
* ED2K: send compressed ShareReq message to zlib-enabled servers.
2003/11/29: Fabrice
* Unix32: fixed a bug preventing the creation of a correct directory in BT
2003/11/28: Fabrice
* Unix32: some bug fixes which may have caused bad Sha1 computation in BT at
inner file borders.
2003/11/28: Fabrice
* Applied GUI patches #2372 (renamefile), #2373 (newgui),
#2374 (configwin), #2375 (im), #2376 (configure)
* Applied HTML patches #2151, #2264
2003/11/27: Fabrice
* Removed patch #2341 (for fun :) )
* Applied patch #2139 (html mod), #2371 (telnet)
* Compressed connections to servers work, multiple replies to a search
in one UDP packet works too.
2003/11/27: Fabrice
* Unix32: and yet another bug fixed in MultiFile: no more
Invalid_argument("Unix.write") error
2003/11/27: Fabrice
* Applied patches #2341 (BT), #2354 (BT with MultiFile),
#2339 (improved telnet), #2311 (Overnet [EXPERIMENTAL])
BUT: is there a bug on Savannah, or is it my browser that incorrectly
download patches with ", >, etc... inside ?
* Fixed ed2k_hash compile error
* Hardcoded emule protocol version set to 0x30, connect to Razorblack
* Unix32: another bug fixed causing "really_write 0 BYTES" errors.
2003/11/27: Fabrice
* Bug with Unix32.read fixed (no flush).
* New file type MultiFile in Unix32, created with create_multifile, to
be used by BT.
2003/11/24: Fabrice
* New UDP protocol implemented:
* Understand servers flags in UDP pongs
* Query for and understand multiple replies in one packet
* Query sources for multiple files, and understand multiple files sources
in one packet
* server_last_message updated correctly.
2003/11/24: Fabrice
* Suppressed option client_server_md4 (to correcly connect to all servers)
* Copy Emule behavior for client-client connection
* Send ET_COMPATIBLE flag in EmuleClientInfo with number 10
* Send EmuleClientInfo as soon as Emule client is identified
* Set verbose = "unk" to save unknown packets in /tmp/ directory
2003/11/21: Fabrice
* Applied patches: #2097, #2099, #2110 (mingw),
#2111, #2193 (telnet), #2248, #2255 (XSS bug),
#2268 (server zlib), #2269 (opennap napigator)
2003/11/21: Fabrice
* Applied patches on BT: #2135, #2158, #2247, #2254, #2256
* Applied patch #2299 (files > 2 GB), #2263 (don't ban uploaders),
#2202 (gnutella2 DDOS)
* Gnutella/gnutella2 plugin compiled again
2003/11/20: Fabrice
* Modified to compile with ocaml-3.07
* Started merging -devel and -stable versions
* Gnutella and Gnutella2 plugins disabled
* Should fix GUI protocol problems with G2GUI
2003/11/17: Fabrice
* Applied patches
- GUI: #2080-#2087
+ By default, the new gui is built. To build the former one, run
./configure -disable-newgui
+ When switching from one gui to another one, the .mldonkey_gui* files
may be incorrect, so you are advised to save them or delete them
before switching.
- #2067 ("nu" for bittorrent),
#2070 (new option "all_sources_on_telnet"),
#2094 (sort files by priority for each downloader)
* Some modifications for soulseek:
* Retry connect only after 300 seconds.
* Don't retry connect after INVALIDPASS unless login or password is
changed
2003/10/12: Simon (release-2-5-4)
* Applied patches #2033 (hide-dirs), #2038 (ocaml-3.07),
#2039 (mlsubmit.reg), #2041 (hide-psswd)
2003/10/10: Simon
* Removed patch #1765
2003/10/09: Simon
* Applied patches #1608 (anti-thieves), #1669 (anti-spam),
#1692 (min-users-per-server), #1695 (html-mods),
#1710 (regexp in voo), #1711 (sorted voo),
#1714 (gui priority bug fix), #1715 (fasttrack),
#1732 (mldonkey_submit), #1733 (viewfiles 6 hours),
#1734 (browse-friends), #1743 (bittorrent compliance),
#1748 (emule-bugfix), #1753 (max-conn-servers),
#1765 (limit-reqs DANGER), #1801 (http-proxy),
#1843 (message-file), #1862 (download-amount),
#2024 (filenames), #2025 (friends-slots),
suxx-lugdunum-fix-v2
DELAYED: #1911 (hidden-chunks)