diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3289ae3a0..d866823df 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,7 @@ for it or creating a new one yourself. You can use also that issue as a place to your intentions and get feedback from the users most likely to appreciate your changes. You're most likely to have your pull request accepted easily if it addresses bugs already -in the [Next Steps project](https://github.com/WhisperSystems/Signal-Desktop/projects/1), +in the [Next Steps project](https://github.com/signalapp/Signal-Desktop/projects/1), especially if they are near the top of the Backlog column. Those are what we'll be looking at next, so it would be a great help if you helped us out! @@ -24,7 +24,7 @@ ounce of prevention, as they say!](https://www.goodreads.com/quotes/247269-an-ou ## Developer Setup First, you'll need [Node.js](https://nodejs.org/) which matches our current version. -You can check [`.nvmrc` in the `development` branch](https://github.com/WhisperSystems/Signal-Desktop/blob/development/.nvmrc) to see what the current version is. If you have [nvm](https://github.com/creationix/nvm) +You can check [`.nvmrc` in the `development` branch](https://github.com/signalapp/Signal-Desktop/blob/development/.nvmrc) to see what the current version is. If you have [nvm](https://github.com/creationix/nvm) you can just run `nvm use` in the project directory and it will switch to the project's desired Node.js version. [nvm for windows](https://github.com/coreybutler/nvm-windows) is still useful, but it doesn't support `.nvmrc` files. @@ -46,7 +46,7 @@ favorite package manager. Python 2.x and GCC are two key necessary components. Now, run these commands in your preferred terminal in a good directory for development: ``` -git clone https://github.com/WhisperSystems/Signal-Desktop.git +git clone https://github.com/signalapp/Signal-Desktop.git cd Signal-Desktop npm install -g yarn # (only if you don't already have yarn) npm install -g grunt-cli # (only if you don't already have grunt) @@ -215,13 +215,13 @@ and register it with one of your extra phone numbers: First, build Signal for Android or iOS from source, and point its TextSecure service URL to `textsecure-service-staging.whispersystems.org`: -**on Android:** Replace the `SIGNAL_URL` value in [build.gradle](https://github.com/WhisperSystems/Signal-Android/blob/master/build.gradle) +**on Android:** Replace the `SIGNAL_URL` value in [build.gradle](https://github.com/signalapp/Signal-Android/blob/master/build.gradle) **on iOS:** Replace the `textSecureServerURL` value in `TSConstants.h`(located in the SignalServiceKit pod) This task is 1% search and replace, 99% setting up your build environment. Instructions are available for both -the [Android](https://github.com/WhisperSystems/Signal-Android/blob/master/BUILDING.md) -and [iOS](https://github.com/WhisperSystems/Signal-iOS/blob/master/BUILDING.md) projects. +the [Android](https://github.com/signalapp/Signal-Android/blob/master/BUILDING.md) +and [iOS](https://github.com/signalapp/Signal-iOS/blob/master/BUILDING.md) projects. Then you can set up your development build of Signal Desktop as normal. If you've already set up as a standalone install, you can switch by opening the DevTools (View -> Toggle diff --git a/Gruntfile.js b/Gruntfile.js index 2b3181c35..e286687dc 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -282,7 +282,7 @@ module.exports = function(grunt) { var https = require('https'); var urlBase = "https://s3-us-west-1.amazonaws.com/signal-desktop-builds"; - var keyBase = 'WhisperSystems/Signal-Desktop'; + var keyBase = 'signalapp/Signal-Desktop'; var sha = gitinfo.local.branch.current.SHA; var files = [{ zip: packageJson.name + '-' + packageJson.version + '.zip', diff --git a/README.md b/README.md index faf16c093..9a74be0d3 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -[![Build Status](https://travis-ci.org/WhisperSystems/Signal-Desktop.svg?branch=master)](https://travis-ci.org/WhisperSystems/Signal-Desktop) +[![Build Status](https://travis-ci.org/signalapp/Signal-Desktop.svg?branch=master)](https://travis-ci.org/signalapp/Signal-Desktop) Signal Desktop ========================== Signal Desktop is an Electron application that links with your -[Signal Android](https://github.com/WhisperSystems/Signal-Android) - or [Signal iOS](https://github.com/WhisperSystems/Signal-iOS) app. +[Signal Android](https://github.com/signalapp/Signal-Android) + or [Signal iOS](https://github.com/signalapp/Signal-iOS) app. ## Install production version: https://signal.org/download/ @@ -27,7 +27,7 @@ The discussion groups are another good place for questions: https://whispersyste Please search the existing issues for your bug and create a new one if the issue is not yet tracked! -https://github.com/WhisperSystems/Signal-Desktop/issues +https://github.com/signalapp/Signal-Desktop/issues ## Contributing Translations @@ -38,7 +38,7 @@ https://www.transifex.com/projects/p/signal-desktop ## Contributing Code -Please see [CONTRIBUTING.md](https://github.com/WhisperSystems/Signal-Desktop/blob/master/CONTRIBUTING.md) +Please see [CONTRIBUTING.md](https://github.com/signalapp/Signal-Desktop/blob/master/CONTRIBUTING.md) for setup instructions and contributor guidelines. And don't forget to sign the [CLA](https://signal.org/cla/). diff --git a/_locales/en/messages.json b/_locales/en/messages.json index b13bbab2f..acd6808d6 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -52,7 +52,7 @@ "description": "Message shown on the migration screen while we export data" }, "exportComplete": { - "message": "Your data has been exported to:

$location$

You'll be able to import this data as you set up the new Signal Desktop.", + "message": "Your data has been exported to:

$location$

You'll be able to import this data as you set up the new Signal Desktop.", "description": "Message shown on the migration screen when we are done exporting data", "placeholders": { "location": { @@ -74,7 +74,7 @@ "description": "Title of the popup window used to select data previously exported" }, "importError": { - "message": "Unfortunately, something went wrong during the import.

First, double-check your target directory. It should start with 'Signal Export.'

Next, try with a new export of your data from the Chrome App.

If that still fails, please submit a debug log so we can help you get migrated!", + "message": "Unfortunately, something went wrong during the import.

First, double-check your target directory. It should start with 'Signal Export.'

Next, try with a new export of your data from the Chrome App.

If that still fails, please submit a debug log so we can help you get migrated!", "description": "Message shown if the import went wrong." }, "tryAgain": { diff --git a/app/auto_update.js b/app/auto_update.js index efcb70e67..9badffb65 100644 --- a/app/auto_update.js +++ b/app/auto_update.js @@ -42,7 +42,7 @@ function showUpdateDialog(mainWindow, messages) { if (response === RESTART_BUTTON) { // We delay these update calls because they don't seem to work in this // callback - but only if the message box has a parent window. - // Fixes this bug: https://github.com/WhisperSystems/Signal-Desktop/issues/1864 + // Fixes this bug: https://github.com/signalapp/Signal-Desktop/issues/1864 setTimeout(() => { windowState.markShouldQuit(); autoUpdater.quitAndInstall(); diff --git a/background.html b/background.html index d094aadde..b4af657e3 100644 --- a/background.html +++ b/background.html @@ -536,7 +536,7 @@ @@ -562,7 +562,7 @@

+ href='https://github.com/signalapp/Signal-Desktop/issues/new/'> {{ reportIssue }}

diff --git a/bower.json b/bower.json index ad3eafc4d..a49dba384 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { - "name": "textsecure-chrome", + "name": "signal-desktop", "version": "0.0.0", - "homepage": "https://github.com/WhisperSystems/TextSecure-Browser", + "homepage": "https://github.com/signalapp/Signal-Desktop", "license": "GPLV3", "private": true, "dependencies": { diff --git a/js/signal_protocol_store.js b/js/signal_protocol_store.js index f3eb489a5..245c7c5c0 100644 --- a/js/signal_protocol_store.js +++ b/js/signal_protocol_store.js @@ -688,7 +688,7 @@ }.bind(this)); }, // This matches the Java method as of - // https://github.com/WhisperSystems/Signal-Android/blob/d0bb68e1378f689e4d10ac6a46014164992ca4e4/src/org/thoughtcrime/securesms/util/IdentityUtil.java#L188 + // https://github.com/signalapp/Signal-Android/blob/d0bb68e1378f689e4d10ac6a46014164992ca4e4/src/org/thoughtcrime/securesms/util/IdentityUtil.java#L188 processVerifiedMessage: function(identifier, verifiedStatus, publicKey) { if (identifier === null || identifier === undefined) { throw new Error("Tried to set verified for undefined/null key"); diff --git a/js/views/install_view.js b/js/views/install_view.js index e971ee46b..c5abeea53 100644 --- a/js/views/install_view.js +++ b/js/views/install_view.js @@ -18,7 +18,7 @@ templateName: 'install_flow_template', className: 'main install', render_attributes: function() { - var twitterHref = 'https://twitter.com/whispersystems'; + var twitterHref = 'https://twitter.com/signalapp'; var signalHref = 'https://signal.org/install'; return { installWelcome: i18n('installWelcome'), diff --git a/libtextsecure/message_receiver.js b/libtextsecure/message_receiver.js index befba50d2..35c8c1508 100644 --- a/libtextsecure/message_receiver.js +++ b/libtextsecure/message_receiver.js @@ -815,8 +815,8 @@ MessageReceiver.prototype.extend({ // Before June, all incoming messages were still DataMessage: // - iOS: Michael Kirk says that they were sending Legacy messages until June - // - Desktop: https://github.com/WhisperSystems/Signal-Desktop/commit/e8548879db405d9bcd78b82a456ad8d655592c0f - // - Android: https://github.com/WhisperSystems/libsignal-service-java/commit/61a75d023fba950ff9b4c75a249d1a3408e12958 + // - Desktop: https://github.com/signalapp/Signal-Desktop/commit/e8548879db405d9bcd78b82a456ad8d655592c0f + // - Android: https://github.com/signalapp/libsignal-service-java/commit/61a75d023fba950ff9b4c75a249d1a3408e12958 // // var d = new Date('2017-06-01T07:00:00.000Z'); // d.getTime(); diff --git a/libtextsecure/websocket-resources.js b/libtextsecure/websocket-resources.js index 30a519fb1..fc3672f57 100644 --- a/libtextsecure/websocket-resources.js +++ b/libtextsecure/websocket-resources.js @@ -22,7 +22,7 @@ * error: function(message, status, request) {...} * }); * - * 1. https://github.com/WhisperSystems/WebSocket-Resources + * 1. https://github.com/signalapp/WebSocket-Resources * */ diff --git a/main.js b/main.js index 8996dc419..6bb2c400e 100644 --- a/main.js +++ b/main.js @@ -54,7 +54,7 @@ function showWindow() { // Using focus() instead of show() seems to be important on Windows when our window // has been docked using Aero Snap/Snap Assist. A full .show() call here will cause // the window to reposition: - // https://github.com/WhisperSystems/Signal-Desktop/issues/1429 + // https://github.com/signalapp/Signal-Desktop/issues/1429 if (mainWindow.isVisible()) { mainWindow.focus(); } else { @@ -315,11 +315,11 @@ function showDebugLog() { } function openReleaseNotes() { - shell.openExternal(`https://github.com/WhisperSystems/Signal-Desktop/releases/tag/v${app.getVersion()}`); + shell.openExternal(`https://github.com/signalapp/Signal-Desktop/releases/tag/v${app.getVersion()}`); } function openNewBugForm() { - shell.openExternal('https://github.com/WhisperSystems/Signal-Desktop/issues/new'); + shell.openExternal('https://github.com/signalapp/Signal-Desktop/issues/new'); } function openSupportPage() { diff --git a/package.json b/package.json index d2294b80b..e1c0cd00e 100644 --- a/package.json +++ b/package.json @@ -2,12 +2,12 @@ "name": "signal-desktop", "productName": "Signal", "description": "Private messaging from your desktop", - "repository": "https://github.com/WhisperSystems/Signal-Desktop.git", + "repository": "https://github.com/signalapp/Signal-Desktop.git", "version": "1.3.0-beta.1", "license": "GPL-3.0", "author": { "name": "Open Whisper Systems", - "email": "support@whispersystems.org" + "email": "support@signal.org" }, "main": "main.js", "scripts": { diff --git a/test/index.html b/test/index.html index 050d8b5d5..44b45f0ab 100644 --- a/test/index.html +++ b/test/index.html @@ -450,7 +450,7 @@ @@ -476,7 +476,7 @@

+ href='https://github.com/signalapp/Signal-Desktop/issues/new/'> {{ reportIssue }}