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:
-rw-r--r--CHANGELOG.md21
1 files changed, 20 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c12767c..8b85b50 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,12 +1,31 @@
# WebTorrent Version History
+## v0.93.1 - 2016-05-08
+
+- Remove `path-exists` dependency.
+
+## v0.93.0 - 2016-05-08
+
+- Move tracker options (`rtcConfig` and `wrtc`) into `opts.tracker`.
+
+ Before:
+
+ ```js
+ var client = new WebTorrent({ rtcConfig: {}, wrtc: {} })
+ ```
+
+ After:
+
+ ```js
+ var client = new WebTorrent({ tracker: { rtcConfig: {}, wrtc: {} } })
+ ```
+
## 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()`