renaming app to Flipper

Summary: rename all visible references of Sonar to Flipper. Changes endpoint URLs to the new repo address.

Reviewed By: passy

Differential Revision: D9082100

fbshipit-source-id: 2ab8b680a19c23d80050e8e768379c29d66acfca
This commit is contained in:
Daniel Büchele
2018-08-06 10:30:55 -07:00
committed by Facebook Github Bot
parent 2c48afdf04
commit 134a0d96c5
8 changed files with 51 additions and 42 deletions

View File

@@ -274,19 +274,21 @@ function getTemplate(app: Object, shell: Object): Array<MenuItem> {
{
label: 'Getting started',
click: function() {
shell.openExternal('https://fbsonar.com/docs/getting-started.html');
shell.openExternal(
'https://fbflipper.com/docs/getting-started.html',
);
},
},
{
label: 'Create plugins',
click: function() {
shell.openExternal('https://fbsonar.com/docs/create-plugin.html');
shell.openExternal('https://fbflipper.com/docs/create-plugin.html');
},
},
{
label: 'Report problems',
click: function() {
shell.openExternal('https://github.com/facebook/Sonar/issues');
shell.openExternal('https://github.com/facebook/flipper/issues');
},
},
],