Skip to content

Commit 056a83d

Browse files
committed
feross -> webtorrent
1 parent 3e87df8 commit 056a83d

File tree

7 files changed

+15
-19
lines changed

7 files changed

+15
-19
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ and to avoid style arguments. `npm test` runs `standard` automatically, so you d
2424
to!
2525

2626
[standard-image]: https://cdn.rawgit.com/feross/standard/master/badge.svg
27-
[standard-url]: https://github.com/feross/standard
27+
[standard-url]: https://standardjs.com
2828

2929
## Project Governance
3030

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) Feross Aboukhadijeh
3+
Copyright (c) Feross Aboukhadijeh and WebTorrent, LLC
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# bittorrent-tracker [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url]
22

3-
[travis-image]: https://img.shields.io/travis/feross/bittorrent-tracker/master.svg
4-
[travis-url]: https://travis-ci.org/feross/bittorrent-tracker
3+
[travis-image]: https://img.shields.io/travis/webtorrent/bittorrent-tracker/master.svg
4+
[travis-url]: https://travis-ci.org/webtorrent/bittorrent-tracker
55
[npm-image]: https://img.shields.io/npm/v/bittorrent-tracker.svg
66
[npm-url]: https://npmjs.org/package/bittorrent-tracker
77
[downloads-image]: https://img.shields.io/npm/dm/bittorrent-tracker.svg
@@ -11,7 +11,7 @@
1111

1212
#### Simple, robust, BitTorrent tracker (client & server) implementation
1313

14-
![tracker](https://raw.githubusercontent.com/feross/bittorrent-tracker/master/img.png)
14+
![tracker](https://raw.githubusercontent.com/webtorrent/bittorrent-tracker/master/img.png)
1515

1616
Node.js implementation of a [BitTorrent tracker](https://wiki.theory.org/BitTorrentSpecification#Tracker_HTTP.2FHTTPS_Protocol), client and server.
1717

@@ -33,10 +33,10 @@ This module is used by [WebTorrent](http://webtorrent.io).
3333
- Supports tracker "scrape" extension
3434
- Robust and well-tested
3535
- Comprehensive test suite (runs entirely offline, so it's reliable)
36-
- Used by popular clients: [WebTorrent](http://webtorrent.io), [peerflix](https://github.com/mafintosh/peerflix), and [playback](https://mafintosh.github.io/playback/)
36+
- Used by popular clients: [WebTorrent](http://webtorrent.io), [peerflix](https://www.npmjs.com/package/peerflix), and [playback](https://mafintosh.github.io/playback/)
3737
- Tracker statistics available via web interface at `/stats` or JSON data at `/stats.json`
3838

39-
Also see [bittorrent-dht](https://github.com/feross/bittorrent-dht).
39+
Also see [bittorrent-dht](https://www.npmjs.com/package/bittorrent-dht).
4040

4141
## install
4242

@@ -268,10 +268,8 @@ $ bittorrent-tracker --help
268268
-q, --quiet only show error output
269269
-s, --silent show no output
270270
-v, --version print the current version
271-
272-
Please report bugs! https://github.com/feross/bittorrent-tracker/issues
273271
```
274272

275273
## license
276274

277-
MIT. Copyright (c) [Feross Aboukhadijeh](http://feross.org).
275+
MIT. Copyright (c) [Feross Aboukhadijeh](https://feross.org) and [WebTorrent, LLC](https://webtorrent.io).

bin/cmd.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ if (argv.help) {
6363
-s, --silent show no output
6464
-v, --version print the current version
6565
66-
Please report bugs! https://github.com/feross/bittorrent-tracker/issues
67-
6866
*/
6967
}.toString().split(/\n/).slice(2, -2).join('\n'))
7068
process.exit(0)

client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function Client (opts) {
6666
self._userAgent = opts.userAgent
6767

6868
// Support lazy 'wrtc' module initialization
69-
// See: https://github.com/feross/webtorrent-hybrid/issues/46
69+
// See: https://github.com/webtorrent/webtorrent-hybrid/issues/46
7070
self._wrtc = typeof opts.wrtc === 'function' ? opts.wrtc() : opts.wrtc
7171

7272
var announce = typeof opts.announce === 'string'

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
44
"version": "9.2.1",
55
"author": {
6-
"name": "Feross Aboukhadijeh",
7-
"email": "feross@feross.org",
8-
"url": "http://feross.org/"
6+
"name": "WebTorrent, LLC",
7+
"email": "feross@webtorrent.io",
8+
"url": "https://webtorrent.io"
99
},
1010
"bin": {
1111
"bittorrent-tracker": "./bin/cmd.js"
@@ -17,7 +17,7 @@
1717
"./server.js": false
1818
},
1919
"bugs": {
20-
"url": "https://github.com/feross/bittorrent-tracker/issues"
20+
"url": "https://github.com/webtorrent/bittorrent-tracker/issues"
2121
},
2222
"dependencies": {
2323
"bencode": "^0.11.0",
@@ -68,7 +68,7 @@
6868
"main": "index.js",
6969
"repository": {
7070
"type": "git",
71-
"url": "git://github.com/feross/bittorrent-tracker.git"
71+
"url": "git://github.com/webtorrent/bittorrent-tracker.git"
7272
},
7373
"scripts": {
7474
"update-authors": "./bin/update-authors.sh",

test/querystring.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var Buffer = require('safe-buffer').Buffer
22
var common = require('../lib/common')
33
var test = require('tape')
44

5-
// https://github.com/feross/webtorrent/issues/196
5+
// https://github.com/webtorrent/webtorrent/issues/196
66
test('encode special chars +* in http tracker urls', function (t) {
77
var q = {
88
info_hash: Buffer.from('a2a15537542b22925ad10486bf7a8b2a9c42f0d1', 'hex').toString('binary')

0 commit comments

Comments
 (0)