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
2014-11-29allow Torrent to be initialized from another Torrent instanceFeross Aboukhadijeh
2014-11-03suppress event emitter warning in productionFeross Aboukhadijeh
2014-11-03styleFeross Aboukhadijeh
2014-11-03Added command to override default tmp pathopfl
2014-10-25add missing requiresFeross Aboukhadijeh
2014-10-22add torrent.createServer() methodFeross Aboukhadijeh
2014-10-22`client.seed` streams into storageFeross Aboukhadijeh
2014-10-22fix blob-to-buffer usageFeross Aboukhadijeh
2014-10-20Fix webtorrent.seed to work with FileListFeross Aboukhadijeh
2014-10-18Support `FileList` as input for the `seed` methodValérian Galliat
The W3C `FileList` object has no `map` method, thus it needs to be converted to an array before using.
2014-10-14Use --index to pick video file to stream (fix #150)Feross Aboukhadijeh
2014-10-10fix --list option (#95)Feross Aboukhadijeh
2014-09-29test additional torrent types for client.addFeross Aboukhadijeh
2014-09-21merge `bittorrent-client` into this moduleFeross Aboukhadijeh
When I started the WebTorrent project I thought there were going to need to be two separate client implementations (bittorrent-client and webtorrent-client) that would get tied together in a higher-level module. Fortunately, this was not necessary because of the awesome “browser” field support in browserify. By substituting just a few modules, we can make the same module (webtorrent) work in node AND the browser, with the same codebase! So, from now on, you can just `require(‘webtorrent’)` in node or the browser, and it will just work. You can also `npm install webtorrent` if you want to use bittorrent in a node app or script. Lastly, you can `npm install webtorrent -g` if you want to use webtorrent as a command line app (it installs a `webtorrent` command).
2014-09-21add "WebTorrent in production" sectionFeross Aboukhadijeh
2014-09-17simplify client.add codeFeross Aboukhadijeh
2014-09-15move http/https url and filesystem support into bittorrent-clientFeross Aboukhadijeh
2014-09-13`webtorrent` module works with browserify (fix #88)Feross Aboukhadijeh
2014-09-13actually support https torrent urlsFeross Aboukhadijeh
2014-09-13use built-in blocklist handling of bittorrent-clientFeross Aboukhadijeh
2014-09-13alias webtorrent.download to webtorrent.addFeross Aboukhadijeh
for parity with bittorrent-client
2014-09-12styleFeross Aboukhadijeh
2014-09-07Add gzip support for blocklistgtuk
2014-08-18update for bittorrent-client changesFeross Aboukhadijeh
2014-08-17support --blocklist optionFeross Aboukhadijeh
cc @fisch0920
2014-08-17fix for bittorrent-client changesFeross Aboukhadijeh
2014-08-17set socket timeout to big numberFeross Aboukhadijeh
2014-08-17refactor request handlerFeross Aboukhadijeh
2014-08-16simplify webtorrent.addFeross Aboukhadijeh
2014-07-29refactor command line programFeross Aboukhadijeh
- made launching players more consistent - fixed flush screen bug - style fixes
2014-07-29Remove blacklist logicFeross Aboukhadijeh
For: https://github.com/feross/bittorrent-client/issues/36
2014-07-29bittorrent-client@0.4.0Feross Aboukhadijeh
2014-07-20make airplay2 an optional dependencyFeross Aboukhadijeh
2014-07-20add airplay supportFeross Aboukhadijeh
h/t https://github.com/mafintosh/peerflix/pull/93
2014-06-06document that parsed torrents are valid torrentIdFeross Aboukhadijeh
2014-06-05always start http serverFeross Aboukhadijeh
2014-06-05add destroy()Feross Aboukhadijeh
2014-06-05make http server optional; emit 'listening'Feross Aboukhadijeh
2014-06-03fs_storage.js -> fs-storage.jsFeross Aboukhadijeh
2014-05-18Fix ReferenceError: concat is not definedFeross Aboukhadijeh
Fixes #58
2014-05-18emit 'error' events for torrent parse errorsFeross Aboukhadijeh
2014-05-18code cleanupFeross Aboukhadijeh
2014-05-16support peer blocklistfisch0920
2014-05-16adding FSStorage; webtorrent now can save the results of a torrent download ↵fisch0920
to the filesystem
2014-05-16stream to VLC is now workingfisch0920
2014-05-15removed extraneous commentfisch0920
2014-05-15added time remaining estimate to console output; several small fixesfisch0920
2014-05-12merging latest changes with addition of working commandline PRfisch0920
2014-05-12fix for invalid torrents passed via commandlinefisch0920
2014-05-12updating webtorrent with working commandline interface based off of ↵fisch0920
peerflix; removed old and unused code