You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for Node versions below 16.0.0 has been discontinued.
Features (lib)
Added gecos: Allows the exposure of a custom message to other clients in the "real name" field (WHOIS).
Added version: Enables the exposure of the xdccJS version (or a custom message) in the "version" field (WHOIS).
newXDCC({// ... host, port, etc...gecos: 'While many clients refer to this field as "real name," it is actually known as the GECOS field.',version: 'mIRC v6.35'});
Added ETA to the 'downloading' event.
xdccJS.on('downloading',(fileInfo,received,percentage,eta)=>{console.log(`${eta} ms remaining`);});
Fixes (lib+cli)
The throttle parameter was overlooked in certain edge cases.
Fixes (lib)
The download() method's throttle option was incorrectly processed as Bytes instead of KiB.