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
AgeCommit message (Collapse)Author
2016-01-02New API: WebTorrent.WEBRTC_SUPPORTFeross Aboukhadijeh
Detect native WebRTC support in the environment. ```js if (WebTorrent.WEBRTC_SUPPORT) { // webrtc support! } else { // fallback } ```
2015-12-29BREAKING: rename opts.maxPeers -> opts.maxConnsFeross Aboukhadijeh
- The underlying option on the `bittorrent-swarm` instance is named `maxConns` which is a more accurate name - Let `bittorrent-swarm` handle non-number maxConns values
2015-12-29Set maxPeers on client and pass down to every torrentAram Drevekenin
2015-12-17tests: lots of cleanupFeross Aboukhadijeh
2015-12-17don't add default trackers when { tracker: false }Feross Aboukhadijeh
When the user sets `{ tracker: false }` on the WebTorrent client, don’t add trackers to the torrent by default.
2015-12-17Change default "created by" to match uTorrent styleFeross Aboukhadijeh
Instead of “WebTorrent/0.63.0”, it’s now “WebTorrent/0063”.
2015-12-04remove debug statementFeross Aboukhadijeh
2015-12-04code styleFeross Aboukhadijeh
2015-12-03Standardize hash variable names (fix #374)Feross Aboukhadijeh
2015-10-02Merge pull request #418 from gillesdemey/dev-clone-optionsValérian Galliat
Clone options when seeding / downloading
2015-09-17standardFeross Aboukhadijeh
2015-09-03Clone options when seeding/downloadingGilles De Mey
2015-08-22BREAKING: rename `torrent.storage` to `torrent.store`Feross Aboukhadijeh
2015-08-22Include web torrent version in http user agentFeross Aboukhadijeh
2015-08-22BREAKING: Use abstract-chunk-store for storageFeross Aboukhadijeh
Part of an effort to share more code with `torrent-stream` by @mafintosh: https://github.com/mafintosh/torrent-stream/pull/133 https://github.com/mafintosh/torrent-stream/pull/132 Storage is now based on: https://www.npmjs.com/package/fs-chunk-store (in node) https://www.npmjs.com/package/memory-chunk-store (in the browser) and: https://www.npmjs.com/package/immediate-chunk-store https://www.npmjs.com/package/torrent-piece This is a BREAKING change, since users who pass in custom storage engine with `opts.storage` will need to update their storage backend to be `abstract-chunk-store` compliant: https://www.npmjs.com/package/abstract-chunk-store There are also likely other miscellaneous BREAKING API changes, since this was a huge refactor of the codebase.
2015-08-14adhere to padded-blocksLinus Unnebäck
2015-06-28respect opts.path option, even when seeding from filesystemFeross Aboukhadijeh
2015-06-14use input file/dir path as download pathJosip Janžić
closes #357
2015-06-11Handle adding duplicate torrents gracefullyFeross Aboukhadijeh
Return the existing torrent instead of failing with an error. Fixes #348
2015-06-11webtorrent.get should not throwFeross Aboukhadijeh
2015-06-11factor out common variable into constFeross Aboukhadijeh
2015-06-11move TODOs to issue #353Feross Aboukhadijeh
2015-06-11add "created by" field to torrentsFeross Aboukhadijeh
2015-05-30return torrent object from webtorrent.seedFeross Aboukhadijeh
2015-05-29moved remote torrent handling into parse-torrent@5.1Feross Aboukhadijeh
2015-05-18remove torrent from client on fatal torrent errorFeross Aboukhadijeh
also, fixed a bug with choking where we were inspecting wire._destroyed instead of wire.destroyed.
2015-05-04support `webtorrent-hybrid` packageFeross Aboukhadijeh
2015-05-04Remove `wrtc` dependency #303Feross Aboukhadijeh
2015-04-11Add client.address() methodFeross Aboukhadijeh
2015-03-20internal: simplify how storage opts are passedFeross Aboukhadijeh
2015-03-20Remove `browserify-versionify`Feross Aboukhadijeh
Fixes #286
2015-03-19better debug logsFeross Aboukhadijeh
2015-03-07style: always use bracesFeross Aboukhadijeh
2015-03-01doc: `client.get` can return `null`Feross Aboukhadijeh
2015-03-01parse-torrent@4Feross Aboukhadijeh
2015-02-01use xtendFeross Aboukhadijeh
2015-01-26handle error from load-ip-setFeross Aboukhadijeh
2015-01-26after client.destroy(), no "ready" event emittedFeross Aboukhadijeh
2015-01-26after client.destroy(), no "torrent" event should be emittedFeross Aboukhadijeh
Fixes #254
2015-01-26throw if add or seed after destroyFeross Aboukhadijeh
For #254
2015-01-15update docs to show array of strings now supportedFeross Aboukhadijeh
For #224.
2015-01-05client.seed: skip piece verification for performanceFeross Aboukhadijeh
For https://github.com/feross/webtorrent/issues/235
2015-01-04add `rtcConfig` optionFeross Aboukhadijeh
2014-12-31comment fixFeross Aboukhadijeh
2014-12-31Use 'WebTorrent' user-agent for http requestsFeross Aboukhadijeh
Fixes #229
2014-12-31remove unused code/modulesFeross Aboukhadijeh
2014-12-30add `torrent.magnetURI` getter functionFeross Aboukhadijeh
Depends on https://github.com/feross/parse-torrent/pull/8
2014-12-22Merge pull request #216 from feross/hex-everythingFeross Aboukhadijeh
treat peer_id as hex everywhere
2014-12-22Merge pull request #213 from feross/client-seed-folderFeross Aboukhadijeh
support seeding entire folders (string path to folder)
2014-12-18set client version in node tooFeross Aboukhadijeh