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
path: root/lib
AgeCommit message (Collapse)Author
2016-01-11support calling torrent.load() before 'ready' eventFeross Aboukhadijeh
2016-01-11remove old TODOsFeross Aboukhadijeh
2016-01-11Check blocklist for WebRTC peersFeross Aboukhadijeh
Fix #566
2016-01-11BREAKING: torrent.torrentFileURL renamed to torrent.torrentFileBlobURLFeross Aboukhadijeh
torrent.torrentFileURL -> torrent.torrentFileBlobURL
2016-01-11BREAKING: `downloadSpeed` and `uploadSpeed` are gettersFeross Aboukhadijeh
torrent.downloadSpeed() -> torrent.downloadSpeed torrent.uploadSpeed() -> torrent.uploadSpeed
2016-01-11cmd: better UI at smaller terminal widthsFeross Aboukhadijeh
2016-01-11emit 'infoHash` event soonerFeross Aboukhadijeh
This is still being nextTicked because `parseTorrent.remote` (called first) is always called on the next tick
2016-01-08don't call discovery.setTorrent twiceFeross Aboukhadijeh
See https://github.com/sidd/webtorrent/commit/b5600d6c06b51e5af940275dc60a5e 17e26ea61b#commitcomment-15331318
2016-01-06Merge pull request #555 from feross/fix-downloaded-propertyFeross Aboukhadijeh
Fix downloaded property access
2016-01-06log ut_metadata warningsFeross Aboukhadijeh
2016-01-06Fix crash on ipv6 addressesFeross Aboukhadijeh
2016-01-04Fix downloaded property accessDiego Rodríguez Baquero
When bitfield is not yet created, accessing downloaded property will throw an error.
2016-01-04cmd: fix exception when quittingFeross Aboukhadijeh
2016-01-03Select priorityDiego Rodríguez Baquero
Allows selecting with a set priority, if not passed as argument, it will default to false/0
2016-01-01PR feedback for #549Feross Aboukhadijeh
2016-01-01Fix timeRemaining issueDiego Rodríguez Baquero
When the swarm hasn't been created but the timeRemaining property is accessed, it causes an error.
2016-01-01Throw error on client.add('')Feross Aboukhadijeh
2015-12-30Pulled code out into 3 new packages!Feross Aboukhadijeh
https://github.com/feross/render-media https://github.com/feross/stream-to-blob-url https://github.com/feross/stream-with-known-length-to-buffer
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-29Merge pull request #546 from feross/throw-on-use-after-destroyFeross Aboukhadijeh
torrent: throw on use after destroy
2015-12-29Merge pull request #547 from feross/torrent-pauseFeross Aboukhadijeh
Add torrent.pause() API
2015-12-29Set maxPeers on client and pass down to every torrentAram Drevekenin
2015-12-28Add torrent.pause() APIFeross Aboukhadijeh
Fix #543
2015-12-28torrent: throw on use after destroyFeross Aboukhadijeh
2015-12-28Fix torrent.done state when there are deselected files (fix #316)Feross Aboukhadijeh
Supersedes PR https://github.com/feross/webtorrent/pull/533
2015-12-28styleFeross Aboukhadijeh
2015-12-28bugfixes after PR #425Feross Aboukhadijeh
cc @valeriangalliat
2015-12-28Merge pull request #425 from valeriangalliat/feature/render-toFeross Aboukhadijeh
[Feature proposition] Allow to render a torrent into an existing element
2015-12-28add todosFeross Aboukhadijeh
2015-12-27torrent server only call internal `server.close` onceFeross Aboukhadijeh
If the user calls `server.close()` on the http server returned by `torrnet.createServer()` then we should not call it in `server.destroy()` or node will return an error
2015-12-22Implement 'render-to' methodValérian Galliat
* Update 'handle' (previously 'append-to') to take a 'getElem' function instead of directly a root element, allowing to custimize the element injection method, and without directly manipulating the DOM. * Reimplement 'append-to' using abstract 'handle' method. * Implement a 'render-to' method to render a torrent inside an existing element.
2015-12-22Rename 'append-to' to 'render'Valérian Galliat
2015-12-17torrent.createServer: throw error in browserFeross 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-17Improve torrent.createServer() index pageFeross Aboukhadijeh
- Download link uses correct filename - List shows file paths, not just name - Add file size - Show torrent name at top, instead of generic “WebTorrent” title
2015-12-09Standard fixDiego Rodríguez B
Remove space to match standard
2015-12-09Initialize pieces on constructorDiego Rodríguez B
Many prototype functions and properties use it and if it hasn't been initialized it will throw error as it's undefined.
2015-12-05add debug logFeross Aboukhadijeh
2015-12-04dedupe urlListFeross Aboukhadijeh
Fixes https://github.com/feross/instant.io/issues/92
2015-12-04code styleFeross Aboukhadijeh
2015-12-04self -> thisFeross Aboukhadijeh
2015-12-03browser: exclude two unused packagesFeross Aboukhadijeh
2015-12-02timeRemaining should be 0 once done (Fix #503)Diego Rodríguez B
timeRemaining property should be 0 once a torrent has been downloaded (or is being seeded)
2015-10-05Accommodate Chrome/FF optional Blob arg differenceYousef Amar
The specs say that the second Blob constructor argument is optional (http://www.w3.org/TR/FileAPI/#constructorParams), however Chrome and FF implement that differently. FF checks if the second arg is not undefined, while Chrome checks "arguments.length". As a result, if the second argument is undefined, Chrome will throw an error (https://chromium.googlesource.com/chromium/blink/+/72fef91ac1ef679207f51def8133b336a6f6588f/LayoutTests/fast/files/blob-constructor.html#55), while FF will just ignore it. This change makes it so that the second arg is not passed at all when it's undefined, and Chrome is happy as a result.
2015-09-22Merge pull request #426 from valeriangalliat/hotfix/append-to-callback-elemFeross Aboukhadijeh
Always pass 'elem' to 'append-to' callback
2015-09-17standardFeross Aboukhadijeh
2015-09-10Always pass 'elem' to 'append-to' callbackValérian Galliat
Looks like it was forgotten for 'img' and 'iframe'.
2015-08-31Disable DHT and PEX when the torrent is flagged as privateGilles De Mey
Add test for private torrent - should disable DHT Fail public torrent test when using a private torrent standard Disable DHT for the torrent's swarm and discovery.
2015-08-28expose torrent.path in a clean way (fix #409)Feross Aboukhadijeh
2015-08-25Add torrent.pathAndré Stein