All Versions
203
Latest Version
Avg Release Cycle
10 days
Latest Release
926 days ago
Changelog History
Page 20
Changelog History
Page 20
-
v0.94.1 Changes
May 26, 2016- ๐ Make WebTorrent user agent string consistent across whole codebase
-
v0.94.0 Changes
May 19, 2016- ๐ Support exact source (xs) paramter of magnet URIs, for retreiving metadata
-
v0.93.4 Changes
May 17, 2016- ๐ Fix rare exception caused by race condition in
lib/peer.js
- ๐ Fix rare exception caused by race condition in
-
v0.93.3 Changes
May 13, 2016- Don't unset
{tracker: {wrtc: false}}
option toWebTorrent
constructor.
- Don't unset
-
v0.93.2 Changes
May 12, 2016- When a duplicate torrent is added, don't emit the 'infoHash' event after 'error'. The 'error' event should be the last event.
-
v0.93.1 Changes
May 08, 2016- โ Remove
path-exists
dependency.
- โ Remove
-
v0.93.0 Changes
May 08, 2016- ๐ Move tracker options (
rtcConfig
andwrtc
) intoopts.tracker
.
Before:
var client = new WebTorrent({ rtcConfig: {}, wrtc: {} })
After:
var client = new WebTorrent({ tracker: { rtcConfig: {}, wrtc: {} } })
- ๐ Move tracker options (
-
v0.92.0 Changes
May 05, 2016- โ Add new event:
torrent.on('noPeers', function (announceType) {})
Emitted whenever a DHT or tracker announce occurs, but no peers have been found.
announceType
is either'tracker'
or'dht'
depending on which announce occurred to trigger this event. Note that if you're attempting to discover peers from both a tracker and a DHT, you'll see this event separately for each. - โ Add new event:
-
v0.91.4 Changes
May 05, 2016- ๐ Fix exception: "peer._destroy is not a function" when calling
torrent.pause()
- ๐ Fix exception: "peer._destroy is not a function" when calling
-
v0.91.3 Changes
May 04, 2016- ๐ Fix
torrent.swarm
from causing an infinite recursion.
- ๐ Fix