diff --git a/CHANGELOG.md b/CHANGELOG.md index 16ff1413..7c9e33f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -67,7 +67,7 @@ ## v0.16.0 - 2016-09-18 ### Added -- **Windows 64-bit support!** ([#931](https://github.com/feross/webtorrent-desktop/pull/931)) +- **Windows 64-bit support!** ([#931](https://github.com/webtorrent/webtorrent-desktop/pull/931)) - Existing 32-bit users will update to 64-bit automatically in next release - 64-bit reduces likelihood of out-of-memory errors by increasing the address space @@ -516,7 +516,7 @@ Windows, and Linux. For now, we're only releasing binaries for OS X. WebTorrent Desktop is in ALPHA and under very active development – expect lots more polish in the coming weeks! If you know JavaScript and want to help us out, there's -[lots to do](https://github.com/feross/webtorrent-desktop/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+contribution%22)! +[lots to do](https://github.com/webtorrent/webtorrent-desktop/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+contribution%22)! ### Features diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 48981832..16b6118c 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 @@ -161,7 +161,7 @@ By making a contribution to this project, I certify that: - Update the website - Create a pull request in [webtorrent.io](https://github.com/feross/webtorrent.io). Update + Create a pull request in [webtorrent.io](https://github.com/webtorrent/webtorrent.io). Update `config.js`, updating the desktop app version. As soon as this PR is merged, Jenkins will automatically redeploy the WebTorrent website, and diff --git a/README.md b/README.md index 75bbd750..38ed9a0f 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@

gitter - github release - travis + github release + travis Standard - JavaScript Style Guide

@@ -22,7 +22,7 @@ Download the latest version of WebTorrent Desktop from [the official website](https://webtorrent.io/desktop/) or the -[GitHub releases](https://github.com/feross/webtorrent-desktop/releases) page. +[GitHub releases](https://github.com/webtorrent/webtorrent-desktop/releases) page. **WebTorrent Desktop** is under very active development. You can try out the current (unstable) development version by cloning the Git repo. See the @@ -40,7 +40,7 @@ instructions below in the ["How to Contribute"](#how-to-contribute) section. ### Get the code ``` -$ git clone https://github.com/feross/webtorrent-desktop.git +$ git clone https://github.com/webtorrent/webtorrent-desktop.git $ cd webtorrent-desktop $ npm install ``` @@ -154,10 +154,6 @@ Time out? Show a missing codec error? The app never sends any personally identifying information, nor does it track which torrents you add. -### Code Style - -[![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard) - ## License MIT. Copyright (c) [WebTorrent, LLC](https://webtorrent.io). diff --git a/package.json b/package.json index 90be9826..fe5820cc 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "url": "https://webtorrent.io" }, "bugs": { - "url": "https://github.com/feross/webtorrent-desktop/issues" + "url": "https://github.com/webtorrent/webtorrent-desktop/issues" }, "dependencies": { "airplayer": "^2.0.0", @@ -93,7 +93,7 @@ "productName": "WebTorrent", "repository": { "type": "git", - "url": "git://github.com/feross/webtorrent-desktop.git" + "url": "git://github.com/webtorrent/webtorrent-desktop.git" }, "scripts": { "build": "buble src --output build", diff --git a/src/config.js b/src/config.js index a7d4d9c1..43b5c57f 100644 --- a/src/config.js +++ b/src/config.js @@ -70,9 +70,9 @@ module.exports = { DEFAULT_DOWNLOAD_PATH: getDefaultDownloadPath(), - GITHUB_URL: 'https://github.com/feross/webtorrent-desktop', - GITHUB_URL_ISSUES: 'https://github.com/feross/webtorrent-desktop/issues', - GITHUB_URL_RAW: 'https://raw.githubusercontent.com/feross/webtorrent-desktop/master', + GITHUB_URL: 'https://github.com/webtorrent/webtorrent-desktop', + GITHUB_URL_ISSUES: 'https://github.com/webtorrent/webtorrent-desktop/issues', + GITHUB_URL_RAW: 'https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/master', HOME_PAGE_URL: 'https://webtorrent.io', diff --git a/src/main/index.js b/src/main/index.js index 38286977..497b9072 100644 --- a/src/main/index.js +++ b/src/main/index.js @@ -198,7 +198,7 @@ function processArgv (argv) { // Ignore hidden argument, already being handled } else if (arg.startsWith('-psn')) { // Ignore Mac launchd "process serial number" argument - // Issue: https://github.com/feross/webtorrent-desktop/issues/214 + // Issue: https://github.com/webtorrent/webtorrent-desktop/issues/214 } else if (arg.startsWith('--')) { // Ignore Spectron flags } else if (arg === 'data:,') { diff --git a/src/renderer/components/update-available-modal.js b/src/renderer/components/update-available-modal.js index 03c84605..f610dcb5 100644 --- a/src/renderer/components/update-available-modal.js +++ b/src/renderer/components/update-available-modal.js @@ -23,7 +23,8 @@ module.exports = class UpdateAvailableModal extends React.Component { ) function handleShow () { - electron.shell.openExternal('https://github.com/feross/webtorrent-desktop/releases') + // TODO: use the GitHub urls from config.js + electron.shell.openExternal('https://github.com/webtorrent/webtorrent-desktop/releases') dispatch('exitModal') } diff --git a/src/renderer/lib/migrations.js b/src/renderer/lib/migrations.js index 2fad6b13..ece7125d 100644 --- a/src/renderer/lib/migrations.js +++ b/src/renderer/lib/migrations.js @@ -78,7 +78,7 @@ function migrate_0_7_0 (saved) { } // Fix exception caused by incorrect file ordering. - // https://github.com/feross/webtorrent-desktop/pull/604#issuecomment-222805214 + // https://github.com/webtorrent/webtorrent-desktop/pull/604#issuecomment-222805214 delete ts.defaultPlayFileIndex delete ts.files delete ts.selections @@ -111,7 +111,7 @@ function migrate_0_12_0 (saved) { // Undo a terrible bug where clicking Play on a default torrent on a fresh // install results in a "path missing" error - // See https://github.com/feross/webtorrent-desktop/pull/806 + // See https://github.com/webtorrent/webtorrent-desktop/pull/806 const defaultTorrentFiles = [ '6a9759bffd5c0af65319979fb7832189f4f3c35d.torrent', '88594aaacbde40ef3e2510c47374ec0aa396c08e.torrent', @@ -153,7 +153,7 @@ function migrate_0_17_0 (saved) { function migrate_0_17_2 (saved) { // Remove the trailing dot (.) from the Wired CD torrent name, since // folders/files that end in a trailing dot (.) or space are not deletable from - // Windows Explorer. See: https://github.com/feross/webtorrent-desktop/issues/905 + // Windows Explorer. See: https://github.com/webtorrent/webtorrent-desktop/issues/905 const cpFile = require('cp-file') const rimraf = require('rimraf') diff --git a/test/test-torrent-list.js b/test/test-torrent-list.js index 896edff5..71c1b2ea 100644 --- a/test/test-torrent-list.js +++ b/test/test-torrent-list.js @@ -79,7 +79,7 @@ test('torrent-list: expand torrent, unselect file', function (t) { // Make sure that it creates all files EXCEPT the deslected one .then(() => setup.compareDownloadFolder(t, 'CosmosLaundromatFirstCycle', [ // TODO: the .gif should NOT be here, since we just deselected it. - // This is a bug. See https://github.com/feross/webtorrent-desktop/issues/719 + // This is a bug. See https://github.com/webtorrent/webtorrent-desktop/issues/719 'Cosmos Laundromat - First Cycle (1080p).gif', 'Cosmos Laundromat - First Cycle (1080p).mp4', 'Cosmos Laundromat - First Cycle (1080p).ogv',