All Versions
203
Latest Version
Avg Release Cycle
10 days
Latest Release
924 days ago

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
  • v0.93.3 Changes

    May 13, 2016
    • Don't unset {tracker: {wrtc: false}} option to WebTorrent constructor.
  • 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.
  • v0.93.0 Changes

    May 08, 2016
    • ๐Ÿšš Move tracker options (rtcConfig and wrtc) into opts.tracker.

    Before:

      var client = new WebTorrent({ rtcConfig: {}, wrtc: {} })
    

    After:

      var client = new WebTorrent({ tracker: { rtcConfig: {}, wrtc: {} } })
    
  • 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.

  • v0.91.4 Changes

    May 05, 2016
    • ๐Ÿ›  Fix exception: "peer._destroy is not a function" when calling torrent.pause()
  • v0.91.3 Changes

    May 04, 2016
    • ๐Ÿ›  Fix torrent.swarm from causing an infinite recursion.