From 056a83d1b537d2ac84773e8d25800cbcbce25396 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Fri, 14 Apr 2017 12:50:19 -0700 Subject: [PATCH] feross -> webtorrent --- CONTRIBUTING.md | 2 +- LICENSE | 2 +- README.md | 14 ++++++-------- bin/cmd.js | 2 -- client.js | 2 +- package.json | 10 +++++----- test/querystring.js | 2 +- 7 files changed, 15 insertions(+), 19 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index abc173f..e5fc5a2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -24,7 +24,7 @@ and to avoid style arguments. `npm test` runs `standard` automatically, so you d to! [standard-image]: https://cdn.rawgit.com/feross/standard/master/badge.svg -[standard-url]: https://github.com/feross/standard +[standard-url]: https://standardjs.com ## Project Governance diff --git a/LICENSE b/LICENSE index c7e6852..70a7089 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) Feross Aboukhadijeh +Copyright (c) Feross Aboukhadijeh and WebTorrent, LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/README.md b/README.md index 1141958..ef4b987 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # bittorrent-tracker [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url] -[travis-image]: https://img.shields.io/travis/feross/bittorrent-tracker/master.svg -[travis-url]: https://travis-ci.org/feross/bittorrent-tracker +[travis-image]: https://img.shields.io/travis/webtorrent/bittorrent-tracker/master.svg +[travis-url]: https://travis-ci.org/webtorrent/bittorrent-tracker [npm-image]: https://img.shields.io/npm/v/bittorrent-tracker.svg [npm-url]: https://npmjs.org/package/bittorrent-tracker [downloads-image]: https://img.shields.io/npm/dm/bittorrent-tracker.svg @@ -11,7 +11,7 @@ #### Simple, robust, BitTorrent tracker (client & server) implementation -![tracker](https://raw.githubusercontent.com/feross/bittorrent-tracker/master/img.png) +![tracker](https://raw.githubusercontent.com/webtorrent/bittorrent-tracker/master/img.png) Node.js implementation of a [BitTorrent tracker](https://wiki.theory.org/BitTorrentSpecification#Tracker_HTTP.2FHTTPS_Protocol), client and server. @@ -33,10 +33,10 @@ This module is used by [WebTorrent](http://webtorrent.io). - Supports tracker "scrape" extension - Robust and well-tested - Comprehensive test suite (runs entirely offline, so it's reliable) - - Used by popular clients: [WebTorrent](http://webtorrent.io), [peerflix](https://github.com/mafintosh/peerflix), and [playback](https://mafintosh.github.io/playback/) + - Used by popular clients: [WebTorrent](http://webtorrent.io), [peerflix](https://www.npmjs.com/package/peerflix), and [playback](https://mafintosh.github.io/playback/) - Tracker statistics available via web interface at `/stats` or JSON data at `/stats.json` -Also see [bittorrent-dht](https://github.com/feross/bittorrent-dht). +Also see [bittorrent-dht](https://www.npmjs.com/package/bittorrent-dht). ## install @@ -268,10 +268,8 @@ $ bittorrent-tracker --help -q, --quiet only show error output -s, --silent show no output -v, --version print the current version - - Please report bugs! https://github.com/feross/bittorrent-tracker/issues ``` ## license -MIT. Copyright (c) [Feross Aboukhadijeh](http://feross.org). +MIT. Copyright (c) [Feross Aboukhadijeh](https://feross.org) and [WebTorrent, LLC](https://webtorrent.io). diff --git a/bin/cmd.js b/bin/cmd.js index 49c8fdd..b5618ab 100755 --- a/bin/cmd.js +++ b/bin/cmd.js @@ -63,8 +63,6 @@ if (argv.help) { -s, --silent show no output -v, --version print the current version - Please report bugs! https://github.com/feross/bittorrent-tracker/issues - */ }.toString().split(/\n/).slice(2, -2).join('\n')) process.exit(0) diff --git a/client.js b/client.js index cea05be..dec7fa6 100644 --- a/client.js +++ b/client.js @@ -66,7 +66,7 @@ function Client (opts) { self._userAgent = opts.userAgent // Support lazy 'wrtc' module initialization - // See: https://github.com/feross/webtorrent-hybrid/issues/46 + // See: https://github.com/webtorrent/webtorrent-hybrid/issues/46 self._wrtc = typeof opts.wrtc === 'function' ? opts.wrtc() : opts.wrtc var announce = typeof opts.announce === 'string' diff --git a/package.json b/package.json index ec97631..d208690 100644 --- a/package.json +++ b/package.json @@ -3,9 +3,9 @@ "description": "Simple, robust, BitTorrent tracker (client & server) implementation", "version": "9.2.1", "author": { - "name": "Feross Aboukhadijeh", - "email": "feross@feross.org", - "url": "http://feross.org/" + "name": "WebTorrent, LLC", + "email": "feross@webtorrent.io", + "url": "https://webtorrent.io" }, "bin": { "bittorrent-tracker": "./bin/cmd.js" @@ -17,7 +17,7 @@ "./server.js": false }, "bugs": { - "url": "https://github.com/feross/bittorrent-tracker/issues" + "url": "https://github.com/webtorrent/bittorrent-tracker/issues" }, "dependencies": { "bencode": "^0.11.0", @@ -68,7 +68,7 @@ "main": "index.js", "repository": { "type": "git", - "url": "git://github.com/feross/bittorrent-tracker.git" + "url": "git://github.com/webtorrent/bittorrent-tracker.git" }, "scripts": { "update-authors": "./bin/update-authors.sh", diff --git a/test/querystring.js b/test/querystring.js index d7785be..e20ddfa 100644 --- a/test/querystring.js +++ b/test/querystring.js @@ -2,7 +2,7 @@ var Buffer = require('safe-buffer').Buffer var common = require('../lib/common') var test = require('tape') -// https://github.com/feross/webtorrent/issues/196 +// https://github.com/webtorrent/webtorrent/issues/196 test('encode special chars +* in http tracker urls', function (t) { var q = { info_hash: Buffer.from('a2a15537542b22925ad10486bf7a8b2a9c42f0d1', 'hex').toString('binary')