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
2022-07-04fix: drop multi-streamThaUnknown
2022-05-11fix: measure transfer rates without using timeouts (#2314)Cas
2022-04-22chore: standard 17Diego Rodriguez Baquero
2022-03-27refactor: trigger _onWireWithMetadata after selections are updated (#2103)Alex
Co-authored-by: Diego Rodríguez Baquero <github@diegorbaquero.com>
2022-01-20feat: add reqq field support (#2246)Paul-Louis Ageneau
2022-01-18feat: add BEP6 Fast Extension support (#2243)Paul-Louis Ageneau
* chore: bump bittorrent-protocol to ^3.5.0 * feat: implement BEP6 Fast Extension
2021-10-26fix: Prep for esm (#2205)Jimmy Wärting
* prep for esm * update min req node vers * revert node prefix
2021-10-25fix: add storeOpts, specify store path, align with docs (#2121)Cas
* fix: add storeOpts, specify store path, align with docs * make changes non-breaking by default * debatable documentation update * add torrent name to store name * reduce hash name * Update lib/torrent.js * fix filegetmodtimes * bump fs chunk store Co-authored-by: Diego Rodríguez Baquero <github@diegorbaquero.com>
2021-08-26fix: handle done event when new files selected (#2183)Julen Garcia Leunda
2021-07-24feat: add speed limit to client (#2062)Alex
* Add speed limit to client * Fix standard * Update docs/api.md * Add changes from PR feedback Co-authored-by: Kadu Diógenes <kadu@fnix.com.br> Co-authored-by: Ivan Gorbanev <ivang@van.work> Co-authored-by: ultimate-tester <jordimueters@hotmail.com> Co-authored-by: Julen Garcia Leunda <hicom150@gmail.com> Co-authored-by: Niklas Johansson <niklas.y.johansson@se.abb.com> Co-authored-by: ThaUnknown <kapi.skowronek@gmail.com> Co-authored-by: Diego Rodríguez Baquero <github@diegorbaquero.com>
2021-07-13fix: store.put is async and might fail (#2006)ftrees
* store.put is async and might fail * Remove retry logic for now Co-authored-by: John Hiesey <john@hiesey.com>
2021-07-11fix: modernize code (#2134)Diego Rodríguez Baquero
* fix: modernize code * standard fix
2021-07-10feat: support adding paused torrents. (#2004)nkavian
* Support adding paused torrents. * chore: use arrows, because semantic Co-authored-by: Nas Kavian <> Co-authored-by: Diego Rodríguez Baquero <github@diegorbaquero.com>
2021-07-06fix: ensure uTP peer address is IPv4 (#2125)Julen Garcia Leunda
2021-06-30feat: Use a cache on the chunk store (#2095)John Hiesey
2021-06-30fix: remove deprecated functionality (#2118)Cas
2021-06-17fix: make utp-native optional (#1966)Julen Garcia Leunda
* Add optional utp-native * Add error log when uTP cannot be loaded * Fix review suggestions * Remove an additional require call Co-authored-by: Alex <alxmorais8@msn.com>
2021-05-21fix: getAnnounceOpts (#2075)Alex
2021-04-09Add lt_donthaveJohn Hiesey
2021-03-25Add opts.destroyStoreOnDestroy to torrentJohn Hiesey
2021-03-18Change filesystem concurrency to number of cpusFeross Aboukhadijeh
Makes the EventEmitter warning show up less often, and avoids running potentially 100s or 1000s of chunkStore.get() calls concurrently in _verifyPieces
2021-03-09Only pass length to store.get when definedJohn Hiesey
2021-03-05Destroy torrent if putting into store failsJohn Hiesey
2021-02-27Code review fixesJohn Hiesey
2021-02-26Allow passing a custom connection object to torrent.addWebSeedJohn Hiesey
2021-02-11always print "piece verified" debug log in _verifyPiecesFeross Aboukhadijeh
2021-02-10Support opts.preloadedStore in webtorrent.seedJohn Hiesey
2021-01-27fix queuemicrotask usageFeross Aboukhadijeh
2020-12-11replace process.nextTick with queueMicrotaskftreesmilo
2020-11-12Add lsd option to clientJulen Garcia Leunda
2020-11-05Merge pull request #1952 from webtorrent/bitfieldFeross Aboukhadijeh
2020-11-04Fix BEP53 implementationJulen Garcia Leunda
2020-11-03bitfield@4Feross Aboukhadijeh
2020-10-31Apply review suggestionsJulen Garcia Leunda
2020-10-30Implement peer-address (x.pe) BEP09Julen Garcia Leunda
2020-10-28standardFeross Aboukhadijeh
2020-10-27Fix "Cannot read property 'utp' of null"Feross Aboukhadijeh
Fixes #1940
2020-10-23standardFeross Aboukhadijeh
2020-10-22Final ChangesRhys Williams
2020-10-22Remove addressed TODORhys Williams
2020-10-22Simple ChangesRhys Williams
2020-10-16Making Travis HappyRhys Williams
2020-10-16[BugFix] Peer reconnect timeout throwing NPE on destroyed.Rhys Williams
2020-10-10Merge pull request #1923 from webtorrent/add_utp_supportKaylee
uTP support (disabled by default). when enabled, uTP is tried first for all ip:port and timeouts fall back to TCP Co-authored-by: Pierre Dubouilh <pldubouilh@gmail.com>
2020-10-06keeping code consistencyJean-Philippe ALLEGRO
applying changes according to @alxhotel suggestion https://github.com/webtorrent/webtorrent/pull/1925#discussion_r499647106
2020-10-05check if torrent is destroyed before emitting download/upload eventJean-Philippe ALLEGRO
closes https://github.com/webtorrent/webtorrent/issues/1924
2020-10-03PR review improvementsJulen Garcia Leunda
2020-10-02Add uTP support (BEP29)Julen Garcia Leunda
2020-09-10Merge pull request #1364 from KayleePop/destroyKaylee
2020-06-16refactor torrent._rechoke()KayleePop