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
2015-08-240.60.0v0.60.0Feross Aboukhadijeh
2015-08-24improve tests to pass when verifying torrent dataFeross Aboukhadijeh
2015-08-24verify existing torrent dataFeross Aboukhadijeh
2015-08-24cmd: remove verbose block dataFeross Aboukhadijeh
This is a lot harder to visualize with the new torrent-piece backend, since we don’t keep an explicit array of which blocks are reserved. Just remove it for now. If we need this visualization back to debug something, it should be possible to recreate it from torrent-piece with a bit of work.
2015-08-24cmd: use new `torrent.downloaded` propertyFeross Aboukhadijeh
2015-08-24torrent.load should cancel reservationsFeross Aboukhadijeh
2015-08-24add torrent.received; change torrent.downloadedFeross Aboukhadijeh
The previous behavior of `torrent.downloaded` is now `torrent.received`. This is bytes received from peers (including invalid data). The new `torrent.downloaded` is what most people expected it to be all along. Bytes completed (excluding invalid data).
2015-08-24styleFeross Aboukhadijeh
2015-08-24eliminate extra nextTick for 'metadata' eventFeross Aboukhadijeh
2015-08-23buildFeross Aboukhadijeh
2015-08-230.59.0v0.59.0Feross Aboukhadijeh
2015-08-23fix regression: progress should be capped at 100%Feross Aboukhadijeh
2015-08-23add explanatory commentFeross Aboukhadijeh
2015-08-23use "mediasource" package (published from lib/media-stream.js)Feross Aboukhadijeh
2015-08-23buildFeross Aboukhadijeh
2015-08-230.58.0v0.58.0Feross Aboukhadijeh
2015-08-23check for torrent.done, file.done on torrent.load()Feross Aboukhadijeh
2015-08-23append-to: Support .jpeg (alternative to .jpg)Feross Aboukhadijeh
2015-08-23inquirer@0.9Feross Aboukhadijeh
2015-08-23use `chunk-store-stream` (published from 'lib/load-chunk-store')Feross Aboukhadijeh
2015-08-23remove unused deps: mkdirp, once, random-access-file, rimrafFeross Aboukhadijeh
2015-08-23remove dezalgo depFeross Aboukhadijeh
2015-08-22file: make file.createReadStream work on zero-length fileFeross Aboukhadijeh
2015-08-22file: emit 'done' on zero-length fileFeross Aboukhadijeh
2015-08-22remove unecessary nextTicksFeross Aboukhadijeh
2015-08-22update docs: remove opts.verifyFeross Aboukhadijeh
2015-08-22BREAKING: rename `torrent.storage` to `torrent.store`Feross Aboukhadijeh
2015-08-22torrent: start torrent.done as `false`Feross Aboukhadijeh
2015-08-22trigger notify after torrent.load is calledFeross Aboukhadijeh
2015-08-22torrent: remove dead codeFeross Aboukhadijeh
Not really sure what this code was doing — maybe trying to allow a Torrent object to be passed in to another client? Since torrent.parsedTorrent is gone and the data just lives directly on the torrent object, removing this code should work just fine.
2015-08-22pass total torrent length to storage storeFeross Aboukhadijeh
2015-08-22remove stray console logsFeross Aboukhadijeh
2015-08-22cmd: torrent.parsedTorrent is goneFeross Aboukhadijeh
2015-08-22torrent: make torrent.load(streams, [cb]) callback optionalFeross Aboukhadijeh
2015-08-22test: don't assume event orderingFeross Aboukhadijeh
2015-08-22test: torrent.parsedTorrent is goneFeross Aboukhadijeh
2015-08-22test: improve server testFeross 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-20multistream@2Feross Aboukhadijeh
2015-08-20standard@5Feross Aboukhadijeh
2015-08-20Revert "Also test for standard when running test-node"Feross Aboukhadijeh
This reverts commit af0929b96e6211a028294a8926e1dfdc5c43c101.
2015-08-16Also test for standard when running test-nodeGilles De Mey
2015-08-15Merge pull request #400 from LinusU/standard-styleFeross Aboukhadijeh
adhere to padded-blocks
2015-08-14adhere to padded-blocksLinus Unnebäck
2015-08-12buildFeross Aboukhadijeh
2015-08-120.57.0v0.57.0Feross Aboukhadijeh
2015-08-12update readmeFeross Aboukhadijeh
2015-08-12Merge pull request #399 from gillesdemey/dev-cli-cwdFeross Aboukhadijeh
Default download destination should be current directory
2015-08-12Use temp folder when streaming to stdout.Gilles De Mey