-
Notifications
You must be signed in to change notification settings - Fork 13
/
changelog_full.txt
6122 lines (5269 loc) · 315 KB
/
changelog_full.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
CHANGELOG FOR EMULE
http://emule-project.net
========================
eMule 0.50a
-----------------------
- Apr, 5. 2010 -
-----------------------
.: Added preferences.ini-only option "ExtraPreviewWithMenu" (eMule section) which makes eMule put the "Preview with" command into the root context menu rather than into the preview menu (only applies to extended controls with multiple preview programs set)
.: Added "Open preferences.ini" button to the extended options. Remember that you have to close eMule _before_ saving any changes if you want to edit any not preferences.ini-only settings
.: AICH hashs work properly in all collection types now
-----------------------
- Apr, 2. 2010 -
-----------------------
.: Added new ed2k link type: "ed2k://|search|[searchterm]|/" makes eMule start a search for the specified searchterm. Plugin for webbrowsers which make use of this will follow later
.: Fixed some minor bugs in the Kad graph
.: Fixed a possible bug with AICH recovery when downloading a searchresult which includes the AICH hash
eMule 0.50a BETA3
-----------------------
- Mar, 28. 2010 -
-----------------------
.: Keyboard shortcuts to switch the dialog work again in the transfer dialog
.: Fixed a small visual glitch in the tooltips of the webinterface
.: Fixed a issue regarding eMule deceiding if to trust an AICH hash on files which have no verified AICH has [tHeWiZaRdOfDoS]
.: Fixed minor issues with the exit commandline command and the multiple instances option [tHeWiZaRdOfDoS, leuk_he]
-----------------------
- Mar, 23. 2010 -
-----------------------
.: Fixed ed2k links not containing the AICH hash on several locations (ctrl+c, webserver, etc)
.: Fixed further bugs leading to crashes or glitches in the new toolbar
.: Fixed a possible crash problem with the new Win7 features
.: The Beta versioncheck will now point to a seperate website instead the standard versioncheck (which doesn't works for betas)
eMule 0.50a BETA2
-----------------------
- Mar, 19. 2010 -
-----------------------
.: Update MiniUPnPlib to the latest version
.: The download commands toolbar now handles closing by pressing the X while in floating mode properly
.: The icons of the download commands toolbar are now properly drawn gray if disabled on WinXP and older Windows versions
-----------------------
- Mar, 17. 2010 -
-----------------------
.: The new Windows7 taskbar features will no longer vanish when minimizing eMule to the system tray
.: Updated libpng to the latest version
.: The lables of the download commands toolbar are now properly adjusted immediately when switching to another language
.: The archive preview tab has now a context menu to update the contents as replacement for the "Update" button
.: Fixed a bug in handling part.met files which could cause corrupted parts if eMule paused the file due to insufficient diskspace
.: Fixed a small visual glitch when resizing the shared files list while the new tabs were hidden
.: fixed minor memleak in kad keyword storing [tHeWiZaRdOfDoS]
-----------------------
- Mar, 14. 2010 -
-----------------------
.: Fixed the background color of the new Kad graph if custom themes/colors are enabled
.: eMule now selects the default color of the system icon tray speedbar depending on the color of your taskbar icon area, to avoid show a dark/bright bar on a dark/bright background
.: Fixed a crashbug in the new download commands toolbar (this bug was responsible for nearly all crashes you might have seen in Beta1).
.: Active searches are now automatically shown in the new Kad graph by default and eMule remembers the setting (can be siwtched in the contextmenu of the graph)
.: Fixed a small bug with itemdeletion when closing eMule [JvA]
.: Fixed a small bug regarding Kad search tolerance [Famerlor]
eMule 0.50a BETA1
-----------------------
- Mar, 8. 2010 -
-----------------------
.: Fixed a bug which caused the "Add files to download in paused mode" otpion to not work properly in all cases
.: Fixed a visual glitch on taksbar notifiers when using the Aero theme [gureedo]
-----------------------
- Mar, 3. 2010 -
-----------------------
.: Added Windows 7 taskbar goodies:
- global progress bar in the eMule taskbar button, progress colors: green when downloading, red when a download is errorous, yellow otherwise
- Taskbar Buttons: when hovering over the eMule taskbar button (connect/disconnect/throttle/unthrottle/open preferences)
- Overlay icon: Overlay icon on the eMule taskbar button indicating active up- and downloads (disabled by default, enable by ini entry "ShowUpDownIconInTaskbar=1").
-----------------------
- Mar, 1. 2010 -
-----------------------
.: Tweaked uploadcode to significantly increase the possible uploadspeed per slot especially on LANs, making eMule more suitable for those
.: The number of maximal open upload slots has been decreased to 100
.: Fixed a bug which caused the "Add files to download in paused mode" otpion to not work properly in all cases
-----------------------
- Feb, 28. 2010 -
-----------------------
.: Fixed a problem with the sharedfiles list when deleting a shared files [dolphinX]
.: Fixed minor possible memory/ressource leak in the archive recovery and ipfilter [dolphinX]
.: Fixed possible problem when wrong incoming directory due to categories in certain cases [dolphinX]
-----------------------
- Feb, 19. 2010 -
-----------------------
.: Fixed a bug in Kad which would not enforce the search tolerance in certain cases
.: Changed Kad to work better in small LANs. If Kad detects it is running on a LAN (only LAN IPs in the routing table), it will assume beeing open and not behind a NAT/Router without trying to verfiy (which would fail in a small LAN),
and also doesn't enforces several security features like flood detection for LAN IPs. Now even a small Kad LAN of 2 nodes works well without any setup issues
(To create such a Kad LAN, make sure all clients have Options->Extended->"Filter server and client LAN IPS" disabled, delete the existing nodes.dat if necessary, go to the Kad dialog and enter the IP+Port of one other client (which is either connected or in connecting mode for Kad) to the bootstrap box - done)
-----------------------
- Jan, 25. 2010 -
-----------------------
.: The connection wizzard is no longer shown after finishing the first start wizzard (it's deprecated)
.: The first start wizzard is only shown on first starts and no longer after updates
-----------------------
- Jan, 21. 2010 -
-----------------------
.: Added a new graph to the Kad window, which lets you watch each Kad lookup in detail. For non-Devs this is just for fun, you don't need to worry about anything shown there. A detailed explanation of the graph can be found in the onlinehelp.
.: Added "Automatically show active searches" option to the context menu of the new graph which lets it switch to active lookups automatically (instead having to select it in the list). Now you can watch Kad working for hours without a click! :)
-----------------------
- Jan, 12. 2010 -
-----------------------
.: Added a new dockable toolbar to the transfer dialog. The buttons resemble the context menu options, but making them accessible easier and faster. The toolbar can be removed by right clicking on it and shown again by selecting context menue option of the downloadlist
-----------------------
- Jan, 10. 2010 -
-----------------------
.: The context menu in of the downloadlist allows now directly assign a file to a new category (instead of having to create it separately first)
.: The "Unassign" category context menu entry is now only available if a file actually has a category
-----------------------
- Dec, 7. 2009 -
-----------------------
.: Fixed missing setting saving after automatic adapting incoming folders of categories due to changed main incoming folder
.: Fixed a bug with overwriting the nodes.dat on times we actually don't want to write it [Nissenice]
.: Added a quick intermediate fix to make certain Kad lookups more reliable, improving the (search/source-) results in some cases [based on research from http://www-users.cs.umn.edu/~hopper/kad.pdf]
-----------------------
- Nov, 28. 2009 -
-----------------------
.: Switched the eMule fileidentifiers from ED2k-Hash + Size to ED2k-Hash + AICH-Hash + Size. This means eMule is now using two hashing algorithms combined (based on MD4 and SHA1) to verify if a received part (and eventually the comlete files) is not corrupt
This change is necessary due to weaknesses in the MD4 algorithm and enables eMule to make sure to never complete a corrupt files for the next decade
All changes are backwards compatible, so no clients or files will be exluded from the network
.: AICH part hashsets are build out of existing AICH recovery hashsets, no rehashing is done
.: AICH verification is enabled when using an ed2k link with included AICH hash, or when searching and downloading a file from Kad when certain requirements are met (this will only start to work once the majority of nodes update)
.: The AICH hash can be seen in the search results list for kad searches if available
.: ed2k links can no longer be created without the AICH Hash, except if it is not available. ed2k links without AICH hash are considered deprecated, but are still accepted by eMule for now
-----------------------
- Nov, 15. 2009 -
-----------------------
.: The shared files list now shows files in root directories properly [dolphinX]
.: Fixed a bug with determining if the filesystem can handle large files when using categories [dolphinX]
.: Added preferences.ini-only option "KeepUnavailableFixedSharedDirs" ("eMule"-Section) which lets eMule keep shared directories on fixed drives even if they are not found anymore
.: Fixed minor memleak on kad searches [tHeWiZaRdOfDoS]
-----------------------
- Oct, 13. 2009 -
-----------------------
.: Added preferences.ini-only option "ForceSpeedsToKB" ("eMule"-Section), which will make eMule display all speed values in KB/s (instead of B/s to TB/s depending on the speed)
-----------------------
- Aug, 7. 2009 -
-----------------------
.: The shared files dialog has now a tab selector, letting you choose to view the statistics,(reduced versions of) the content, ed2k-link or metadata info for the selected file(s)
.: The statistics page on in the shared files dialog also has the following new entries: Popularity rank (ranking all your shared files based on Requests), On Queue (clients on queue for the selected file) and Uploading (current bandwidth used to upload the selected file)
.: The new tabs in the shared files dialog can be closed or restored by an arrow button on the right side
-----------------------
- Aug, 3. 2009 -
-----------------------
.: Fixed possible resource leaks in ZIP file decompression [tHeWiZaRdOfDoS]
.: Fixed sorting bug in Shared Files window [moloko+]
-----------------------
- Aug, 2. 2009 -
-----------------------
.: Fixed bug with downloading files via the built-in webserver [Stulle]
.: Fixed double/single click behaviour in search results window [tHeWiZaRdOfDoS]
.: Fixed bug in user hash validation [ilmira]
.: Fixed bug with space characters in ED2K URLs [moloko+]
-----------------------
- Jul, 25. 2009 -
-----------------------
.: Fixed a bug which made search tabs in certain cases invisible after you closed one
-----------------------
- Jul, 20. 2009 -
-----------------------
.: Cleand up options dialog a bit:
The following settings have been removed and are now preferences.ini-only: "BeepOnError", "DontRecreateStatGraphsOnResize", "UpdateQueueListPref", "MessageFromValidSourcesOnly" (Section "eMule") and "EnabledDeprecated" (section "PeerCache")
.: The exit conformation messagebox has now a "Don't ask me again" option
.: Added "Pause on when preview possible" option to the downloadlist context menu. Only visible when "advanced mode controls" is enabled
-----------------------
- Jul, 09. 2009 -
-----------------------
.: Improved storing AICH hashsets after a download has finished - should be much faster now if you share many files
.: Sparse files are available on Windows7 again, Vista stays the only version were they are disabled
-----------------------
- Jun, 12. 2009 -
-----------------------
.: Added basic checks and user warnings for wrong operator usage (like using OR on the first keyword) in Kad. Earlier version just delivered wrong/incomplete results in such cases.
-----------------------
- Jun, 10. 2009 -
-----------------------
.: Fixed a bug in Kad with setting the proper searchkeywords when searching for exact phrases with quotes
.: Fixed a bug with rearranging quoted keywords on kad searches
-----------------------
- Jun, 2. 2009 -
-----------------------
.: Kad1 is no longer supported and we will no longer answer or request any packets from Kad1 nodes (the last eMule Kad1 version was release about 4 years ago)
-----------------------
- Mar - May 2009 -
-----------------------
.: eMule Summer of Non-Code :)
eMule 0.49c
-----------------------
- Feb, 18. 2009 -
-----------------------
.: Fixed a minor GUI drawing issue in the transfer window [dolphinX]
.: Added GUI name references to some more Kad queries [tHeWiZaRdOfDoS]
.: Added sanity check for rare issue seen in crashdumps concerning SourceExchange responses
.: Increased the UDP-Socket buffer to avoid packetloss
-----------------------
- Feb, 15. 2009 -
-----------------------
.: Fixed the following BETA bugs:
- Popups on the shared files list were not working
- The shared files count in the GUI wasn't always accurate
- Resolved shell links had some issues, preventing them from getting shared
- The GUI wasn't always properly updated when deleting a file in the shared files window
eMule 0.49c BETA2
-----------------------
- Feb, 11. 2009 -
-----------------------
.: Fixed a BETA bug in the new part.met recovery function
-----------------------
- Feb, 10. 2009 -
-----------------------
.: Resolve shared shell links has now its own option in the extend dialog instead beeing a preferences.ini only option
.: Added the preferences.ini only option "FileBufferTimeLimit" ("eMule" section) which lets you set the maximum seconds before flushing the buffer of downloading files (default 60)
-----------------------
- Feb, 9. 2009 -
-----------------------
.: When another client requests to view your shared files and directories (and you allow it), eMule will now attach only the directory names (or relative paths if it is a shared subdir) instead the full path for privacy reasons
.: Fixed a BETA bug which caused eMule to not send single shared files when answering view shared files requests
-----------------------
- Feb, 8. 2009 -
-----------------------
.: On a fresh eMule installation, several less important list columns are now hidden by default to avoid overloading the interface
.: Fixed some BETA bugs with creating collections
.: Slightly increased the max. button size of the maintoolbar
.: You can no longer share single files within unshareable directories (like your temp dir)
-----------------------
- Feb, 7. 2009 -
-----------------------
.: Fixed a BETA bug which made eMule ignore the longest keyword on server searches
.: Added sanity checks for some problems seen in crashdumps when sending responses
.: Added sanity range check for preferences.ini only option: tcp obfuscation padding length
eMule 0.49c BETA1
-----------------------
- Feb, 4. 2009 -
-----------------------
.: Dates shown in the download list have their own time format setting ("DateTimeFormat4Lists" in preferences.ini) which is by default more compact than the old one
.: Added a column to the download list which shows the date when the download was started
-----------------------
- Feb, 2. 2009 -
-----------------------
.: Kad routing query contacts are checked against the routing table
.: Kad no longer allows more than 2 IPs from the same subnet within one routing query reply (except on LANs)
.: Fixed small bug in the uploadthrottler [tHeWiZaRdOfDoS]
-----------------------
- Jan, 27. 2009 -
-----------------------
.: The Kad UDP firewalltest now asks several clients for its external port, avoiding to get a wrong "Open" state on NATs which change the source port on each request but behave like a Full-Cone otherwise
.: Kad now rechecks incoming search results against the filters used for a search and drops all results which fail (which should only happen for buggy clients and spam results)
-----------------------
- Jan, 25. 2009 -
-----------------------
.: When corrupted part.met files are detected, eMule now automatically tries to use the part.met.bak files instead
.: Some data (like the AICH hashset, statistics, metadata etc) from known/downloaded files which were not shared within the last month now gets purged to save ressources and avoid an unlimited growth of the known.met files
(the first purge will be done one month after upgrading, if you have "Remember downloaded files" disabled all unshared files are completely deleted right away so this change would have no further effect)
.: If you want to avoid this purging for some reason you can put "PartiallyPurgeOldKnownFiles=0" in the "eMule" section of your preferences.ini
-----------------------
- Jan, 20. 2009 -
-----------------------
.: When sorting lists for file types, eMule now further sorts by extension when the filetype is the equal
-----------------------
- Jan, 11. 2009 -
-----------------------
: On simple search queries Kad now rearrenges the used keywords itself and uses the longest keyword to determine which node to ask. This reduces the search load on common used keyword nodes like "and", makes such keyword a less viable target to attackers and allows users to do a search which begina with a short keyword like "An eMule"
.: You can deactivate this by putting "RearrangeKadSearchKeywords=0" into the "eMule" section of the preferences.in (there isn't much reason to do so for normal users however)
-----------------------
- Jan, 10. 2009 -
-----------------------
.: You can now also share single file and directories by Drag&Drop - simply drag them from (for example) the Windows Explorer into your Shared Files list
.: You can now share and unshare single files in the shared files window by chking/unchecking the files in the "All directories" tree. Downloading files and files in the incoming directory cannot be unshared
(first one is required for the network the second one is for consistency as the incoming dir is not handled as optional shared dir, therefore not marked in the tree as shared which again would make it pretty hard to find it to reshare any excluded files)
.: Kad file/source search answers now try to avoid using fragmented packets, making it more compatible to zealous firewalls routers which block those (effect increases as more nodes update to this version)
-----------------------
- Jan, 5. 2009 -
-----------------------
.: Fixed a possible crash in the (minilib) UPnP implementation
.: The Webinterface port can now also be forwarded by UPnP (Options->Webinterface)
.: The UPnP mappings are checked and refreshed if needed before Kad firewallchecks, after waking up from suspend and on smart lowid detection when connecting to servers
-----------------------
- Jan, 3. 2009 -
-----------------------
.: The allowed comment size has been increased to 128 characters
.: Fixed a bug which made the download list use the wrong text color in some cases, mostly noticed on special windows themes
-----------------------
- Dec, 22. 2008 -
-----------------------
.: Added support for Windows 'Heap Corruption Detection' security feature (Windows Vista)
.: Added support for Windows 'Address Space Layout Randomization' security feature (Windows Vista)
-----------------------
- Dec, 21. 2008 -
-----------------------
.: Added support for preview the content of ISO files. (file details->content)
Reads the content of ISO9660 and Joliet images. (no UDF support)
.: Made sure a received Kad routing answer doesn't contain more contacts than requested [Xin Sun]
-----------------------
- Dec, 19. 2008 -
-----------------------
.: Added support for Windows 'Data Execution Prevention' security feature (Windows XP SP2 / Windows Vista)
.: Added support for Windows 'Exception Handling Protection' security feature (Windows XP SP2 / Windows Vista)
-----------------------
- Oct, 22. 2008 -
-----------------------
.: Added: Crash dump files are created in the 'config' directory. [thx tHeWiZaRdOfDoS]
.: Fixed a flaw which caused too few randomness when generating a new ed2k userhash [godlaugh2007]
-----------------------
- Oct, 21. 2008 -
-----------------------
.: Added showing of watermark images to listviews (see "LvBkImg" entries in "Template.eMuleSkin.ini")
-----------------------
- Oct, 18. 2008 -
-----------------------
.: Unified drawing of multiple selected items in all listviews.
.: Several optimizations in listview drawing.
.: Added drag image for files in Transfers window (used when dragging selected items onto a category tab).
.: Fixed showing of tooltips for multiple selected items in Server and Search window.
-----------------------
- Oct, 11. 2008 -
-----------------------
.: Added auto-sizezing of column widths to all list views (double clicking on column divider will size the column width appropriatly)
.: Added label tips for partially visible sub items in all list views.
.: Added default sort orders to list views in Transfers window.
.: Added list view search functions for sub items.
.: Fixed sorting bug in File Name dialog.
-----------------------
- Sep, 27. 2008 -
-----------------------
.: Added support for DVR-MS files to "Content" page of File Details dialog and published meta data.
.: Minor change in auto-sizing controls of Search Parameters pane.
.: Added reading of meta data for WAV files to "Content" page of File Details dialog.
.: Added publishing of ED2K specific meta data for WAV and WMA files.
.: Added columns for ED2K meta data to Shared Files window.
-----------------------
- Sep, 23. 2008 -
-----------------------
.: Added Options->Extended->Resolve shell links which lets eMule share 'linked' files (Windows Explorer shortcuts). This way one can also share single files within unshared directories.
.: Added reading of meta data for Windows Media files to "Content" page of File Details dialog.
-----------------------
- Sep, 14. 2008 -
-----------------------
.: Added yet another method to determine whether the MediaInfo library is installed.
.: Added support for multi-user configurations for Win9X/WinME/WinNT (requires at least IE5).
.: Added support for previewing self extracting RAR archives.
.: Fixed broken ED2K link and eMule Collection file registry functions for Win98/WinME/WinNT.
-----------------------
- Sep, 13. 2008 -
-----------------------
.: Fixed a resizing bug with the main toolbar under Win98.
.: Fixed message box contents for downloading a proper version of DBGHELP.DLL for Win9x/WinME/Win2000.
.: Fixed a crash with deleting completed or shared files under Win98.
.: Added: Downloaded files are marked in the same way as by 'Internet Explorer' which leads to showing a warning message from 'Windows' when opening potential malicious files (for Windows XP SP2 or later).
.: Added: Opening DRM protected files shows a warning message to prevent accidental opening of a web browser and navigating to malicious sites.
-----------------------
- Sep, 11. 2008 -
-----------------------
.: Fixed bug with missing update for filter text on changing the language [JvA]
.: (Win98) Fixed bug with default search file type setting
-----------------------
- Sep, 4. 2008 -
-----------------------
.: Added new browse file/directory buttons to property pages in Options dialog.
-----------------------
- Sep, 2. 2008 -
-----------------------
.: Fixed some redrawing/resizing problems and reduced flickering in several main eMule windows.
-----------------------
- Sep, 1. 2008 -
-----------------------
.: Fixed bugs with file tooltips for Win98/Win2000.
.: Fixed a problem with corrupt stored search results [George1]
-----------------------
- Aug, 30. 2008 -
-----------------------
.: Fixed: It was possible to add eMule installation folder(s) to the shared files list when using the directory tree control in the Shared Files window.
.: Fixed a bug with disk space statistics for newly added downloads [fox88]
.: Fixed some potential compatibility problems with Windows NT 4.0.
.: Fixed problem with some missing icons under Win98.
-----------------------
- Aug, 24. 2008 -
-----------------------
.: Fixed: Some Unicode strings where not stored correctly in meta data for part files.
.: Fixed some possible Unicode issues in Kad search expressions.
.: Removed the "Search with Unicode" search option - searches are always with Unicode.
.: Removed support for *.met file backward compatibility with non-Unicode eMule versions.
.: Removed support for the "SetSystemACP" setting in preferences.ini.
.: Added support for detecting if the MediaInfo library (http://mediainfo.sourceforge.net/) is installed on the system and automatically using it within the "Content" page for part/shared files.
.: Updated Kad Unicode mapping table for supporting current Unicode standard used by Vista.
-----------------------
- Aug, 16. 2008 -
-----------------------
.: Fixed: Some Unicode strings where not stored correctly in search spam filter.
-----------------------
- Aug, 15. 2008 -
-----------------------
.: Added a NT-volume info cache to speed up handling of shared directories on non-fixed drives.
.: Fixed: With certain code pages some Unicode characters where not stored correctly in *.met files [Borschtsch]
.: Fixed: Some Unicode strings where not stored correctly in meta data for shared files.
-----------------------
- Aug, 11. 2008 -
-----------------------
.: Changed location for "downloads.txt" to eMule-config folder.
-----------------------
- Aug, 10. 2008 -
-----------------------
.: Added sorting of entries in "Shared Directories" and "Incoming Files" section of "Shared Files" tree view.
.: Added showing of the parent folder for entries in "Shared Directories" and "Incoming Files" section of "Shared Files" tree view.
.: Added showing of 'not connected' shared directories to "Shared Directories" and "Incoming Files" section of "Shared Files" tree view.
.: Added keeping of shared directories which are 'not connected' when starting eMule.
.: Added populating of a warning icon overlay to "Shared Directories" and "Incoming Files" section of "Shared Files" tree view to indicate that there is at least one directory in that folder which is 'not connected'.
.: Added verifying of the 'connected' state for all shared directories when updating the "Shared Files" tree view by using the 'Reload' button.
-----------------------
- Aug, 9. 2008 -
-----------------------
.: Fixed enablement of Start/Cancel button in Search Window for closed Kad searches.
.: Fixed invisible gripper control in Transfer Window.
.: Fixed standard Windows Property Sheet shortcuts in Options dialog.
.: Fixed several unlikely to happen but theoretically though possibles crashes.
.: Removed restrictions for sharing drives 'A:' and 'B:'.
eMule 0.49b
-----------------------
- Jul, 31. 2008 -
-----------------------
.: Fixed some rare possible crashes
eMule 0.49b BETA2
-----------------------
- Jul, 28. 2008 -
-----------------------
.: Added deleting of single entries from AutoComplete drop down lists by pressing the DEL key.
.: Added a new search method option "Automatic" which lets eMule choose which search method to use. eMule will select either Servers (Local) or Kad, based on which network we are connected to and some other indicators if connected to both networks.
.: Removed a general exception handler for the Beta version. This means eMule crashes instead of ignoring unexpected errors, which however is needed so we actually can find such bugs (if any exist) in the crashdumps.
-----------------------
- Jul, 26. 2008 -
-----------------------
.: Implemented a special nodes.dat version, which is more suited for mass distribution without causing significant additional traffic for the included nodes. This hopefully allows us to add a nodes.dat to the installer, so that new user can connect to Kad without having to connect to servers or downloading a nodes.dat themself
-----------------------
- Jul, 19. 2008 -
-----------------------
.: Implemented an alternate method to estimate the total user count in the Kad network, which is not based on our local routing table. Its experimental and only shown in the network dialog (double click the world icon in the status bar)
.: Adjusted the displaying of the user count by not showing numbers for a network we are not connected to
-----------------------
- Jul, 14. 2008 -
-----------------------
.: Fixed a minor bug with kad obfuscation when answering unbofuscated hello-requests
.: Made sure that only one challenge to verify a contact is sent at a time to the same IP
eMule 0.49b BETA1
-----------------------
- Jul, 11. 2008 -
-----------------------
.: Added MiniUPnPLib as additional UPnP implementation, the current Windows service based implementation is used as fallback. This will hopefully make eMule's UPnP compatible to most available routers. [miniupnplib by Thomas Bernard, Test & Suggestion: leuk_he]
.: A specific UPnP implementation can be disabled by adding "DisableMiniUPNPLibImpl=1" or "DisableWinServImpl=1" into the "UPnP" section of the preferences.ini
-----------------------
- Jul, 5. 2008 -
-----------------------
.: When reading a nodes.dat without any verified contacts (possible an old file version), eMule will assume all contacts to be verified to avoid slowing down the connecting process
.: Project files for VS2005 and VS2008 have been added, however the official eMule is still developed and compiled on VS2003
-----------------------
- Jun, 27. 2008 -
-----------------------
.: Several changes were made to Kad in order to defy routing attacks researched by University of Minnesota guys [Peng Wang, James Tyra, Eric Chan-Tin, Tyson Malchow, Denis Foo Kune, Nicholas Hopper, Yongdae Kim], in particular:
.: Kad contacts will only be able to update themself in others routing tables if they provide the proper key (supported by 0.49a+ nodes) in order to make it impossible to hijack them
.: Kad uses now a three-way-handshake (or for older version a similar check) for new contacts, making sure they do not use a spoofed IP
.: Unverified contacts are not used for routing tasks and a marked with a special icon in the GUI
-----------------------
- Jun, 22. 2008 -
-----------------------
.: Fixed: Shared Files window splitter did not properly save/restore position.
.: Did first small step in dropping Kad1 support by not probing unknown Kad contacts for Kad1 anymore to save overhead. Kad1 clients will nevertheless still be work for now.
.: Fixed a bug which let Kad sometimes assume a Kad2 contact to be Kad1 after probing for both versions
-----------------------
- Jun, 18. 2008 -
-----------------------
.: Fixed: Memory leak in context menus.
.: Added: Vista styles for context menus.
-----------------------
- Jun, 12. 2008 -
-----------------------
.: Fixed: Pressing ESC in Shared Files window filter destroyed the entire window.
-----------------------
- Jun, 10. 2008 -
-----------------------
.: Added additional sanitize checks to make sure eMule never writes downloaded data into an already completed part
.: Optimized the Kad packettracking code to only tack packets which we check later, to save ressources
-----------------------
- Jun, 9. 2008 -
-----------------------
.: Fixed 100% CPU usage bug with tooltips in Statistics Graphs.
.: Added: Tooltip in Statistics Graphs show the Y-value.
.: Kad no longer tries to add UDP firewalled (and therefore mostly unreachable) nodes into its routing table, reducing overhead and increasing reliability [Idea: Netfinity]
.: Kad tries to determine the overall ration of firewalled clients in the Kad network and shows them in the statistics tree. This will only work if you are not firewalled yourself and know enough 0.49b+ nodes
.: When calculating the total user count, Kad now uses (if available) the real number of firewalled clients for the calculation instead a fixed value. This will take more effect when 0.49+ nodes become common
-----------------------
- Jun, 5. 2008 -
-----------------------
.: The "Handle eD2k-Links" button now also works properly with Vista's UAC enabled
-----------------------
- May, 31. 2008 -
-----------------------
.: Added: Unshare context menu entries for directories within the virtual "Shared Directories" folder.
-----------------------
- May, 28. 2008 -
-----------------------
.: Added: Vista themes for all owner drawn tab controls.
.: Added: Vista themes for category selector controls.
-----------------------
- May, 25. 2008 -
-----------------------
.: Fixed main toolbar redrawing problems under Vista.
.: Reworked connecting code, fixing some minor and some major bugs, including a possible loop in unreachable DirectCallback sources
-----------------------
- May, 19. 2008 -
-----------------------
.: Added new close icons for closeable tab controls.
.: Kad now ignores multiple IDs pointing to one IP in routing request answers
-----------------------
- May, 18. 2008 -
-----------------------
.: Fixed: Tab controls were not sized correctly on certain text contents.
-----------------------
- May, 17. 2008 -
-----------------------
.: Fixed: Category tabs in Transfers window did not show correct default text color.
.: Fixed: Category properties dialog did not always show the correct (default) category color.
.: Added: Hot tracking effects for Vista themes for all (owner drawn) tab controls.
-----------------------
- May, 12. 2008 -
-----------------------
.: Fixed: Tooltips did not show correctly with Vista Aero theme.
0.49a
-----------------------
- May, 8. 2008 -
-----------------------
.: If extended controls are enabled (and if available) Kad search results show the amount of known unique publishers for a file in parentheses in the availability column (this isn't equal to sources, but it is a bit more trustworthy indicator how common a file is).
.: Updated CxImage lib to the latest version (6.0), fixes some image processing vulnability (low risk for eMule) [reported: Steve Manzuik/Juniper Networks]
.: Fixed Unicode issue in stored and loading searches
.: DirectCallback sources are now properly added to and checked against the deadsource list
0.49a BETA3
-----------------------
- May, 5. 2008 -
-----------------------
.: Made sure to always use the intern UDP port if both (intern and extern) ports succeed in the firewall test
.: Control chars are now filtered out of ed2k-links / received filenames [eklmn]
.: Fixed a small bug with handling removed category directories on startup [tHeWiZaRdOfDoS]
.: Changed installer to set the currently used shared usage setting as default if available
-----------------------
- May, 3. 2008 -
-----------------------
.: Fixed another bug in the new UDP firewalltest, causing it to fail for results on the extern UDP port and for unreachable clients
.: Captchas can consist of numbers now too (except 0)
.: Fixed a smaller issue with finding and connecting to a buddy
.: Buddy search interval has been reduced, to increase the chance to find a buddy without waiting too long
-----------------------
- May, 1. 2008 -
-----------------------
.: Changed the Crypt functions a bit for faster processing [netfinity]
0.49a BETA2
-----------------------
- Apr, 29. 2008 -
-----------------------
.: Fixed some rare bug which could cause rerequesting already transferred (buffered) data [tHeWiZaRdOfDoS]
.: Tweaked UPnP a bit to support some more routers [leuk_he]
.: Updated libpng to the most current version 1.2.27
-----------------------
- Apr, 27. 2008 -
-----------------------
.: Changed the kad tcp firewalltest protocol to make it possible to archive the tcp open state if the UDP port is firewalled
.: Each dialog (kad, server, etc) has now its own "doorway" helptopic which eMule shows when pressing F1 or the Helpbutton, instead of only calling the helpindex
-----------------------
- Apr, 23. 2008 -
-----------------------
.: Fixed two bugs in the new kad firewalltesting which may lead to wrong results [tHeWiZaRdOfDoS]
.: eMule now supports ed2k-links for downloading the nodes.dat from an URL. A link to a nodes.dat should look this way: ed2k://|nodeslist|http://domain/nodes.dat|/
.: Fixed two minor display bugs realted to the waiting queue and the requests statistics for files [tHeWiZaRdOfDoS]
-----------------------
- Apr, 20. 2008 -
-----------------------
.: Loading stored kad keywords and sources has been moved into a seperate thread to avoid interface lockups, while the data is loading
.: Kad (tcp)firewalltest and buddy tcp connection now properly support protocol obfuscation too, on require obfuscation setting those connections (and therefore its functionality) didn't worked before
-----------------------
- Apr, 15. 2008 -
-----------------------
.: Ctrl+W now closes the active searchtab in the search dialog
0.49a BETA1
-----------------------
- Apr, 12. 2008 -
-----------------------
.: Beta versions now create a small test text file which is shared by eMule to help us debugging protocol changes (esp Kad). On exit this file is deleted
.: Fixed a bug with the "Open Directory" menuitem in the shared files window [Stulle]
-----------------------
- Apr, 11. 2008 -
-----------------------
.: Added the obfuscation setting to the First Time wizard and removed the full chunk upload setting instead
.: Disabled peercache downloads by default (deprecated)
.: Added a Beta nagging dialog
-----------------------
- Apr, 6. 2008 -
-----------------------
.: Fixed several bugs in the new Kad firewall testing, obfuscation and direct callback functions
-----------------------
- Mar, 30. 2008 -
-----------------------
.: eMule is now aware of windows standby modes and reconnects after waking up [MorphXt]
-----------------------
- Mar, 18. 2008 -
-----------------------
.: Fixed: File tooltips used wrong font sizes when using customized Windows metrics.
.: Added: Support for using Windows default fonts for listview and treeview controls in eMule's main windows. This way one can specify larger fonts for almost all eMule lists via the Windows System Metrics. Specify "UseSystemFontForMainControls=1" in "preferences.ini" to enable.
.: Fixed: Shared directory treeview control lost icons after Windows System settings were changed.
.: Fixed: Wrong font mapping for some GUI elements in non-Western locales.
-----------------------
- Mar, 17. 2008 -
-----------------------
.: Fixed: Shared Files list did not show focus rectangle for listview items.
-----------------------
- Mar, 16. 2008 -
-----------------------
.: Fixed: "Search related Files" context menu entry in search results pane was not properly enabled/disabled [Tuxman]
.: Fixed: Memory corruption for column properties in WebServer [tHeWiZaRdOfDoS]
.: Fixed: Normalized search labels in WebServer [ducho]
.: Fixed: Some search results where still shown after invoking 'Close All Search Results' [bengarchy]
.: Fixed: Enabling/Disabling the "Queued Clients" and "Known Clients" lists did not always fill/clear the list views [Xman]
.: Fixed: Toolbars in Transfere window were not showing tooltips after enabling/disabling "Queued Clients" and/or "Known Clients".
-----------------------
- Mar, 15. 2008 -
-----------------------
.: Fixed some GDI resouce leaks. [Rapid_Mule]
.: Fxied a minor possible bug in creating random numbers [leuk_he]
.: Fxied a bug in the new store searches function [netfinity]
-----------------------
- Feb, 26. 2008 -
-----------------------
.: When deleting more than 50 files the first 50 names are shown in the confirmation dialog [tHeWiZaRdOfDoS]
.: Fixed a bug in finding the senders of corrupt data which may lead to false positives [DavidXanatos]
-----------------------
- Feb, 10. 2008 -
-----------------------
.: Kad will now enforce certain limits when adding new contacts to the routing table: No more than 1 KadNode per IP, 2 similar KadNodes (same bin) from a /24 network and max 10 different KadNodes from a /24 network are allowed. This is supposed to make routing attacks against kad more difficult / resource-intensive
You can still run more than one kad client from a single IP without any problems, they just don't become part of the internal kad routing but still work without any limitations.
-----------------------
- Feb, 3. 2008 -
-----------------------
.: The download comments dialog has now a direct possibility to edit the comment spam filter, changes are instantly applied to all existing comments
.: Clients which sent comments which get filtered by the comment spam filter are now treated like message spammers (banned)
.: The ed2k: in ed2k-links is no longer case sensitive
.: When connecting to Ed2K eMule starts with a random server instead using first on in the server.met. Any sorting, priority, etc. is not affected by this
-----------------------
- Feb, 1. 2008 -
-----------------------
.: Several changes have been made to improve kads resistance against malicious keyword publishing:
.: Kad now keeps track which filenames were published by different sources for the same file and uses the most common name (instead the last published one) when responding search requests
.: Same hashs (files) which have different filesizes are now properly stored seperatly instead overwriting eachother
.: Kad calculates a rating based on how many different sources publish a file and how many files publishes a source. When responding to a search request, files with a rating below a set limit will be sent last in order to avoid that spammed files push out valid ones.
.: The Kad rating for published files is also sent in search results to be used in the future version as indicator
-----------------------
- Jan, 16. 2008 -
-----------------------
.: Added a general anti-flood-protection to kad. If Kad receives more request of a specific type from one IP than it would expect, it starts ignoring those requests and envetually banning the source. This is supposed to avoid or slow down several attack scenarios.
.: Fixed a problem with injection of DNS servers into the routing tables which were able to stay because of a porotcol mixup between kad and dns. Old sources with port 53 as kad port are ignored, new clients (0.49a+) can use port 53 as kad port again but it is not recommended [found by netfinity]
.: Fixed a bug in kad2 with publishing >4GB files [netfinity]
-----------------------
- Jan, 11. 2008 -
-----------------------
.: If you select a non-default incoming directory which already contains files, eMule notices you that those files are automatically shared by eMule
-----------------------
- Jan, 8. 2008 -
-----------------------
.: Added a filter box (like in the search results) for on-the-fly filtering of shared files into the shared files tab. This filter is supposed to help finding specific shared files, it has no effect on which files are actually published
.: Rearranged the symbols in the shared files directory tree a bit
-----------------------
- Dec, 15. 2007 -
-----------------------
.: The onlinehelp for the options dialog is now topic sensitive for all languages instead only for english (well actually it is not, but this is serverside work which will be done step by step till the release). More areas to get topic sensitive to come in the future
.: Open searches are now stored if you close eMule and restored on restart. This way you don't have to research your favourite words in case you didn't get to finish looking at the results. Can be disabled in Options->Display
-----------------------
- Dec, 2. 2007 -
-----------------------
.: Reworked Kads Firewall handling and testing:
The kad firewall state is now split into TCP and UDP. The TCP state is basically the old state, which tests if your TCP port is reachable. The UDP state is new and checks if your UDP port is reachable. For example on Full Cone NAT Routers, without portforwarding you will get TCP firewalled (as before) but UDP open (new). If you have the UDP open state, eMule doesn't needs a buddy any longer and will fully participate in the KAD network and therefore take away the overhead they caused in earlier versions (you still cannot connect to other TCP firewalled clients if you are TCP firewalled yourself).
.: The new UDP state is shown in the MyInfo field in the Server Tab. As long as the UDP firewalltest is unfinished "(unverified)" is appended
.: Clients which have the Kad UDP open state, now support direct callbacks (invoked by an UDP packet) to connect to not firewalled clients. These callbacks are faster, more reliable and use less ressources than buddy or server callbacks.
.: The new firewall test also fixes a bug / design flaw which caused eMule to always use the use the clients source UDP port, instead testing if the internal set UDP port might be the propper choice instead. This was especially a problem on Restricted Cone Routers with PAT (Port Address Translation)
-----------------------
- Nov, 29. 2007 -
-----------------------
.: Fixed bug with possible wrong local IP address in case the "BindAddr" option is used.
.: Fixed bug with missing update of details of a selected friend in friends list.
-----------------------
- Nov, 24. 2007 -
-----------------------
.: Fixed bug in tooltips which were showing certain list items partially in bold.
-----------------------
- Nov, 19. 2007 -
-----------------------
.: Added missing Unicode support for 'Static Servers' feature.
-----------------------
- Nov, 12. 2007 -
-----------------------
.: Fixed several of our listcontrols to show Windows' context menu of scrollbars
.: Added an option (Options->General) to prevent Windows from going into standby mode while eMule is running (and doing something)
-----------------------
- Nov, 11. 2007 -
-----------------------
.: Fixed bug in IRC window with channel windows opening in reverse order.
.: Fixed bug with dead servers occasionally not deleted from GUI [fox88].
.: Fixed bug with disabled E-Mail notifications on particular Windows systems [Lewpy]
.: Added showing of IRC-warning and error messages to the active channel window.
.: Added auto-activating of private IRC channel windows when self-initiating the conversation.
.: Fixed bug with extra large icons in file tooltips.
.: Fixed bug with HTTP downloads which could create a crash in case the HD is full.
.: Fixed a memory leak with failed gzip'd HTTP downloads.
-----------------------
- Nov, 07. 2007 -
-----------------------
.: Fixed garbled display of HTTP download status information
-----------------------
- October, 31. 2007 -
-----------------------
.: The messagesystem is now able to find your friends even if their IP changed if you and they are in Kad and not firewalled. This will help to stay in contact with friends longer than one session (Only works for new added/new seen friends which have Kad enabled).
.: When messaging a friend, eMule now makes sure that the userhash still matches after connecting and SecureIdent (if enabled) is passed in order to ensure that its really your friend.
-----------------------
- October, 28. 2007 -
-----------------------
.: You can now bootstrap to kad from an URL which points to a nodes.dat file (in the Kad tab)
-----------------------
- October, 22. 2007 -
-----------------------
.: In order to reduce spam messages and by this make the messagesystem more useable again, eMule now supports Captcha authentification:
If enabled, someone who messages you has first to solve a cpatcha (an image which shows letters) before the message is shown to you. Older clients who do not support captchas will be unable to message you and receive a notice about this.
-----------------------
- Jule, 11. 2007 -
-----------------------
.: Added obfuscation to the Kad UDP protocol. Kad obfuscation is part of the protocol and is unrelated to the Ed2K-Obfuscation settings
-----------------------
- June, 5. 2007 -
-----------------------
.: Fixed a bug which let Kad try to load its preferences from the old config directory location
-----------------------
- May, 16. 2007 -
-----------------------
.: Added Uyghur translation [translated by Abduqadir]
0.48a
-----------------------
- May, 13. 2007 -
-----------------------
.: Happy Birthday eMule :)
-----------------------
- May, 12. 2007 -
-----------------------
.: Fixed some bugs in UPnP and changed the behavior for ADSL devices a bit
.: Fixed a bug concerning double adding friends
.: If Vista is running with Aero, eMule will enable Minimize to Tray on Minimize by default (can be changed in the display options)
0.48a BETA2
-----------------------
- May, 08. 2007 -
-----------------------
Ornis: Changed to wizard to set file proper file permission on installed config files
.: Fixed another Bug in the SourceExchange, which caused eMule to not response to requests in certain cases [Xman1]
.: Sorting for cumulative stats in the sharedfiles list is now properly remembered when restarting eMule
.: The "Disable UDP" and Enable "Kad" options now exclude eachother [leuk_he]
.: Fixed a bug in UPnP when the UDP port has been disabled by the user [leuk_he]
.: IRC optional serverports should work properly now
.: Fixed a bug in IRC when receiving ed2k links from other users
.: Added a excess flood protection for eMule IRC responses
-----------------------
- May, 05. 2007 -
-----------------------
.: The Spam indicator icon has been replaced [icon by Daan]
.: The first time wizzard is now using the proper ports when testing UPnP in case a user has changed the ports in the wizzard
.: Fixed eMule (error-)handling for files whose paths exceed the operation system pathlength limit
.: If eMule started the Windows UPnP Service but failed to forward ports via UPnP it will shutdown the service afterwards
.: Added an option to disable smileys
.: Fixed a small memleak in the smileyselector window
0.48a BETA1
-----------------------
- April, 29. 2007 -
-----------------------
.: The "official" development environment for eMule has switched to VS2003 SP1. VS2002 is no longer supported (but should still compile fine)
-----------------------
- April, 28. 2007 -
-----------------------
.: Sorting in the ipfilter dialog has been fixed on Vista
.: Tooltips now have the proper size on Vista
.: All file related tooltips should look a bit nicer now (on all systems)
.: Added tooltips to the shared files list
-----------------------
- April, 21. 2007 -
-----------------------
.: Sparse files have been disabled on Vista, due to a faulty / limited Vista implementation of them, which cannot be worked arround by eMule
-----------------------
- April, 15. 2007 -
-----------------------
.: Added a spamfilter for search results. It mainly works by remembering files a user has marked as spam and marking files
which seems to be very similar as spam too.
.: Spam results are drawn gray and always put to the end of the list
.: Spam results count max. 5 sources towards the 100 sources global search limit
-----------------------
- April, 9. 2007 -
-----------------------
.: The default paddingsize for obfuscated TCP connections has been increased to 128 bytes (from 16) in order to be harder detectable by size pattern matchings
.: The paddinglength can be changed manually by adding "CryptTCPPaddingLength=[1-256]" into the eMule section in the preferences.ini
-----------------------
- March, 12. 2007 -
-----------------------
.: eMule now supports multi-user installations, which especially is supposed to fix the folder permission problems on Vista
In short: for Windows Versions before vista, nothing will change by default, on Vista eMule will use the current userspecific folders by default
Please consult the onlinehelp for a detailed explanation. The setting can be changed at the extended options.
-----------------------
- March, 11. 2007 -
-----------------------
.: On Vista the half-open connection limit is now properly set to 9 by default (instead of 50)
-----------------------
- Feb, 20. 2007 -
-----------------------
.: When using autoconnect on startup or pressing the Connect button while UPnP is still busy, eMule will wait for it to finish
or timeout. You can enforce on isntant connect by clicking the button again
-----------------------
- Feb, 18. 2007 -
-----------------------
.: Added UPnP support [merged from Shareaza]
.: Added UPnP test button into the first time wizzard
-----------------------
- Feb, 09. 2007 -
-----------------------
Ornis: added Farsi translation [translated by Mory Abdi & Ali Mojarad]
.: The calculation of credits given for the first 9MB (less than one part) has been changed slightly to decrease the reward for clients who upload less than one part
-----------------------
- Jan, 20. 2007 -
-----------------------
.: Fixed a obfuscation related bug in the sourceexchange
.: Changed the sourceexchange protocol to avoid backwards compatibility problems and bugs in the future
.: Added support for multi-related files searches [serverside implementation by lugdunum]
-----------------------
- Jan, 14. 2007 -
-----------------------
.: Fixed crash in Statistics window.
Ornis: added Valencian translation [translated by "Valencian"]
Ornis: major update of Slovenian translation [Gusar]
Ornis: label of category tabs are now displayed in category color
Ornis: return of the context menu on message tabs (Details, Add/Remove Friend, Close)
-----------------------
- Jan, 5. 2007 -
-----------------------
.: Prepared Kad for support of obfuscated packets. This is only passive in this version yet.
-----------------------
- Dec, 13. 2006 -
-----------------------
.: Fixed memory leak in list controls [eklmn]
-----------------------
- Dec, 12. 2006 -
-----------------------
.: Fixed performance problem with too large eD2K links and enabled 'Monitor Clipboard' option.
-----------------------
- Dec, 9. 2006 -