Official eMule-Board: Tk4 Mod 2.2b (based On Emule 49b) - Official eMule-Board

Jump to content


  • (11 Pages)
  • +
  • « First
  • 8
  • 9
  • 10
  • 11

Tk4 Mod 2.2b (based On Emule 49b) 18.02.2009 | Merged to 49b |

#181 User is offline   Da GuRu 

  • Premium Member
  • PipPipPipPipPip
  • Group: Members
  • Posts: 272
  • Joined: 25-December 02

Posted 19 July 2007 - 05:54 PM

thanx for new release ;) :flowers:

eMule 0.48a TK4 2.1b

Posted Image


Download Mirrors:
eMule-0.48a-TK4Mod-2.1b-bin.rar
eMule-0.48a-TK4Mod-2.1b-src.rar


Download more versions of eMule TK4.MoD
Features & Changelogs for eMule TK4.MoD
Rate eMule TK4.MoD @ emule-mods.de !!!
eMule: Server.met - Server-List - IPFilter - Skins - eMule Wiki

This post has been edited by Da GuRu: 19 July 2007 - 05:55 PM

0

#182 User is offline   Deer-Hunter 

  • Magnificent Member
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 349
  • Joined: 09-November 04

Posted 20 July 2007 - 11:32 PM

Once again then thx :-)

Mirror updated:
TK4Mod
http://eMulebase.de/...itere_mods/TK4/

Posted Image

greets

Deer-Hunter
*Lerne von allen, aber besonders von deinen Feinden*
0

#183 User is offline   Rapid_Mule 

  • "routing problems on the neural net"
  • PipPipPipPipPip
  • Group: Members
  • Posts: 256
  • Joined: 03-May 04

Posted 19 August 2007 - 11:27 PM

Shouldn't we subtract the IP and ICMP headers (28) in Pinger::FindMTU lpfnIcmpSendEcho calls?.
I am asking this because on my network the test for mtu=1500/1492 always fails and I get a smaller value (MTU - 28).
I tried the following and it worked fine.
Pinger::FindMTU (lpfnIcmpSendEcho) calls
...
if(lpfnIcmpSendEcho(hICMP, stDestAddr.s_addr, bufICMP,(uint16)(thePrefs.FindMTU + 1)[b]-28/*MTU - IP and ICMP headers*/[/b] , &stIPInfo, achRepData, sizeof(achRepData), TIMEOUT ) == 0)
...
if(lpfnIcmpSendEcho(hICMP, stDestAddr.s_addr, bufICMP, (uint16)thePrefs.FindMTU[b]-28/*MTU - IP and ICMP headers*/[/b], &stIPInfo, achRepData, sizeof(achRepData), TIMEOUT ) != 0 || GetLastError() == IP_REQ_TIMED_OUT)
...
if(lpfnIcmpSendEcho(hICMP, stDestAddr.s_addr, bufICMP, 1500[b]-28/*MTU - IP and ICMP headers*/[/b], &stIPInfo, achRepData, sizeof(achRepData), TIMEOUT ) != 0)
...
dwReplyCount = lpfnIcmpSendEcho(hICMP, stDestAddr.s_addr, bufICMP, MTUSize[b]-28/*MTU - IP and ICMP headers*/[/b], &stIPInfo, achRepData, sizeof(achRepData), TIMEOUT );
...
dwReplyCount = lpfnIcmpSendEcho(hICMP, stDestAddr.s_addr, bufICMP, MTUTest[b]-28/*MTU - IP and ICMP headers*/[/b], &stIPInfo, achRepData, sizeof(achRepData), TIMEOUT );

Regards
0

#184 User is offline   BlueSonicBoy 

  • Magnificent Member
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 396
  • Joined: 26-September 04

Posted 22 August 2007 - 01:49 AM

View PostRapid_Mule, on Aug 19 2007, 07:27 PM, said:

Shouldn't we subtract the IP and ICMP headers (28) in Pinger::FindMTU lpfnIcmpSendEcho calls?.
I am asking this because on my network the test for mtu=1500/1492 always fails and I get a smaller value (MTU - 28).
I tried the following and it worked fine.
Pinger::FindMTU (lpfnIcmpSendEcho) calls
...
if(lpfnIcmpSendEcho(hICMP, stDestAddr.s_addr, bufICMP,(uint16)(thePrefs.FindMTU + 1)[b]-28/*MTU - IP and ICMP headers*/[/b] , &stIPInfo, achRepData, sizeof(achRepData), TIMEOUT ) == 0)
...
if(lpfnIcmpSendEcho(hICMP, stDestAddr.s_addr, bufICMP, (uint16)thePrefs.FindMTU[b]-28/*MTU - IP and ICMP headers*/[/b], &stIPInfo, achRepData, sizeof(achRepData), TIMEOUT ) != 0 || GetLastError() == IP_REQ_TIMED_OUT)
...
if(lpfnIcmpSendEcho(hICMP, stDestAddr.s_addr, bufICMP, 1500[b]-28/*MTU - IP and ICMP headers*/[/b], &stIPInfo, achRepData, sizeof(achRepData), TIMEOUT ) != 0)
...
dwReplyCount = lpfnIcmpSendEcho(hICMP, stDestAddr.s_addr, bufICMP, MTUSize[b]-28/*MTU - IP and ICMP headers*/[/b], &stIPInfo, achRepData, sizeof(achRepData), TIMEOUT );
...
dwReplyCount = lpfnIcmpSendEcho(hICMP, stDestAddr.s_addr, bufICMP, MTUTest[b]-28/*MTU - IP and ICMP headers*/[/b], &stIPInfo, achRepData, sizeof(achRepData), TIMEOUT );

Regards



You are right! :angelnot:


But the thePrefs.FindMTU value is correct as it is the highest value that works with the DF flag set.
The lpfnIcmpSendEcho funtion sends the IP and ICMP headers + data and the sucessfull data value bacomes thePrefs.FindMTU

My stupid error (as if I didn't already make enough in this code) is not to add +28 to that value to display the MTU value for the user and in MSS calculatution resubtracting the IP value and not adding the ICMP overhead.

example: if(returned < 577) thePrefs.MSS = returned - 40;
shound be if(returned < 577) thePrefs.MSS = returned - 12; //((returned + 8) - 20)

returned = MTU - IP(20) + ICMP(8)

Most users won't have been effected as the code sets a max MSS of 1384

I will final fix this code!!!! :cry:


Thank you!! :+1:

This post has been edited by BlueSonicBoy: 22 August 2007 - 01:53 AM

0

#185 User is offline   BlueSonicBoy 

  • Magnificent Member
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 396
  • Joined: 26-September 04

Post icon  Posted 28 August 2007 - 01:41 AM

TK4 Mod 2.1c

2.1c said:

Version 2.1c - Base eMule 48a 27-08-2007

Fixed: MSS calculation and MTU display. Errors pointed out by Rapid_Mule
Fixed: Session time field overwritting 'Total' title in shared file window when screen at minimum width.

2.1b said:

Version 2.1b - Base eMule 48a 18-07-2007
Fixed: ToolTipCtrlX - Fixed altered code for XP and above now it should work on 2000 and XP and above.

Version 2.1a - Base eMule 48a 15-07-2007

Merged: to 48a
Added: Fixed,(for win 2k), and reworked ToolTipCtrlX
Added: No Nagle option for uploads, theoretical/possible reduction in upload latency
Added: Creation date display for IPFilter.dat in IPFilter dialog
Fixed: Headerview - Crash on view deleted/moved file stupid error
Fixed: Headerview - WMV/WMA extension display false mismatch message
Fixed: Headerview - OGG/OGM extension display false mismatch message
Improved: Headerview - DMG type confirmation
Fixed: Unicode search text field overlaps preset filter check box
Added: Missing Code In Listensocket.cpp,Missing reaction to OP_REQUESTFILENAME Fix by tHeWiZaRdOfDoS
Added: MORPH optimization for large shared filelist, only reset if published. optimize by Leuk_he
Changed: Retained TK4 statistics dialog code
Added: Implemented old style graphs option, the devs already coded it.
Added: Warn & prompt of deletion of possibly rare completed files
Added: Warn on excessive compression gain for non-trivial files (>89% && >1 Partsize)
Fixed: Show "Compressed by" as a percentage of actual data transfered,(uncompressed)
Added: Safe Kad (slows down the spread of bad KAD nodes) - by Netfinity from (WARP_0.3a.6)
Added: Kad optimizes and function inline for improved performance - by Netfinity
Added: Kad Vista path fix by godlaugh2007 merged from Morph code




2.0e said:

Version 2.0e - Base eMule 47c 07-02-2007

Altered: Auto MTU to Auto MTU/MSS - Determines the highest usable and fair ATM efficient value for MSS and uses it in UploadBandwidthThrottler. Thanks to SiRoB, Enig123 and Leuk_he pointing out my ,(stupid) error.

Version 2.0d - Base eMule 47c 03-02-2007

Added: Auto MTU - Determines the highest usable ATM efficient value for MTU and uses it in UploadBandwidthThrottler.
Altered: UploadBandwidthThrottler to use actual upload value to determine double send or not.
Altered: Permanent search filters to be more server/bandwidth friendly.
Fixed: Forceshare bug in stats collection code. Crashed sometimes on shared file deletion.

Version 2.0c - Base eMule 47c 19-01-2007
Added: CClientUDPSocket::SendTo() Optimize
Added: CUDPSocket::SendTo() Optimize
Added: CPartFile::DrawStatusBar() Optimize by tHeWiZaRdOfDoS
Fixed: CPartFile::ReduceAllocatedBlocks() Bug fix by tHeWiZaRdOfDoS
Fixed: TK4 Memleak in CKnownFile::LoadTagsFromFile()
Added: Very small optimizes in UploadBandwidthThrottler and LastCommonRouteFinder

Version 2.0b - Base eMule 47c 02-01-2007

Added: Fix to prevent filename cleanup mangling DVD video filenames
Added: Hash check in AddReqBlock() - Fix By: SiRoB,zz,tHeWiZaRdOfDoS
Added: Memleak fix in MoveItem() - Fix By: eklmn
Added: Country field added to IP Filter Dialog and opimized init() and other code
Added: Country field added to Tool tips in dowloads & uploading lists
Added: Country field and Tool tips added to dowloading,On queue,known clients lists and Server list
Added: Small performance tweak for GetScore()
Added: Fine credit system - Created by CiccioBastardo
Added: Performance tweak for TK4 and Fine credit systems in GetScoreRatio()
Fixed : VOB file type indication in header view

Version 2.0a - Base eMule 47c 02-11-2006

Merged : TK4 Code to 47c codebase
Added : Monthly Automatic IPFilter Update in separate thread (Option)
Added : Faster Re-Ask on MLdonkeys - Idea Spike2, WiZaRd, Eng123 (suggested by spiralvoice - mlDonkey-DevTeam).
Removed: NeoMule ISP_T

1.5f said:

Version 1.5f - Base eMule 47a 14-08-2006

Fixed: Don't remove static servers function bug fixed.
Fixed: Anti-Mod thief bug fix code wasn't intialized! Bug reported by EvolutionCrazy
Fixed: Header View bug fixes for long extentions. Bug reported by Masta2002/elettronvolt
Added: "not A Valid Link" Fix zoom,WiZaRd and CiccioBastardo
Altered: Version 1 ISP_Transversal code updated with optimizes and Updates taken from David Xanatos' NeoMule 5.20a

Version 1.5e - Base eMule 47a 29-07-2006


Added: Header View+ - Views header of downloading or complete file and attempts identification of the file type.
Added: Don't log filtered messages option - Feature suggested by 9onzalo
Fixed: Stats Screen OnInitDialog TK4 Bug + code optimized
Fixed: A bug that could cause a good server to be removed on connect attemp when TK4 IP Filter update was in progress.
Altered: TK4 Credit System - Optimized /4 replaced with >>2 (result altered slightly)
Added: A couple more >> 1 << 1 optimizes (no change in result) :)
Added: Wrap around data block request - Fix by Aw3
Removed: Remove 'explict' mode for Neo encryption user options.

Version 1.5d - Base eMule 47a 08-06-2006


Added: Neo Encryption/ISP Transveral Created by David Xanatos
Added: Antivir Premium v7 support
Fixed: Remove IP Filtered servers bug found by XMan this Fix by SiRoB
Fixed: Fix Unable To Open Completed File After Rename... - Fix by SiRoB
Fixed: Collection Double Extension, Modifing an already existing one - Fix by CiccioBastardo
Fixed: Advance client regocognition eMule+ 1.2 fix - Fix by Enig123
Fixed: Wasted Ratings Fix, Clients can't "decode" it - Fix by WiZaRd
Fixed: Download Sort Glitchfix - Fix by WiZaRd
Fixed: Memory leak LastCommonRouteFinder - Fix by WiZaRd
Fixed: Emule Forget To Publish Files To Server - Fix by XMan

Version 1.5c - Base eMule 47a 30-04-2006

Added: Unknown1's new Kad patch
Added: Virus scanner dialog fix by Spe64
Added: Optimize for ReduceAllocatedBlocks() by Wizard
Added: Fix for Statistics Dialog Minor Bug

Version 1.5b - Base eMule 47a 23-04-2006

Added: Statistics window Functional Enhancements Tagged: [SFE]
Added: [SFE] Scope pane zoom/restore on double left click
Added: [SFE] Context menu for display options: hide/restore scopes, hide/restore stats tree
full height any scope and plot fill options via statistics options.
Added: Fix for Statistic BOOL CStatisticsDlg::OnInitDialog() initial scope positions More...
Added: DL Part completion speed-up code, block size reduction outside DBR range
also improved single block request evaluation.
Improved: DL Part completion speed-up code, 1 block allocation code.
Added: Small Fix Related To Hello-handshake fix - eklmn
Added: Emsocket Multiptach fix - XMan
Added: Check Handshake Finished fix - Wizard
Added: Clientlist & Cpu Optimize - Wizard
Added: Display Fix For Downloadclient Progressbar fix - SiRoB
Added: eMule steals focus fix - raccoonI
Added: Summary not updated after deleting shared file fix - raccoonI
Fixed: Virus scan enable/disable *bug* would change state on cancel :(
Fixed: Bug related to SCE 1. Wouldn't evaluate files<540 Kb blocks in size
Fixed: Bug related to SCE 2. Would continue to cause re-hash of failed files ,caused by above bug,
instead of using fallback value for failed to evaluate
Fixed: Bug related to SCE 3. Did not check TAG value properly when loading initial value. :angelnot:

Version 1.5a - Base eMule 47a 15-03-2006


Removed: Dazzle's Faster Endgame
Added : Netfinity's Dynamic Block Requests
Added : File ratings bug fix - Aenarion[ITA]
Added : Support for AntiVir version 7 personal edition
Altered: Filename Disparity Check *improved*

1.4h said:

Version 1.4h - Base eMule 47a 26-02-2006

Added: Always filter IP Filtered Servers! More...
Added: Remove IP Filtered Servers on connection attempt. (code/idea by Wizard).
Added: Wizard's "cleaner" Server Remove function.
Fixed: When using TK4 credit system Show yellow icon only for clients who have positive credit. - Bug found by PluG

Version 1.4g - Base eMule 47a 22-02-2006


Added: lupzz no sleep patch for uploadthrottler.
Fixed: IP filter update to always extract .gz to IPFilter.dat
Added: Permentent search filters (option)(idea by infinitive)
Added: Require 2 bad names before alert FDC (option)
Added: Remove IP Filtered servers
Added: Don't remove static servers (option)(request by niRRity)
Fixed: missing mod version in version name (lost in merge)
Added: Support of Avast! Pro and Home anti-virus (request by niRRity)
Fixed: path bug for eTrust EZ anti-virus
Fixed: improved/fixed anti-virus selection code
Added: Enhanced Client Recognization code by Famerlor from Spike2 Mod
Added: Glitch In Downloadclientsctrl.cpp Fix by Wizard
Added: Gui Bug In Settings Wizard Fix by FrankyFive
Altered: Eastshare credit system now using code from the latest Eastshare (credit system by TAHO)


full changelog


documentation

binary

source

Binary ed2k://|file|eMule48a_TK4Mod_2.1c_bin.rar|2791914|096E84946073919A4B8B4012F81CDFAF||h=F
V3BFF2EXGHT4BMGQ5MBQCEN4GYDJDA|/



Source ed2k://|file|eMule48a_TK4Mod_2.1c_src.rar|6709111|3741F85D8213D0EAE1441E4A5D9854D7||h=H
FQSSTGMSPDRXOQFPS5ZLQSPNPRMG2T|/


Notes:

Features in this release tagged in the source to make the relevant code easier to find:
Auto MTU/MSS = [FMTU]
Added IP to Country functions = [ADIP2C]
Header View = [HV]
Statistics window Functional Enhancement = [SFE]
Preset Search Filters. Tag = [PSF]
IP Filter Update. Tag = [IPUP]
Basic Slot Focus. Tag = [SF]
Simple Compressibility Evaluation. Tag = [SCE] Completed files will be rehashed on first run, see docs.
Filename Disparity Check. Tag = [FDC]

Main Features:

Auto MTU/MSS Finds MTU determines the highest usable and fair ATM efficient value for MSS.
Header View+ Allows Viewing of the Header of a downloading or completed file and attempts identification.
Statistics Functionality Enhancements Additional display options and functionality.
IP Filter update Updates your IPFilter.dat file from your chosen web source and loads it using its own thread, Auto Monthly update option.
Slot Focus Basic Slot Focus. Concentrates bandwidth on the slot(s) that can best use it.
Download improvements Prevents slower client's locking out faster clients code improved 1.5b + Netfinity's Dynamic Block Requests
Upload improvements Added no sleep for uploadthrottler thread, Code by lupzz
Virus scan Supports 13 scanners + user defined.
Forceshare Instant upload priority settings for completed files, 4/5 slots no DL 1/7 slots with DL
Credit Systems + Credit systems and Wizard's Anti-leech, Anti-ghost mod removed now detection only
TK4 eXtras 'Hidden' , Sensitivity adjust for FDC, Slot Focus enable and IP Filter update URL
Simple Compressibility Evaluation Saves wasting CPU cycles. Bug fixes 1.5b
Filename Disparity Check Indicates when a file has a very different,(often dodgy), name.
IP2Country Shows country flags from IP for clients and servers,(code from Eastshare/Morph/eXtreme). added to tooltips for lists and IP Filter dialog.
Preset Search Filters Save search modifiers which can be added to each search,(enabled/disable from search window check box for each new search,(2.0d)).



TK4 Mod home


:thumbup: A Big thanks to everyone who has provided mirrors!!! :thumbup:
0

#186 User is offline   Da GuRu 

  • Premium Member
  • PipPipPipPipPip
  • Group: Members
  • Posts: 272
  • Joined: 25-December 02

Posted 28 August 2007 - 08:41 AM

:thumbup: :bounce: :flowers: :worthy: thanx, blue ! ;)

eMule 0.48a TK4 2.1c

Posted Image


Download Mirrors:
eMule-0.48a-TK4Mod-2.1c-bin.rar
eMule-0.48a-TK4Mod-2.1c-src.rar


Download more versions of eMule TK4.MoD
Features & Changelogs for eMule TK4.MoD
Rate eMule TK4.MoD @ emule-mods.de !!!
eMule: Server.met - Server-List - IPFilter - Skins - eMule Wiki
0

#187 User is offline   Deer-Hunter 

  • Magnificent Member
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 349
  • Joined: 09-November 04

Posted 28 August 2007 - 09:11 AM

:clap: :thumbup:

thx for the new version :-)

Mirror updated:
TK4 Mod
http://eMulebase.de/...itere_mods/TK4/

Posted Image

best regards

Deer-Hunter
*Lerne von allen, aber besonders von deinen Feinden*
0

#188 User is offline   Januar1956 

  • Splendid Member
  • PipPipPipPip
  • Group: Members
  • Posts: 160
  • Joined: 28-June 03

Posted 28 August 2007 - 01:23 PM

Januar Mirror is updated :flowers:


Januar :+1:
0

#189 User is offline   BlueSonicBoy 

  • Magnificent Member
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 396
  • Joined: 26-September 04

Post icon  Posted 10 November 2007 - 03:24 AM

TK4 Mod 2.1d

2.1d said:

Version 2.1d - Base eMule 48a 9-11-2007

Added: Support for Comodo Antivirus.
Added: KAD search keyword field and keyword deriving code. Some ideas thanks to Leuk_he!
Fixed: Preset filters checkbox position when search tab is vertical.


2.1c said:

Version 2.1c - Base eMule 48a 27-08-2007

Fixed: MSS calculation and MTU display. Errors pointed out by Rapid_Mule
Fixed: Session time field overwritting 'Total' title in shared file window when screen at minimum width.
Version 2.1b - Base eMule 48a 18-07-2007
Fixed: ToolTipCtrlX - Fixed altered code for XP and above now it should work on 2000 and XP and above.

Version 2.1a - Base eMule 48a 15-07-2007

Merged: to 48a
Added: Fixed,(for win 2k), and reworked ToolTipCtrlX
Added: No Nagle option for uploads, theoretical/possible reduction in upload latency
Added: Creation date display for IPFilter.dat in IPFilter dialog
Fixed: Headerview - Crash on view deleted/moved file stupid error
Fixed: Headerview - WMV/WMA extension display false mismatch message
Fixed: Headerview - OGG/OGM extension display false mismatch message
Improved: Headerview - DMG type confirmation
Fixed: Unicode search text field overlaps preset filter check box
Added: Missing Code In Listensocket.cpp,Missing reaction to OP_REQUESTFILENAME Fix by tHeWiZaRdOfDoS
Added: MORPH optimization for large shared filelist, only reset if published. optimize by Leuk_he
Changed: Retained TK4 statistics dialog code
Added: Implemented old style graphs option, the devs already coded it.
Added: Warn & prompt of deletion of possibly rare completed files
Added: Warn on excessive compression gain for non-trivial files (>89% && >1 Partsize)
Fixed: Show "Compressed by" as a percentage of actual data transfered,(uncompressed)
Added: Safe Kad (slows down the spread of bad KAD nodes) - by Netfinity from (WARP_0.3a.6)
Added: Kad optimizes and function inline for improved performance - by Netfinity
Added: Kad Vista path fix by godlaugh2007 merged from Morph code




2.0e said:

Version 2.0e - Base eMule 47c 07-02-2007

Altered: Auto MTU to Auto MTU/MSS - Determines the highest usable and fair ATM efficient value for MSS and uses it in UploadBandwidthThrottler. Thanks to SiRoB, Enig123 and Leuk_he pointing out my ,(stupid) error.

Version 2.0d - Base eMule 47c 03-02-2007

Added: Auto MTU - Determines the highest usable ATM efficient value for MTU and uses it in UploadBandwidthThrottler.
Altered: UploadBandwidthThrottler to use actual upload value to determine double send or not.
Altered: Permanent search filters to be more server/bandwidth friendly.
Fixed: Forceshare bug in stats collection code. Crashed sometimes on shared file deletion.

Version 2.0c - Base eMule 47c 19-01-2007
Added: CClientUDPSocket::SendTo() Optimize
Added: CUDPSocket::SendTo() Optimize
Added: CPartFile::DrawStatusBar() Optimize by tHeWiZaRdOfDoS
Fixed: CPartFile::ReduceAllocatedBlocks() Bug fix by tHeWiZaRdOfDoS
Fixed: TK4 Memleak in CKnownFile::LoadTagsFromFile()
Added: Very small optimizes in UploadBandwidthThrottler and LastCommonRouteFinder

Version 2.0b - Base eMule 47c 02-01-2007

Added: Fix to prevent filename cleanup mangling DVD video filenames
Added: Hash check in AddReqBlock() - Fix By: SiRoB,zz,tHeWiZaRdOfDoS
Added: Memleak fix in MoveItem() - Fix By: eklmn
Added: Country field added to IP Filter Dialog and opimized init() and other code
Added: Country field added to Tool tips in dowloads & uploading lists
Added: Country field and Tool tips added to dowloading,On queue,known clients lists and Server list
Added: Small performance tweak for GetScore()
Added: Fine credit system - Created by CiccioBastardo
Added: Performance tweak for TK4 and Fine credit systems in GetScoreRatio()
Fixed : VOB file type indication in header view

Version 2.0a - Base eMule 47c 02-11-2006

Merged : TK4 Code to 47c codebase
Added : Monthly Automatic IPFilter Update in separate thread (Option)
Added : Faster Re-Ask on MLdonkeys - Idea Spike2, WiZaRd, Eng123 (suggested by spiralvoice - mlDonkey-DevTeam).
Removed: NeoMule ISP_T

1.5f said:

Version 1.5f - Base eMule 47a 14-08-2006

Fixed: Don't remove static servers function bug fixed.
Fixed: Anti-Mod thief bug fix code wasn't intialized! Bug reported by EvolutionCrazy
Fixed: Header View bug fixes for long extentions. Bug reported by Masta2002/elettronvolt
Added: "not A Valid Link" Fix zoom,WiZaRd and CiccioBastardo
Altered: Version 1 ISP_Transversal code updated with optimizes and Updates taken from David Xanatos' NeoMule 5.20a

Version 1.5e - Base eMule 47a 29-07-2006


Added: Header View+ - Views header of downloading or complete file and attempts identification of the file type.
Added: Don't log filtered messages option - Feature suggested by 9onzalo
Fixed: Stats Screen OnInitDialog TK4 Bug + code optimized
Fixed: A bug that could cause a good server to be removed on connect attemp when TK4 IP Filter update was in progress.
Altered: TK4 Credit System - Optimized /4 replaced with >>2 (result altered slightly)
Added: A couple more >> 1 << 1 optimizes (no change in result) :)
Added: Wrap around data block request - Fix by Aw3
Removed: Remove 'explict' mode for Neo encryption user options.

Version 1.5d - Base eMule 47a 08-06-2006


Added: Neo Encryption/ISP Transveral Created by David Xanatos
Added: Antivir Premium v7 support
Fixed: Remove IP Filtered servers bug found by XMan this Fix by SiRoB
Fixed: Fix Unable To Open Completed File After Rename... - Fix by SiRoB
Fixed: Collection Double Extension, Modifing an already existing one - Fix by CiccioBastardo
Fixed: Advance client regocognition eMule+ 1.2 fix - Fix by Enig123
Fixed: Wasted Ratings Fix, Clients can't "decode" it - Fix by WiZaRd
Fixed: Download Sort Glitchfix - Fix by WiZaRd
Fixed: Memory leak LastCommonRouteFinder - Fix by WiZaRd
Fixed: Emule Forget To Publish Files To Server - Fix by XMan

Version 1.5c - Base eMule 47a 30-04-2006

Added: Unknown1's new Kad patch
Added: Virus scanner dialog fix by Spe64
Added: Optimize for ReduceAllocatedBlocks() by Wizard
Added: Fix for Statistics Dialog Minor Bug

Version 1.5b - Base eMule 47a 23-04-2006

Added: Statistics window Functional Enhancements Tagged: [SFE]
Added: [SFE] Scope pane zoom/restore on double left click
Added: [SFE] Context menu for display options: hide/restore scopes, hide/restore stats tree
full height any scope and plot fill options via statistics options.
Added: Fix for Statistic BOOL CStatisticsDlg::OnInitDialog() initial scope positions More...
Added: DL Part completion speed-up code, block size reduction outside DBR range
also improved single block request evaluation.
Improved: DL Part completion speed-up code, 1 block allocation code.
Added: Small Fix Related To Hello-handshake fix - eklmn
Added: Emsocket Multiptach fix - XMan
Added: Check Handshake Finished fix - Wizard
Added: Clientlist & Cpu Optimize - Wizard
Added: Display Fix For Downloadclient Progressbar fix - SiRoB
Added: eMule steals focus fix - raccoonI
Added: Summary not updated after deleting shared file fix - raccoonI
Fixed: Virus scan enable/disable *bug* would change state on cancel :(
Fixed: Bug related to SCE 1. Wouldn't evaluate files<540 Kb blocks in size
Fixed: Bug related to SCE 2. Would continue to cause re-hash of failed files ,caused by above bug,
instead of using fallback value for failed to evaluate
Fixed: Bug related to SCE 3. Did not check TAG value properly when loading initial value. :angelnot:

Version 1.5a - Base eMule 47a 15-03-2006


Removed: Dazzle's Faster Endgame
Added : Netfinity's Dynamic Block Requests
Added : File ratings bug fix - Aenarion[ITA]
Added : Support for AntiVir version 7 personal edition
Altered: Filename Disparity Check *improved*

1.4h said:

Version 1.4h - Base eMule 47a 26-02-2006

Added: Always filter IP Filtered Servers! More...
Added: Remove IP Filtered Servers on connection attempt. (code/idea by Wizard).
Added: Wizard's "cleaner" Server Remove function.
Fixed: When using TK4 credit system Show yellow icon only for clients who have positive credit. - Bug found by PluG

Version 1.4g - Base eMule 47a 22-02-2006


Added: lupzz no sleep patch for uploadthrottler.
Fixed: IP filter update to always extract .gz to IPFilter.dat
Added: Permentent search filters (option)(idea by infinitive)
Added: Require 2 bad names before alert FDC (option)
Added: Remove IP Filtered servers
Added: Don't remove static servers (option)(request by niRRity)
Fixed: missing mod version in version name (lost in merge)
Added: Support of Avast! Pro and Home anti-virus (request by niRRity)
Fixed: path bug for eTrust EZ anti-virus
Fixed: improved/fixed anti-virus selection code
Added: Enhanced Client Recognization code by Famerlor from Spike2 Mod
Added: Glitch In Downloadclientsctrl.cpp Fix by Wizard
Added: Gui Bug In Settings Wizard Fix by FrankyFive
Altered: Eastshare credit system now using code from the latest Eastshare (credit system by TAHO)


full changelog


documentation

binary

source

Binary ed2k://|file|eMule48a_TK4Mod_2.1d_bin.rar|2792082|9CB18EA4555C625547F761E3E1580048|/


Source ed2k://|file|eMule48a_TK4Mod_2.1d_src.rar|6716395|7126BF0CFC455B24522D531E0BEC0910|/

Notes:

Features in this release tagged in the source to make the relevant code easier to find:
KAD Search Keyword Input Enhancement = [KS]
Auto MTU/MSS = [FMTU]
Added IP to Country functions = [ADIP2C]
Header View = [HV]
Statistics window Functional Enhancement = [SFE]
Preset Search Filters. Tag = [PSF]
IP Filter Update. Tag = [IPUP]
Basic Slot Focus. Tag = [SF]
Simple Compressibility Evaluation. Tag = [SCE] Completed files will be rehashed on first run, see docs.
Filename Disparity Check. Tag = [FDC]

Main Features:

KAD Keyword input enhancements A separate field for the KAD keyword and code to derive when missing/too short
Auto MTU/MSS Finds MTU determines the highest usable and fair ATM efficient value for MSS.
Header View+ Allows Viewing of the Header of a downloading or completed file and attempts identification.
Statistics Functionality Enhancements Additional display options and functionality.
IP Filter update Updates your IPFilter.dat file from your chosen web source and loads it using its own thread, Auto Monthly update option.
Slot Focus Basic Slot Focus. Concentrates bandwidth on the slot(s) that can best use it.
Download improvements Prevents slower client's locking out faster clients code improved 1.5b + Netfinity's Dynamic Block Requests
Upload improvements Added no sleep for uploadthrottler thread, Code by lupzz
Virus scan Supports 13 scanners + user defined.
Forceshare Instant upload priority settings for completed files, 4/5 slots no DL 1/7 slots with DL
Credit Systems + Credit systems and Wizard's Anti-leech, Anti-ghost mod removed now detection only
TK4 eXtras 'Hidden' , Sensitivity adjust for FDC, Slot Focus enable and IP Filter update URL
Simple Compressibility Evaluation Saves wasting CPU cycles. Bug fixes 1.5b
Filename Disparity Check Indicates when a file has a very different,(often dodgy), name.
IP2Country Shows country flags from IP for clients and servers,(code from Eastshare/Morph/eXtreme). added to tooltips for lists and IP Filter dialog.
Preset Search Filters Save search modifiers which can be added to each search,(enabled/disable from search window check box for each new search,(2.0d)).



TK4 Mod home


:thumbup: A Big thanks to everyone who has provided mirrors!!! :thumbup:

This post has been edited by BlueSonicBoy: 10 November 2007 - 11:46 PM

0

#190 User is offline   LorenzoC 

  • Golden eMule
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2478
  • Joined: 05-September 04

Posted 10 November 2007 - 10:24 AM

The ed2k links are broken, these should work:

ed2k://|file|eMule48a_TK4Mod_2.1d_bin.rar|2792082|9CB18EA4555C625547F761E3E1580048|h=AT63YHZTTCPTADGPBYGRFZIOB7WGP33|/
ed2k://|file|eMule48a_TK4Mod_2.1d_src.rar|6716395|7126BF0CFC455B24522D531E0BEC0910|h=OC6UCIHG7H3Q3TGDN754T7RUE3S5JW7|/


The trick is to add
[b][/b]
somewhere in the middle of the string.

This post has been edited by LorenzoC: 10 November 2007 - 10:31 AM

0

#191 User is offline   Deer-Hunter 

  • Magnificent Member
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 349
  • Joined: 09-November 04

Posted 10 November 2007 - 07:51 PM

many thx for the new version :-)

Mirror updated:
TK4 Mod
http://eMulebase.de/...itere_mods/TK4/

Posted Image

regards

Deer-Hunter
*Lerne von allen, aber besonders von deinen Feinden*
0

#192 User is offline   Stulle 

  • [Enter Mod] Dev
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 5804
  • Joined: 07-April 04

Posted 10 November 2007 - 09:18 PM

View PostLorenzoC, on Nov 10 2007, 10:24 AM, said:

The ed2k links are broken, these should work:

ed2k://|file|eMule48a_TK4Mod_2.1d_bin.rar|2792082|9CB18EA4555C625547F761E3E1580048|h=AT63YHZTTCPTADGPBYGRFZIOB7WGP33|/
ed2k://|file|eMule48a_TK4Mod_2.1d_src.rar|6716395|7126BF0CFC455B24522D531E0BEC0910|h=OC6UCIHG7H3Q3TGDN754T7RUE3S5JW7|/


The trick is to add
[b][/b]
somewhere in the middle of the string.

well, why not simply removing the aich hash... that's how i did it back then when i published ed2k links on this board... :-/
I am an emule-web.de member and fan!

[Imagine there was a sarcasm meter right here!]

No, there will not be a new version of my mods. No, I do not want your PM. No, I am certain, use the board and quit sending PMs. No, I am not kidding, there will not be a new version of my mods just because of YOU asking for it!
0

#193 User is offline   LorenzoC 

  • Golden eMule
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2478
  • Joined: 05-September 04

Posted 10 November 2007 - 09:53 PM

Oh I don't know, just fixed the links above. :)
0

#194 User is offline   BlueSonicBoy 

  • Magnificent Member
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 396
  • Joined: 26-September 04

Posted 10 November 2007 - 11:49 PM

View PostLorenzoC, on Nov 10 2007, 04:53 PM, said:

Oh I don't know, just fixed the links above. :)


Fixed! Removing the aich hash fixes them as Stulle said! :flowers:
0

#195 User is offline   Stulle 

  • [Enter Mod] Dev
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 5804
  • Joined: 07-April 04

Posted 11 November 2007 - 12:02 AM

View PostBlueSonicBoy, on Nov 10 2007, 11:49 PM, said:

View PostLorenzoC, on Nov 10 2007, 04:53 PM, said:

Oh I don't know, just fixed the links above. :)


Fixed! Removing the aich hash fixes them as Stulle said! :flowers:

lol, well, thanks for the credits here! ;)
I am an emule-web.de member and fan!

[Imagine there was a sarcasm meter right here!]

No, there will not be a new version of my mods. No, I do not want your PM. No, I am certain, use the board and quit sending PMs. No, I am not kidding, there will not be a new version of my mods just because of YOU asking for it!
0

#196 User is offline   Tuxman 

  • lizzie and prog-rock fanatic
  • PipPipPipPipPipPipPip
  • Group: Validating
  • Posts: 2707
  • Joined: 26-July 04

Posted 11 November 2007 - 08:24 PM

Why do you always include that nasty .ncb file to your src archives? :(
No matter... thank you for keeping this mod under development!

:flowers:
[ eMule beba ] :: v2.72 released, v3.00 in the works ...
- feel the lightweight! - featuring Snarl support, the Client Analyzer and tits!
Coded by a Golden eMule Award winner and most people's favorite modder!
..........................................
Music, not muzak:
Progressive Rock :: my last.fm profile
..........................................
eMule user since 0.28 ...
-[ ... and thanks for all the fish! ]-
0

#197 User is offline   BlueSonicBoy 

  • Magnificent Member
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 396
  • Joined: 26-September 04

Posted 12 November 2007 - 12:39 AM

View PostTuxman, on Nov 11 2007, 03:24 PM, said:

Why do you always include that nasty .ncb file to your src archives? :(



Honestly, I copy the new srchybrid folder contents, delete the emule.aps file copy the new .html docs Rar the lot up and I am done, That file is an oversight that has been left there, until now.

Gone for next time! :flowers:

View PostTuxman, on Nov 11 2007, 03:24 PM, said:

No matter... thank you for keeping this mod under development!

:flowers:


Thank you for the feedback!!! :flowers:
0

#198 User is offline   Gomez82 

  • Splendid Member
  • PipPipPipPip
  • Group: Members
  • Posts: 124
  • Joined: 28-April 05

Posted 15 April 2008 - 01:24 PM

Hello don't know if you allready fixed it but in PPgStats.cpp is one missing line
after
((CButton*)GetDlgItem(IDC_CHECK1))->SetCheck(b_solidPlot);//TK4 Mod solid plot [SFE]
this line is missing
((CButton*)GetDlgItem(IDC_CHECK2))->SetCheck(!b_LocalGraphStyle);

0

#199 User is offline   BlueSonicBoy 

  • Magnificent Member
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 396
  • Joined: 26-September 04

Posted 23 April 2008 - 01:41 AM

View PostGomez82, on Apr 15 2008, 09:24 AM, said:

Hello don't know if you allready fixed it but in PPgStats.cpp is one missing line
after
((CButton*)GetDlgItem(IDC_CHECK1))->SetCheck(b_solidPlot);//TK4 Mod solid plot [SFE]
this line is missing
((CButton*)GetDlgItem(IDC_CHECK2))->SetCheck(!b_LocalGraphStyle);


Thank you!
No, I had not fixed it, I'd only managed to write 1 line of code in months.... :cry2:

Thank you for that fix!
I've added it. :thumbup:
0

#200 User is offline   Auspicio 

  • Member
  • PipPip
  • Group: Members
  • Posts: 28
  • Joined: 31-December 07

Posted 30 April 2008 - 02:09 PM

[MESSANGE TRANSLATE -> with google translate]
Hi, I am a strong supporter of this mod, which I think is fantastic, support to implement security, do not believe that any other MOD.

I see that every day is widening support to new antivirus, but I have not seen support antivirus open source (GPL), as WinClam, or Moon Secure AV.
For when you think to support these programs?. I think it would be a great contribution.

My full support for this MOD, and my thanks to the author, by creating an emule MOD (Safer).

Since spain, Greetings from Auspicio
Saludos desde Espaņa, ... Auspicio.
0

  • Member Options

  • (11 Pages)
  • +
  • « First
  • 8
  • 9
  • 10
  • 11

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users