Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2016-05-05 23:08:32 +0300
committerFeross Aboukhadijeh <feross@feross.org>2016-05-05 23:08:32 +0300
commitdae65079fd6e732cf4b52e8b4748696f128f484f (patch)
tree0fb66f8ca0182b326beae545b5f3173d8a84d4f9 /CHANGELOG.md
parentcf2e1ad94f920e12cf700674bfe89970ebe5e9a5 (diff)
CHANGELOG
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 77d923b..c12767c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,28 @@
# WebTorrent Version History
+## v0.92.0 - 2016-05-05
+
+- 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 - 2016-05-05
+
+- Fix exception: "peer._destroy is not a function" when calling `torrent.pause()`
+
+## v0.91.3 - 2016-05-04
+
+- Fix `torrent.swarm` from causing an infinite recursion.
+
+## v0.91.2 - 2016-04-28
+
+- Test node v6
+
+## v0.91.1 - 2016-04-24
+
+- Emit 'done' event *after* sending the `'complete'` message to the tracker.
+
## v0.91.0 - 2016-04-21
### Added